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 2 2 # $Id: Portfile 63024 2010-01-23 20:01:04Z macsforever2000@macports.org $ 3 3 4 4 PortSystem 1.0 5 PortGroup cmake 1.0 5 6 6 7 name libproxy 7 version 0.3.0 8 revision 1 8 version 0.4.0 9 9 categories net 10 10 maintainers devans openmaintainer 11 11 platforms darwin … … 19 19 network resource, how do I reach it? It handles all \ 20 20 the details, enabling you to get back to programming. 21 21 22 checksums md5 6ded75a6c6aef53be657ece207cc26c4 \23 sha1 9d0d29b352a2cc4d9511d362bc02162eca91df59\24 rmd160 270d216a1e9c1d174ffc1572d2bdaa30bb51d03422 checksums md5 b22c95df70a40949e99add5171fc3084 \ 23 sha1 4d9dc92dd40255a51e541099b39d9852563dbc6a \ 24 rmd160 9375f6926cf7c301e4f96a018ca5278c7c8c5c45 25 25 26 26 depends_build port:pkgconfig 27 27 … … 29 29 port:python26 \ 30 30 port:xorg-libXmu 31 31 32 configure.python ${prefix}/bin/python2.6 32 pre-configure { 33 system "cd ${worksrcpath} && ./autogen.sh" 34 } 33 35 34 configure.args --without-webkit \ 35 --without-kde \ 36 --without-networkmanager \ 37 --without-mozjs 36 configure.python ${prefix}/bin/python2.6 38 37 38 # this variant will need something other than its current code to work with cmake 39 39 variant no_x11 conflicts kde { 40 40 configure.args-append --without-x11 41 41 depends_lib-delete port:xorg-libXmu 42 42 } 43 43 44 # this variant will need something other than its current code to work with cmake 44 45 variant kde conflicts no_x11 description {Enable kde plugin (requires X11)} { 45 46 configure.args-delete --without-kde 46 47 }