
This PR updates the vtk package to use new variable names and adds some dependencies. - add version 9.1.0 - add version 1.4.2 to gl2ps package. This is needed to use gl2ps as a dependency. - new package: utf8cpp, used as a dependency for version 9. - add dependencies when possible - pugixml - libogg - libtheora - utf8cpp - gl2ps - proj - turn off configuring MPI if ~mpi - always use the package-provided FindHDF5.cmake for versions up to 8. Version @9: already does this so does not need a patch. - use new CMake variables for version 9 - remove unused CMake variables depending on version
62 lines
2.0 KiB
Python
62 lines
2.0 KiB
Python
# Copyright 2013-2021 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class Gl2ps(CMakePackage):
|
|
"""GL2PS is a C library providing high quality vector output for any
|
|
OpenGL application."""
|
|
|
|
homepage = "https://www.geuz.org/gl2ps/"
|
|
url = "https://geuz.org/gl2ps/src/gl2ps-1.3.9.tgz"
|
|
|
|
version('1.4.2', sha256='8d1c00c1018f96b4b97655482e57dcb0ce42ae2f1d349cd6d4191e7848d9ffe9')
|
|
version('1.4.0', sha256='03cb5e6dfcd87183f3b9ba3b22f04cd155096af81e52988cc37d8d8efe6cf1e2')
|
|
version('1.3.9', sha256='8a680bff120df8bcd78afac276cdc38041fed617f2721bade01213362bcc3640')
|
|
|
|
variant('png', default=True, description='Enable PNG support')
|
|
variant('zlib', default=True, description='Enable compression using ZLIB')
|
|
variant('doc', default=False,
|
|
description='Generate documentation using pdflatex')
|
|
|
|
depends_on('cmake@2.4:', type='build')
|
|
|
|
# X11 libraries:
|
|
depends_on('freeglut')
|
|
depends_on('gl')
|
|
depends_on('libice')
|
|
depends_on('libsm')
|
|
depends_on('libxau')
|
|
depends_on('libxdamage')
|
|
depends_on('libxdmcp')
|
|
depends_on('libxext')
|
|
depends_on('libxfixes')
|
|
depends_on('libxi')
|
|
depends_on('libxmu')
|
|
depends_on('libxt')
|
|
depends_on('libxxf86vm')
|
|
depends_on('libxcb')
|
|
depends_on('libdrm')
|
|
depends_on('expat')
|
|
|
|
depends_on('libpng', when='+png')
|
|
depends_on('zlib', when='+zlib')
|
|
depends_on('texlive', type='build', when='+doc')
|
|
|
|
def variant_to_bool(self, variant):
|
|
return 'ON' if variant in self.spec else 'OFF'
|
|
|
|
def cmake_args(self):
|
|
options = [
|
|
self.define_from_variant('ENABLE_PNG', 'png'),
|
|
self.define_from_variant('ENABLE_ZLIB', 'zlib'),
|
|
]
|
|
if '~doc' in self.spec:
|
|
# Make sure we don't look.
|
|
options.append('-DCMAKE_DISABLE_FIND_PACKAGE_LATEX:BOOL=ON')
|
|
|
|
return options
|