Ticket #16803: patch-gimp2-Portfile.diff

File patch-gimp2-Portfile.diff, 2.5 KB (added by dbevans (David B. Evans), 16 years ago)

Revised patch for Portfile

  • Portfile

    old new  
    44PortSystem 1.0
    55
    66name            gimp2
    7 version         2.6.0
     7version         2.6.1
    88categories      graphics
    99maintainers     gmail.com:dbevans
    1010homepage        http://www.gimp.org/
     
    1717        The GIMP provides the user with a wide variety of image \
    1818        manipulation, painting, processing, and rendering tools.
    1919
    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  66dae43b362298314befc39916bb3e01b9098b50
     20set branch      [join [lrange [split ${version} .] 0 1] .]
     21master_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
     25checksums       md5     2fa176d1da75575c88b01019d014744d \
     26                sha1    c03c737496444c811c73772d356db3dbf886fd68 \
     27                rmd160  4cf18ae63a813ccf35a0b33ede3b24a304b47b03
    2828
    2929distname        gimp-${version}
    3030use_bzip2       yes
     
    4040                port:libwmf \
    4141                port:p5-xml-parser \
    4242                port:poppler \
    43                 port:webkit-gtk \
    4443                port:py25-gtk
    4544
    4645platform darwin 7 {
    4746    # poppler currently can't be built on 10.3 (see #15603)
    4847    depends_lib-delete port:poppler
     48    configure.args-append --without-poppler
    4949}
    5050
    5151platform darwin 9 {
     
    6262                --without-dbus \
    6363                --without-hal \
    6464                --without-alsa \
    65                 --without-gvfs
     65                --without-gvfs \
     66                --without-webkit
    6667
    6768variant no_python description {Disable Python scripts and filters} {
    6869    depends_lib-delete      port:py25-gtk
     
    7879    depends_lib-append      port:gvfs
    7980    configure.args-delete   --without-gvfs
    8081}
     82
     83variant help_browser description {Enable Gimp help browser} {
     84    depends_lib-append      port:gtk-webkit
     85    configure.args-delete   --without-webkit
     86}
     87
     88livecheck.check regex
     89livecheck.url   http://www.gimp.org/downloads/
     90livecheck.regex "gimp-(${branch}(?:\\.\\d+)*)${extract.suffix}"