summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKelly (KT) Thompson <kgt@lanl.gov>2016-04-04 17:05:30 -0600
committerKelly (KT) Thompson <kgt@lanl.gov>2016-04-04 17:05:30 -0600
commitc0eb5844e536c25165b913f4dc203fe09f8ecc3d (patch)
treec4d09807fbc8565b5f63503b49740d7ae31546fc
parentdb23d27eb4c7b6be36a0b9df19160cbd3af511e4 (diff)
downloadspack-c0eb5844e536c25165b913f4dc203fe09f8ecc3d.tar.gz
spack-c0eb5844e536c25165b913f4dc203fe09f8ecc3d.tar.bz2
spack-c0eb5844e536c25165b913f4dc203fe09f8ecc3d.tar.xz
spack-c0eb5844e536c25165b913f4dc203fe09f8ecc3d.zip
+ Provide dia, a program for drawing structured diagrams.
-rw-r--r--var/spack/repos/builtin/packages/dia/package.py67
1 files changed, 67 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/dia/package.py b/var/spack/repos/builtin/packages/dia/package.py
new file mode 100644
index 0000000000..0c8bbfc425
--- /dev/null
+++ b/var/spack/repos/builtin/packages/dia/package.py
@@ -0,0 +1,67 @@
+from spack import *
+
+class Dia(Package):
+ """Dia is a program for drawing structured diagrams."""
+ homepage = 'https://wiki.gnome.org/Apps/Dia'
+ url = 'https://ftp.gnome.org/pub/gnome/sources/dia/0.97/dia-0.97.3.tar.xz'
+
+ version('0.97.3', '0e744a0f6a6c4cb6a089e4d955392c3c')
+
+ #variant('ncurses', default=True, description='Enables the build of the ncurses gui')
+ #variant('openssl', default=True, description="Enables CMake's OpenSSL features")
+ #variant('qt', default=False, description='Enables the build of cmake-gui')
+ #variant('doc', default=False, description='Enables the generation of html and man page documentation')
+
+ depends_on('gtkplus@2.6.0:')
+ # depends_on('openssl', when='+openssl')
+ #depends_on('qt', when='+qt')
+ #depends_on('python@2.7.11:', when='+doc')
+ depends_on('cairo')
+ #depends_on('libart') # optional dependency, not yet supported by spack.
+ depends_on('libpng')
+ depends_on('libxslt')
+ depends_on('python')
+ depends_on('swig')
+ # depends_on('py-gtk') # optional dependency, not yet supported by spack.
+
+ def url_for_version(self, version):
+ """Handle Dia's version-based custom URLs."""
+ return 'https://ftp.gnome.org/pub/gnome/source/dia/%s/dia-%s.tar.xz' % (version.up_to(2), version)
+
+ # def validate(self, spec):
+ # """
+ # Checks if incompatible versions of qt were specified
+
+ # :param spec: spec of the package
+ # :raises RuntimeError: in case of inconsistencies
+ # """
+
+ # if '+qt' in spec and spec.satisfies('^qt@5.4.0'):
+ # msg = 'qt-5.4.0 has broken CMake modules.'
+ # raise RuntimeError(msg)
+
+ def install(self, spec, prefix):
+ # Consistency check
+ # self.validate(spec)
+
+ # configure, build, install:
+ options = ['--prefix=%s' % prefix,
+ '--with-cairo',
+ '--with-xslt-prefix=%s' % spec['libxslt'].prefix,
+ '--with-python',
+ '--with-swig']
+
+ # if '+qt' in spec:
+ # options.append('--qt-gui')
+
+ # if '+doc' in spec:
+ # options.append('--sphinx-html')
+ # options.append('--sphinx-man')
+
+ # if '+openssl' in spec:
+ # options.append('--')
+ # options.append('-DCMAKE_USE_OPENSSL=ON')
+
+ configure(*options)
+ make()
+ make('install')