cernlib: depends_on libxaw libxt (#34448)

Based on the following lines in the top level `CMakeLists.txt` (I can't deep link since gitlab.cern.ch not public), `cernlib` needs an explicit dependency on `libxaw` and `libxt`:
```cmake
find_package(X11  REQUIRED)
message(STATUS "CERNLIB: X11_Xt_LIB=${X11_Xt_LIB} X11_Xaw_LIB=${X11_Xaw_LIB} X11_LIBRARIES=${X11_LIBRARIES}")
```
This commit is contained in:
Wouter Deconinck 2022-12-29 02:25:07 -06:00 committed by GitHub
parent 9d936a2a75
commit 44f7363fbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,6 +22,8 @@ class Cernlib(CMakePackage):
depends_on("motif")
depends_on("libx11")
depends_on("libxaw")
depends_on("libxt")
def cmake_args(self):
args = ["-DCERNLIB_BUILD_SHARED:BOOL=ON"]