summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorTodd Gamblin <tgamblin@llnl.gov>2016-04-04 23:09:41 -0700
committerTodd Gamblin <tgamblin@llnl.gov>2016-04-04 23:09:41 -0700
commitb09d87970c4a297aee8b065d26997aab08e45eb2 (patch)
tree6d24da4528fae96c23894b833ae9ef7b5545bb39 /var
parentcefcbfea8e326a3c898d76f461568ada4e4b3788 (diff)
parent281ccb3dadebdd18f17f65879d9e0adad40b5c7a (diff)
downloadspack-b09d87970c4a297aee8b065d26997aab08e45eb2.tar.gz
spack-b09d87970c4a297aee8b065d26997aab08e45eb2.tar.bz2
spack-b09d87970c4a297aee8b065d26997aab08e45eb2.tar.xz
spack-b09d87970c4a297aee8b065d26997aab08e45eb2.zip
Merge pull request #742 from KineticTheory/pkg-dia
Provide dia
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/dia/package.py34
1 files changed, 34 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..1cb5910e46
--- /dev/null
+++ b/var/spack/repos/builtin/packages/dia/package.py
@@ -0,0 +1,34 @@
+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')
+
+ depends_on('gtkplus@2.6.0:')
+ 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 install(self, spec, prefix):
+
+ # configure, build, install:
+ options = ['--prefix=%s' % prefix,
+ '--with-cairo',
+ '--with-xslt-prefix=%s' % spec['libxslt'].prefix,
+ '--with-python',
+ '--with-swig']
+
+ configure(*options)
+ make()
+ make('install')