summaryrefslogtreecommitdiff
path: root/dns/py-dnspython/Makefile
blob: dc26975eb914a79a323d22ddfc93c0661a9d5c99 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# New ports collection makefile for:	dnspython
# Date created:				Sun Dec 26 09:58:59 UTC 2004
# Whom:			Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=	dnspython
PORTVERSION=	1.5.0
CATEGORIES=	dns python
MASTER_SITES=	http://www.dnspython.org/kits/stable/
PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}

MAINTAINER=	lioux@FreeBSD.org
COMMENT=	A DNS toolkit for Python

USE_PYTHON=		yes
USE_PYDISTUTILS=	yes

PORTDOCS=	\
		ChangeLog \
		README \
		TODO
EXAMPLE_FILES=	\
		ddns.py \
		mx.py \
		name.py \
		reverse.py \
		xfr.py

post-install:
# docs
.ifndef(NOPORTDOCS)
	@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
# examples
	@${MKDIR} ${EXAMPLESDIR}
.for file in ${EXAMPLE_FILES}
	@${INSTALL_DATA} ${WRKSRC}/examples/${file} ${EXAMPLESDIR}
.endfor
# permission safeness
	@${CHMOD} -R ${SHAREMODE} ${PYTHONPREFIX_SITELIBDIR}/dns/*
	@${CHMOD} -R a+X ${PYTHONPREFIX_SITELIBDIR}/dns/*

.include <bsd.port.mk>