Ticket #16730: Portfile

File Portfile, 1.5 KB (added by dbevans (David B. Evans), 15 years ago)

Initial Portfile

Line 
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
4PortSystem      1.0
5
6name            gegl
7version         0.0.18
8set branch      [join [lrange [split ${version} .] 0 1] .]
9categories      graphics
10maintainers     gmail.com:dbevans
11platforms       darwin
12homepage        http://gegl.org/babl
13master_sites    ftp://ftp.gimp.org/pub/gegl/${branch}/
14use_bzip2       yes
15
16description \
17    GEGL is a graph based image processing framework.
18
19long_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
24checksums        md5     e458409440a7b51f446df321c3657e4d \
25                 sha1    f8113ad33161337eb107ad84c0ac968dca1d02d2 \
26                 rmd160  baff271141c0a569c98537b3d727b1a3564cdebb
27
28depends_build \
29    port:pkgconfig
30
31depends_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
42configure.args-append  --disable-docs
43
44variant doc description {Build docs with gtk-doc}  {
45    depends_build-append port:gtk-doc
46    configure.args-append  --enable-gtk-doc
47}
48
49variant workshop description {Enable build of workshop operations} {
50    configure.args-append --enable-workshop
51}
52