Ticket #20297: Portfile-ldns-tools.diff

File Portfile-ldns-tools.diff, 1.2 KB (added by marius.rieder@…, 15 years ago)

ldns-tools Portfile update

  • net/ldns-tools/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                ldns-tools
    6 version             1.5.1
     6version             1.6.0
    77categories          net devel
    88platforms           darwin
    99maintainers         durchmesser.ch:marius.rieder
     
    1414homepage            http://www.nlnetlabs.nl/projects/ldns/
    1515master_sites        http://www.nlnetlabs.nl/downloads/ldns/
    1616distfiles           ldns-${version}${extract.suffix}
    17 checksums           sha1 070210a417633b7358bb3466da40e6f1872f36c2
    18 depends_lib         port:openssl port:ldns
     17checksums           sha1 e5fdbc5cd66f6afc4f816e9acd334bddc488e830
     18depends_lib         port:ldns
    1919worksrcdir          ldns-${version}/examples
    2020use_autoconf        yes
    2121autoconf.cmd        autoreconf
    22 configure.args      --with-ldns=${prefix} --with-ssl=${prefix}
     22configure.args      --with-ldns=${prefix} --without-ssl
     23
     24variant ssl {
     25    configure.args-delete --without-ssl
     26    configure.args-append --with-ssl=${prefix}
     27    depends_lib-append  port:openssl
     28}