diff options
author | perky <perky@FreeBSD.org> | 2002-10-06 15:14:10 +0000 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2002-10-06 15:14:10 +0000 |
commit | 3657f806a467e4e34cde57d8ff1e30e519ef9fbc (patch) | |
tree | 7424fab6006bec4a0194e6f38ba230d2f27d867e /dns/py-dns/Makefile | |
parent | 5211affb0ca0868c71df94b9b9aa6afdec9614f8 (diff) | |
download | FreeBSD-ports-3657f806a467e4e34cde57d8ff1e30e519ef9fbc.zip FreeBSD-ports-3657f806a467e4e34cde57d8ff1e30e519ef9fbc.tar.gz |
Add py-dns 2.3.0, DNS (Domain Name Service) library for Python.
PR: 43256
Submitted by: Mark Linimon (linimon@lonesome.com)
Diffstat (limited to 'dns/py-dns/Makefile')
-rw-r--r-- | dns/py-dns/Makefile | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/dns/py-dns/Makefile b/dns/py-dns/Makefile new file mode 100644 index 0000000..9376991 --- /dev/null +++ b/dns/py-dns/Makefile @@ -0,0 +1,33 @@ +# New ports collection makefile for: py-dns +# Date created: 21 September 2002 +# Whom: Mark Linimon (linimon@lonesome.com) +# +# $FreeBSD$ +# + +PORTNAME= dns +PORTVERSION= 2.3.0 +CATEGORIES= net python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= pydns +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pydns-${PORTVERSION} +EXTRACT_SUFX= .tgz + +MAINTAINER= linimon@lonesome.com + +USE_PYTHON= yes +USE_PYDISTUTILS= yes + +DOCS= README.txt README-guido.txt +DOCSDIR= ${PREFIX}/share/doc/py-dns + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for file in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |