blob: 2028d236b71e534ad716d6e50d8b255cfe44ceb4 (
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
|
# Created by: Yasuhiro KIMURA <yasu@utahime.org>
# $FreeBSD$
PORTNAME= authres
PORTVERSION= 0.602
CATEGORIES= mail python
MASTER_SITES= http://launchpad.net/authentication-results-python/trunk/0.602/+download/
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= yasu@utahime.org
COMMENT= Python module for RFC 5451 Authentication-Results headers
LICENSE= AL2
USE_PYTHON= 2.6+
USE_PYDISTUTILS= yes
PLIST_SUB+= PORTNAME=${PORTNAME}
FETCH_ARGS= -pRr
PORTDOCS= CHANGES README
NO_STAGE= yes
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}/
cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
.endif
.include <bsd.port.mk>
|