Ticket #11365: Portfile

File Portfile, 963 bytes (added by roederja@…, 17 years ago)
Line 
1# $Id: Portfile 20416 2006-11-03 02:15:53Z jberry@macports.org $
2
3PortSystem 1.0
4
5name                ldns
6version             1.1.0
7categories          net devel
8platforms           darwin
9maintainers         roederja@student.ethz.ch
10description         DNS library in C
11long_description    ldns is a library with the aim of simplifying DNS \
12                    programing in C. It is heavily based upon the Net::DNS module from \
13                    Perl.
14
15homepage            http://www.nlnetlabs.nl/ldns/
16master_sites        http://www.nlnetlabs.nl/downloads/
17checksums           sha1 1ef632f343ee9b424be035ece4acd526f0d9c21c
18
19depends_lib         port:openssl
20depends_build       bin:glibtool:libtool
21
22configure.args      --mandir=${prefix}/share/man --with-ssl=${prefix}
23build.type          gnu
24
25platform darwin 8 {
26    configure.env MACOSX_DEPLOYMENT_TARGET=10.4
27    build.env MACOSX_DEPLOYMENT_TARGET=10.4
28    destroot.env MACOSX_DEPLOYMENT_TARGET=10.4
29}