Ticket #14896: Portfile.ldns

File Portfile.ldns, 1.0 KB (added by marius.rieder@…, 16 years ago)

ldns 1.2.2 Portfile

Line 
1# $Id$
2
3PortSystem 1.0
4
5name                ldns
6version             1.2.2
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 e73d13cd36490485e92924a1857dab12b3512613
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}
30
31platform darwin 9 {
32    configure.env MACOSX_DEPLOYMENT_TARGET=10.4
33    build.env MACOSX_DEPLOYMENT_TARGET=10.4
34    destroot.env MACOSX_DEPLOYMENT_TARGET=10.4
35}