summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriarspider <iarspider@gmail.com>2020-06-30 04:23:02 +0200
committerGitHub <noreply@github.com>2020-06-29 21:23:02 -0500
commit49f19e1710f1d6efe5d153fbaf9f9a0b0df7e824 (patch)
treeaa81167c8cdaced5be7b50c24b1601d6a8c1bf53
parentb52390dacc14028f84878ebf068bdd95d5cd82e2 (diff)
downloadspack-49f19e1710f1d6efe5d153fbaf9f9a0b0df7e824.tar.gz
spack-49f19e1710f1d6efe5d153fbaf9f9a0b0df7e824.tar.bz2
spack-49f19e1710f1d6efe5d153fbaf9f9a0b0df7e824.tar.xz
spack-49f19e1710f1d6efe5d153fbaf9f9a0b0df7e824.zip
New package: coin3d (#17251)
* New package: coin3d * Update package.py * Flake-8 * Update var/spack/repos/builtin/packages/coin3d/package.py Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com> * Add link-time dependencies * Add configure flags for boost; remove version 4.0.0 (doesn't compile) Co-authored-by: iarspider <iarpsider@gmail.com> Co-authored-by: Adam J. Stewart <ajstewart426@gmail.com>
-rw-r--r--var/spack/repos/builtin/packages/coin3d/package.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/coin3d/package.py b/var/spack/repos/builtin/packages/coin3d/package.py
new file mode 100644
index 0000000000..c613736a3d
--- /dev/null
+++ b/var/spack/repos/builtin/packages/coin3d/package.py
@@ -0,0 +1,51 @@
+# Copyright 2013-2020 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 Coin3d(AutotoolsPackage):
+ """Coin is an OpenGL-based, 3D graphics library that has its roots in the
+ Open Inventor 2.1 API, which Coin still is compatible with."""
+
+ homepage = "https://github.com/coin3d/coin"
+ url = "https://github.com/coin3d/coin/archive/Coin-4.0.0.tar.gz"
+
+ version('3.1.0', sha256='70dd5ef39406e1d9e05eeadd54a5b51884a143e127530876a97744ca54173dc3')
+ version('3.0.0', sha256='d5c2eb0ecaa5c83d93daf0e9e275e58a6a8dfadc74c873d51b0c939011f81bfa')
+ version('2.0.0', sha256='6d26435aa962d085b7accd306a0b478069a7de1bc5ca24e22344971852dd097c')
+
+ depends_on('boost@1.45.0:', type='build')
+ depends_on('doxygen', when='+html', type='build')
+ depends_on('perl', when='+html', type='build')
+ depends_on('openglu', type='link')
+ depends_on('opengl', type='link')
+ depends_on('libsm', type='link')
+ depends_on('libxext', type='link')
+ depends_on('libice', type='link')
+ depends_on('libuuid', type='link')
+ depends_on('libxcb', type='link')
+ depends_on('libxau', type='link')
+
+ variant('html', default=False, description='Build and install Coin HTML documentation')
+ variant('man', default=False, description='Build and install Coin man pages')
+
+ variant('framework', default=False, description="Do 'UNIX-style' installation on Mac OS X")
+ variant('shared', default=True, description='Build shared library (off: build static library)')
+ variant('debug', default=False, description='Make debug build')
+ variant('symbols', default=False, description='Enable debug symbols')
+
+ def configure_args(self):
+ args = []
+ args += self.enable_or_disable('framework')
+ args += self.enable_or_disable('shared')
+ args += self.enable_or_disable('html')
+ args += self.enable_or_disable('man')
+ args += self.enable_or_disable('symbols')
+ args += self.enable_or_disable('debug')
+ args.append("--with-boost=" + self.spec['boost'].prefix)
+ args.append("--with-boost-libdir=" + self.spec['boost'].prefix.lib)
+
+ return args