Ticket #20297: Portfile-drill.diff

File Portfile-drill.diff, 1.3 KB (added by marius.rieder@…, 15 years ago)

drill Portfile update

  • net/drill/Portfile

    old new  
    1 # $Id: Portfile 50984 2009-05-14 21:08:43Z and.damore@macports.org $
     1# $Id: Portfile 41879 2008-11-11 21:03:45Z jann@macports.org $
    22
    33PortSystem 1.0
    44
    55name                drill
    6 version             1.5.1
     6version             1.6.0
    77categories          net devel
    88platforms           darwin
    99maintainers         durchmesser.ch:marius.rieder
     
    1515homepage            http://www.nlnetlabs.nl/projects/drill/
    1616master_sites        http://www.nlnetlabs.nl/downloads/ldns/
    1717distfiles           ldns-${version}${extract.suffix}
    18 checksums           sha1 070210a417633b7358bb3466da40e6f1872f36c2
    19 depends_lib         port:openssl port:ldns
     18patchfiles          patch-configure.ac.diff \
     19                    patch-..-acx_nlnetlabs.m4.diff
     20checksums           sha1 e5fdbc5cd66f6afc4f816e9acd334bddc488e830
     21depends_lib         port:ldns
    2022worksrcdir          ldns-${version}/drill
    2123use_autoconf        yes
    2224autoconf.cmd        autoreconf
    23 configure.args      --with-ldns=${prefix} --with-ssl=${prefix}
     25configure.args      --with-ldns=${prefix}  --without-ssl
     26
     27variant ssl {
     28    configure.args-delete --without-ssl
     29    configure.args-append --with-ssl=${prefix}
     30    depends_lib-append  port:openssl
     31}