Ticket #15960: Portfile.diff
File Portfile.diff, 2.1 KB (added by usx303@…, 16 years ago) |
---|
-
Portfile
3 3 PortSystem 1.0 4 4 5 5 name libprelude 6 version 0.9.1 66 version 0.9.17.2 7 7 categories security 8 8 maintainers nomaintainer 9 9 … … 16 16 by performing automatic correlation between events. 17 17 18 18 homepage http://www.prelude-ids.org/ 19 master_sites http://www.prelude-ids.org/download/releases/ \ 20 http://www.prelude-ids.org/download/releases/old/ 19 master_sites http://www.prelude-ids.org/download/releases/libprelude/ 21 20 platforms darwin 22 21 build.type gnu 23 checksums md5 d2fa3e77d9104d8ae02e7730e1180f99 22 checksums md5 7c769293b4d79be2667993b8a88d42ac \ 23 sha1 c21ce3deb3d2294901f9451adae18829b72cb3bd \ 24 rmd160 710430d97cd90b54a0f70d6500bfacd88faeeea4 24 25 25 depends_lib 26 26 depends_lib port:gettext port:gnutls port:libgcrypt port:libgpg-error \ 27 port:libiconv port:libtasn1 port:zlib 27 28 28 29 configure.args --mandir=${prefix}/share/man \ 29 30 --with-html-dir=${prefix}/share/doc \ 30 --enable-openssl \ 31 --localstatedir=${prefix}/var 31 --localstatedir=${prefix}/var \ 32 --without-perl \ 33 --without-python 34 35 variant python24 conflicts python25 description {python2.4 bindings} { 36 configure.args-delete --without-python 37 configure.args-append --with-python=${prefix}/bin/python2.4 38 depends_lib-append port:python24 39 } 40 41 variant python25 conflicts python24 description {python2.5 bindings} { 42 configure.args-delete --without-python 43 configure.args-append --with-python=${prefix}/bin/python2.5 44 depends_lib-append port:python25 45 } 46 47 variant perl description {perl bindings} { 48 configure.args-delete --without-perl 49 configure.args-append --with-perl=${prefix}/bin/perl5.8 50 depends_lib-append port:perl5.8 51 } 52