Ticket #16735: patch-gimp2-Portfile.diff

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

Revised patch for Portfile

  • 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
    12# $Id: Portfile 37580 2008-06-14 03:20:30Z jmr@macports.org $
    23
    34PortSystem 1.0
    45
    56name            gimp2
    6 version         2.4.5
    7 revision        1
     7version         2.6.0
    88categories      graphics
    9 maintainers     nomaintainer
     9maintainers     gmail.com:dbevans
    1010homepage        http://www.gimp.org/
    1111platforms       darwin
    1212
     
    2121master_sites    http://gimp.mirrors.hoobly.com/gimp/v${M.m}/ \
    2222                ftp://ftp.mirrorservice.org/sites/ftp.gimp.org/pub/gimp/v${M.m}/ \
    2323                ftp://ftp.gimp.org/pub/gimp/v${M.m}/
    24 checksums       md5 162e264dc5f0c7e4de8794e78818381f
     24
     25checksums       md5     e5ac955fee8b376d431e4693027d7640 \
     26                sha1    187effb5722a1d5943c48ec74a3be96c836215f6 \
     27                rmd160  66dae43b362298314befc39916bb3e01b9098b50
     28
    2529distname        gimp-${version}
    2630use_bzip2       yes
    2731
    28 depends_lib     port:aalib \
     32depends_lib     port:gegl \
     33                port:aalib \
    2934                port:curl \
    3035                port:libart_lgpl \
    3136                port:libexif \
    3237                port:libgnomeui \
    33                 port:libgtkhtml \
    3438                port:libmng \
    3539                port:librsvg \
    3640                port:libwmf \
    3741                port:p5-xml-parser \
    3842                port:poppler \
     43                port:webkit-gtk \
    3944                port:py25-gtk
    4045
    4146platform darwin 7 {
     
    5459configure.python    ${prefix}/bin/python2.5
    5560configure.args  --enable-mp \
    5661                --with-pdbgen \
    57                 --without-dbus
     62                --without-dbus \
     63                --without-hal \
     64                --without-alsa \
     65                --without-gvfs
    5866
    59 variant without_gnome description "Disable SVG support and built-in help browser." {
    60     depends_lib-delete      port:libgnomeui \
    61                             port:libgtkhtml \
    62                             port:librsvg
    63     configure.args-append   --without-gtkhtml2 \
    64                             --without-librsvg \
    65                             --without-gnomevfs
    66 }
    6767
    68 variant no_python description "Disable Python scripts and filters." {
     68variant no_python description {Disable Python scripts and filters} {
    6969    depends_lib-delete      port:py25-gtk
    7070    configure.args-append   --disable-python
    7171}
    7272
    73 variant dbus {
     73variant dbus description {Enable dbus support} {
    7474    depends_lib-append      port:dbus-glib
    7575    configure.args-delete   --without-dbus
    7676}
    7777
     78variant gvfs description {Enable gvfs support} {
     79    depends_lib-append      port:gvfs
     80    configure.args-delete   --without-gvfs
     81}
    7882