diff options
author | miwi <miwi@FreeBSD.org> | 2014-06-03 16:36:10 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2014-06-03 16:36:10 +0800 |
commit | b0c640ed2e75bcd01971d243713bf5844e35da03 (patch) | |
tree | 2f73b22656f373cf09700b25f8f19c6b85792dee /dns | |
parent | 6c9de79c9c1ee329e73a02660b2a8dd709774026 (diff) | |
download | freebsd-ports-gnome-b0c640ed2e75bcd01971d243713bf5844e35da03.tar.gz freebsd-ports-gnome-b0c640ed2e75bcd01971d243713bf5844e35da03.tar.zst freebsd-ports-gnome-b0c640ed2e75bcd01971d243713bf5844e35da03.zip |
wdns is a low-level DNS library. It contains a fast DNS message parser
and various utility functions for manipulating wire-format DNS data.
WWW: https://github.com/farsightsec/wdns
PR: ports/190552
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/wdns/Makefile | 21 | ||||
-rw-r--r-- | dns/wdns/distinfo | 2 | ||||
-rw-r--r-- | dns/wdns/pkg-descr | 4 | ||||
-rw-r--r-- | dns/wdns/pkg-plist | 11 |
5 files changed, 39 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index 5f62a66a55b6..b54ad89c0e17 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -173,6 +173,7 @@ SUBDIR += validns SUBDIR += vizone SUBDIR += walker + SUBDIR += wdns SUBDIR += yadifa SUBDIR += zkt SUBDIR += zonecheck diff --git a/dns/wdns/Makefile b/dns/wdns/Makefile new file mode 100644 index 000000000000..02aabe419702 --- /dev/null +++ b/dns/wdns/Makefile @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= wdns +PORTVERSION= 0.5 +CATEGORIES= dns +MASTER_SITES= https://dl.farsightsecurity.com/dist/wdns/ + +MAINTAINER= truckman@FreeBSD.org +COMMENT= Low-level DNS library + +LICENSE= APACHE20 + +GNU_CONFIGURE= yes +USE_LDCONFIG= yes +USE_PKGCONFIG= yes +USES= gmake libtool pathfix pkgconfig + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libwdns.so.0.0.0 + +.include <bsd.port.mk> diff --git a/dns/wdns/distinfo b/dns/wdns/distinfo new file mode 100644 index 000000000000..ef35f4386095 --- /dev/null +++ b/dns/wdns/distinfo @@ -0,0 +1,2 @@ +SHA256 (wdns-0.5.tar.gz) = 682993507b310055c9d03a8d10f71f12cd9773958b7d601890881cd59e51bc21 +SIZE (wdns-0.5.tar.gz) = 341361 diff --git a/dns/wdns/pkg-descr b/dns/wdns/pkg-descr new file mode 100644 index 000000000000..6dfdc45cad92 --- /dev/null +++ b/dns/wdns/pkg-descr @@ -0,0 +1,4 @@ +wdns is a low-level DNS library. It contains a fast DNS message parser +and various utility functions for manipulating wire-format DNS data. + +WWW: https://github.com/farsightsec/wdns diff --git a/dns/wdns/pkg-plist b/dns/wdns/pkg-plist new file mode 100644 index 000000000000..a3d2990d3270 --- /dev/null +++ b/dns/wdns/pkg-plist @@ -0,0 +1,11 @@ +bin/wdns-dump-pcap +bin/wdns-test-deserialize-rrset +bin/wdns-test-downcase-rrset +bin/wdns-test-print-message +bin/wdns-test-serialize-rrset +include/wdns.h +lib/libwdns.a +lib/libwdns.so +lib/libwdns.so.0 +lib/libwdns.so.0.0.0 +libdata/pkgconfig/libwdns.pc |