diff options
author | Don Lewis <truckman@FreeBSD.org> | 2015-04-02 23:40:29 +0000 |
---|---|---|
committer | Don Lewis <truckman@FreeBSD.org> | 2015-04-02 23:40:29 +0000 |
commit | 09cf723a01d7b2674d7b11484559df7e94b866ed (patch) | |
tree | 4fa702cf4896830186bc5fc7e2d145023fd25e36 /dns | |
parent | ba15ad85c05f6b6bdeafcc93bd9d4e99cd6860c6 (diff) | |
download | ports-09cf723a01d7b2674d7b11484559df7e94b866ed.tar.gz ports-09cf723a01d7b2674d7b11484559df7e94b866ed.zip |
Notes
Diffstat (limited to 'dns')
-rw-r--r-- | dns/Makefile | 1 | ||||
-rw-r--r-- | dns/py-pywdns/Makefile | 27 | ||||
-rw-r--r-- | dns/py-pywdns/distinfo | 2 | ||||
-rw-r--r-- | dns/py-pywdns/pkg-descr | 5 |
4 files changed, 35 insertions, 0 deletions
diff --git a/dns/Makefile b/dns/Makefile index fea050488a37..0cd70d51a428 100644 --- a/dns/Makefile +++ b/dns/Makefile @@ -157,6 +157,7 @@ SUBDIR += py-ldns SUBDIR += py-namebench SUBDIR += py-publicsuffix + SUBDIR += py-pywdns SUBDIR += py-twistedNames SUBDIR += radns SUBDIR += rbldnsd diff --git a/dns/py-pywdns/Makefile b/dns/py-pywdns/Makefile new file mode 100644 index 000000000000..bd97a52e1f3e --- /dev/null +++ b/dns/py-pywdns/Makefile @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= pywdns +PORTVERSION= 0.6.0 +CATEGORIES= dns python +MASTER_SITES= FARSIGHT LOCAL/truckman/farsight +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= truckman@FreeBSD.org +COMMENT= Python wrapper for dns/wdns + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/COPYRIGHT + +LIB_DEPENDS= libwdns.so:${PORTSDIR}/dns/wdns + +USE_PYTHON= distutils autoplist + +USES= pkgconfig python + +post-patch: + ${REINPLACE_CMD} -e "1s+ python+ ${PYTHON_CMD}+" ${WRKSRC}/gen_pywdns_constants + +post-install: + ${STRIP_CMD} ${STAGEDIR}/${PREFIX}/lib/python2.7/site-packages/wdns.so + +.include <bsd.port.mk> diff --git a/dns/py-pywdns/distinfo b/dns/py-pywdns/distinfo new file mode 100644 index 000000000000..adab2c9d0f9d --- /dev/null +++ b/dns/py-pywdns/distinfo @@ -0,0 +1,2 @@ +SHA256 (pywdns-0.6.0.tar.gz) = 3e0d7b520793835c1be34a679bbbb5cefdfc28d6ef9b6e2759e175d0571e405d +SIZE (pywdns-0.6.0.tar.gz) = 60166 diff --git a/dns/py-pywdns/pkg-descr b/dns/py-pywdns/pkg-descr new file mode 100644 index 000000000000..21f60946b673 --- /dev/null +++ b/dns/py-pywdns/pkg-descr @@ -0,0 +1,5 @@ +This is pywdns, a Python extension module implemented in Cython for +the wdns C library. + + +WWW: https://github.com/farsightsec/pywdns |