1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 37226 2008-05-31 07:53:28Z jmr@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name gegl |
---|
7 | version 0.0.18 |
---|
8 | set branch [join [lrange [split ${version} .] 0 1] .] |
---|
9 | categories graphics |
---|
10 | maintainers gmail.com:dbevans |
---|
11 | platforms darwin |
---|
12 | homepage http://gegl.org/babl |
---|
13 | master_sites ftp://ftp.gimp.org/pub/gegl/${branch}/ |
---|
14 | use_bzip2 yes |
---|
15 | |
---|
16 | description \ |
---|
17 | GEGL is a graph based image processing framework. |
---|
18 | |
---|
19 | long_description \ |
---|
20 | GEGL is a graph based image processing framework offering image processing and \ |
---|
21 | compositing on large images. GEGL is suitable for projects ranging from small \ |
---|
22 | one-off projects to interactive applications. |
---|
23 | |
---|
24 | checksums md5 e458409440a7b51f446df321c3657e4d \ |
---|
25 | sha1 f8113ad33161337eb107ad84c0ac968dca1d02d2 \ |
---|
26 | rmd160 baff271141c0a569c98537b3d727b1a3564cdebb |
---|
27 | |
---|
28 | depends_build \ |
---|
29 | port:pkgconfig |
---|
30 | |
---|
31 | depends_lib \ |
---|
32 | port:babl \ |
---|
33 | port:gtk2 \ |
---|
34 | port:lua \ |
---|
35 | port:openexr \ |
---|
36 | port:librsvg \ |
---|
37 | port:libsdl \ |
---|
38 | port:graphviz \ |
---|
39 | port:ffmpeg \ |
---|
40 | port:asciidoc |
---|
41 | |
---|
42 | configure.args-append --disable-docs |
---|
43 | |
---|
44 | variant doc description {Build docs with gtk-doc} { |
---|
45 | depends_build-append port:gtk-doc |
---|
46 | configure.args-append --enable-gtk-doc |
---|
47 | } |
---|
48 | |
---|
49 | variant workshop description {Enable build of workshop operations} { |
---|
50 | configure.args-append --enable-workshop |
---|
51 | } |
---|
52 | |
---|