Ticket #24057: net-libproxy-Portfile.diff

File net-libproxy-Portfile.diff, 1.9 KB (added by rmsfisher@…, 15 years ago)
  • net/libproxy/Portfile

    old new  
    22# $Id: Portfile 63024 2010-01-23 20:01:04Z macsforever2000@macports.org $
    33
    44PortSystem          1.0
     5PortGroup           cmake 1.0
    56
    67name                libproxy
    7 version             0.3.0
    8 revision            1
     8version             0.4.0
    99categories          net
    1010maintainers         devans openmaintainer
    1111platforms           darwin
     
    1919                    network resource, how do I reach it? It handles all \
    2020                    the details, enabling you to get back to programming.
    2121
    22 checksums           md5     6ded75a6c6aef53be657ece207cc26c4 \
    23                     sha1    9d0d29b352a2cc4d9511d362bc02162eca91df59 \
    24                     rmd160  270d216a1e9c1d174ffc1572d2bdaa30bb51d034
     22checksums           md5     b22c95df70a40949e99add5171fc3084 \
     23                    sha1    4d9dc92dd40255a51e541099b39d9852563dbc6a \
     24                    rmd160  9375f6926cf7c301e4f96a018ca5278c7c8c5c45
    2525
    2626depends_build       port:pkgconfig
    2727
     
    2929                    port:python26 \
    3030                    port:xorg-libXmu
    3131
    32 configure.python    ${prefix}/bin/python2.6
     32pre-configure {
     33    system "cd ${worksrcpath} && ./autogen.sh"
     34}
    3335
    34 configure.args      --without-webkit \
    35                     --without-kde \
    36                     --without-networkmanager \
    37                     --without-mozjs
     36configure.python    ${prefix}/bin/python2.6
    3837
     38# this variant will need something other than its current code to work with cmake
    3939variant no_x11 conflicts kde {
    4040        configure.args-append --without-x11
    4141        depends_lib-delete port:xorg-libXmu
    4242}
    4343
     44# this variant will need something other than its current code to work with cmake
    4445variant kde conflicts no_x11 description {Enable kde plugin (requires X11)} {
    4546        configure.args-delete --without-kde
    4647}