Ticket #16803: patch-gimp2-Portfile.diff
File patch-gimp2-Portfile.diff, 2.5 KB (added by dbevans (David B. Evans), 16 years ago) |
---|
-
Portfile
old new 4 4 PortSystem 1.0 5 5 6 6 name gimp2 7 version 2.6. 07 version 2.6.1 8 8 categories graphics 9 9 maintainers gmail.com:dbevans 10 10 homepage http://www.gimp.org/ … … 17 17 The GIMP provides the user with a wide variety of image \ 18 18 manipulation, painting, processing, and rendering tools. 19 19 20 set M.m[join [lrange [split ${version} .] 0 1] .]21 master_sites http://gimp.mirrors.hoobly.com/gimp/v${ M.m}/ \22 ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/v${ M.m}/ \23 ftp://ftp.gimp.org/pub/gimp/v${ M.m}/24 25 checksums md5 e5ac955fee8b376d431e4693027d7640\26 sha1 187effb5722a1d5943c48ec74a3be96c836215f6\27 rmd160 66dae43b362298314befc39916bb3e01b9098b5020 set branch [join [lrange [split ${version} .] 0 1] .] 21 master_sites http://gimp.mirrors.hoobly.com/gimp/v${branch}/ \ 22 ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/v${branch}/ \ 23 ftp://ftp.gimp.org/pub/gimp/v${branch}/ 24 25 checksums md5 2fa176d1da75575c88b01019d014744d \ 26 sha1 c03c737496444c811c73772d356db3dbf886fd68 \ 27 rmd160 4cf18ae63a813ccf35a0b33ede3b24a304b47b03 28 28 29 29 distname gimp-${version} 30 30 use_bzip2 yes … … 40 40 port:libwmf \ 41 41 port:p5-xml-parser \ 42 42 port:poppler \ 43 port:webkit-gtk \44 43 port:py25-gtk 45 44 46 45 platform darwin 7 { 47 46 # poppler currently can't be built on 10.3 (see #15603) 48 47 depends_lib-delete port:poppler 48 configure.args-append --without-poppler 49 49 } 50 50 51 51 platform darwin 9 { … … 62 62 --without-dbus \ 63 63 --without-hal \ 64 64 --without-alsa \ 65 --without-gvfs 65 --without-gvfs \ 66 --without-webkit 66 67 67 68 variant no_python description {Disable Python scripts and filters} { 68 69 depends_lib-delete port:py25-gtk … … 78 79 depends_lib-append port:gvfs 79 80 configure.args-delete --without-gvfs 80 81 } 82 83 variant help_browser description {Enable Gimp help browser} { 84 depends_lib-append port:gtk-webkit 85 configure.args-delete --without-webkit 86 } 87 88 livecheck.check regex 89 livecheck.url http://www.gimp.org/downloads/ 90 livecheck.regex "gimp-(${branch}(?:\\.\\d+)*)${extract.suffix}"