e8a22292a2
- While I'm here, use = instead of += for PLIST_SUB Changes: https://git.launchpad.net/authentication-results-python/tree/CHANGES PR: 239751 Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (maintainer)
32 lines
634 B
Makefile
32 lines
634 B
Makefile
# Created by: Yasuhiro KIMURA <yasu@utahime.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= authres
|
|
PORTVERSION= 1.2.0
|
|
CATEGORIES= mail python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= yasu@utahime.org
|
|
COMMENT= Python module for RFC 5451 Authentication-Results headers
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
|
|
NO_ARCH= yes
|
|
|
|
PLIST_SUB= PORTNAME=${PORTNAME}
|
|
|
|
PORTDOCS= CHANGES README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|