Ticket #16735: patch-gimp2-Portfile.diff
File patch-gimp2-Portfile.diff, 2.8 KB (added by dbevans (David B. Evans), 16 years ago) |
---|
-
Portfile
old new 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 1 2 # $Id: Portfile 37580 2008-06-14 03:20:30Z jmr@macports.org $ 2 3 3 4 PortSystem 1.0 4 5 5 6 name gimp2 6 version 2.4.5 7 revision 1 7 version 2.6.0 8 8 categories graphics 9 maintainers nomaintainer9 maintainers gmail.com:dbevans 10 10 homepage http://www.gimp.org/ 11 11 platforms darwin 12 12 … … 21 21 master_sites http://gimp.mirrors.hoobly.com/gimp/v${M.m}/ \ 22 22 ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/v${M.m}/ \ 23 23 ftp://ftp.gimp.org/pub/gimp/v${M.m}/ 24 checksums md5 162e264dc5f0c7e4de8794e78818381f 24 25 checksums md5 e5ac955fee8b376d431e4693027d7640 \ 26 sha1 187effb5722a1d5943c48ec74a3be96c836215f6 \ 27 rmd160 66dae43b362298314befc39916bb3e01b9098b50 28 25 29 distname gimp-${version} 26 30 use_bzip2 yes 27 31 28 depends_lib port:aalib \ 32 depends_lib port:gegl \ 33 port:aalib \ 29 34 port:curl \ 30 35 port:libart_lgpl \ 31 36 port:libexif \ 32 37 port:libgnomeui \ 33 port:libgtkhtml \34 38 port:libmng \ 35 39 port:librsvg \ 36 40 port:libwmf \ 37 41 port:p5-xml-parser \ 38 42 port:poppler \ 43 port:webkit-gtk \ 39 44 port:py25-gtk 40 45 41 46 platform darwin 7 { … … 54 59 configure.python ${prefix}/bin/python2.5 55 60 configure.args --enable-mp \ 56 61 --with-pdbgen \ 57 --without-dbus 62 --without-dbus \ 63 --without-hal \ 64 --without-alsa \ 65 --without-gvfs 58 66 59 variant without_gnome description "Disable SVG support and built-in help browser." {60 depends_lib-delete port:libgnomeui \61 port:libgtkhtml \62 port:librsvg63 configure.args-append --without-gtkhtml2 \64 --without-librsvg \65 --without-gnomevfs66 }67 67 68 variant no_python description "Disable Python scripts and filters."{68 variant no_python description {Disable Python scripts and filters} { 69 69 depends_lib-delete port:py25-gtk 70 70 configure.args-append --disable-python 71 71 } 72 72 73 variant dbus {73 variant dbus description {Enable dbus support} { 74 74 depends_lib-append port:dbus-glib 75 75 configure.args-delete --without-dbus 76 76 } 77 77 78 variant gvfs description {Enable gvfs support} { 79 depends_lib-append port:gvfs 80 configure.args-delete --without-gvfs 81 } 78 82