diff options
author | Cyrus Harrison <cyrush@llnl.gov> | 2020-07-15 00:01:05 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-15 00:01:05 -0700 |
commit | d55541919d2a78cd7435d4db870f5e63fbf0dcc3 (patch) | |
tree | 84152c18d478c03354e2075c2021938488d623b9 /var | |
parent | 0d4740d1b1ec679fab4e61ca4f8b62e835728634 (diff) | |
download | spack-d55541919d2a78cd7435d4db870f5e63fbf0dcc3.tar.gz spack-d55541919d2a78cd7435d4db870f5e63fbf0dcc3.tar.bz2 spack-d55541919d2a78cd7435d4db870f5e63fbf0dcc3.tar.xz spack-d55541919d2a78cd7435d4db870f5e63fbf0dcc3.zip |
visit package update, add glu as a linux dep (#17537)
* visit: add glu as a dep for linux
* add note to suggested install command about mesa
Diffstat (limited to 'var')
-rw-r--r-- | var/spack/repos/builtin/packages/visit/package.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/visit/package.py b/var/spack/repos/builtin/packages/visit/package.py index cd72bcda2c..d2f3987895 100644 --- a/var/spack/repos/builtin/packages/visit/package.py +++ b/var/spack/repos/builtin/packages/visit/package.py @@ -25,6 +25,11 @@ class Visit(CMakePackage): # linux: # spack install visit ^python+shared ^glib@2.56.3 ^py-setuptools@44.1.0 # + # linux w/o opengl: (add mesa as opengl if system lacks system opengl ) + # + # spack install visit ^python+shared ^glib@2.56.3 ^py-setuptools@44.1.0 \ + # ^mesa+opengl + # # macOS: # spack install visit ^python+shared ^glib@2.56.3 ^py-setuptools@44.1.0 \ # ^qt~framework @@ -159,6 +164,7 @@ class Visit(CMakePackage): # https://github.com/visit-dav/visit/issues/3498 depends_on('vtk@8.1.0:8.1.999+opengl2~python', when='~python @3.0:3.999,develop') depends_on('vtk@8.1.0:8.1.999+opengl2+python', when='+python @3.0:3.999,develop') + depends_on('glu', when='platform=linux') depends_on('vtk@6.1.0~opengl2', when='@:2.999') depends_on('vtk+python', when='+python @3.0:,develop') depends_on('vtk~mpi', when='~mpi') |