summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--var/spack/repos/builtin/packages/gmsh/package.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/gmsh/package.py b/var/spack/repos/builtin/packages/gmsh/package.py
index ea168d5091..f37dc87f00 100644
--- a/var/spack/repos/builtin/packages/gmsh/package.py
+++ b/var/spack/repos/builtin/packages/gmsh/package.py
@@ -89,7 +89,10 @@ class Gmsh(CMakePackage):
depends_on('metis', when='+metis+external')
depends_on('cgns', when='+cgns')
# Gmsh's high quality vector PostScript, PDF and SVG output is produced by GL2PS.
- depends_on('gl2ps')
+ # But Gmsh ships with its own version of this library, so it is not a
+ # dependency of this package.
+ # See https://gitlab.onelab.info/gmsh/gmsh/-/blob/master/Graphics/gl2ps.h
+ # and https://gitlab.onelab.info/gmsh/gmsh/-/blob/master/Graphics/gl2ps.cpp
conflicts('+slepc', when='~petsc')
conflicts('+oce', when='+opencascade')