Ticket #15960: Portfile.diff

File Portfile.diff, 2.1 KB (added by usx303@…, 16 years ago)

new Portfile patch with variants for python and perl

  • Portfile

     
    33PortSystem        1.0
    44
    55name              libprelude
    6 version           0.9.16
     6version           0.9.17.2
    77categories        security
    88maintainers       nomaintainer
    99
     
    1616                  by performing automatic correlation between events.
    1717
    1818homepage          http://www.prelude-ids.org/
    19 master_sites      http://www.prelude-ids.org/download/releases/ \
    20                   http://www.prelude-ids.org/download/releases/old/
     19master_sites      http://www.prelude-ids.org/download/releases/libprelude/
    2120platforms         darwin
    2221build.type        gnu
    23 checksums         md5 d2fa3e77d9104d8ae02e7730e1180f99
     22checksums         md5 7c769293b4d79be2667993b8a88d42ac \
     23                  sha1 c21ce3deb3d2294901f9451adae18829b72cb3bd \
     24                  rmd160 710430d97cd90b54a0f70d6500bfacd88faeeea4
    2425
    25 depends_lib             port:gettext port:gnutls port:libgcrypt port:libgpg-error \
    26                         port:libiconv port:libtasn1 port:zlib
     26depends_lib       port:gettext port:gnutls port:libgcrypt port:libgpg-error \
     27                  port:libiconv port:libtasn1 port:zlib
    2728
    2829configure.args    --mandir=${prefix}/share/man \
    2930                  --with-html-dir=${prefix}/share/doc \
    30                   --enable-openssl \
    31                   --localstatedir=${prefix}/var
     31                  --localstatedir=${prefix}/var \
     32                  --without-perl \
     33                  --without-python
     34
     35variant 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
     41variant 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
     47variant 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