2328bfb8fe
- Update MASTER_SITES: change from SF to CHEESESHOP - Update RUN_DEPENDS: always use dns/py-py3dns - Bump PORTREVISION for dependency change - Bump PORTREVISION for dependent ports
32 lines
759 B
Makefile
32 lines
759 B
Makefile
# Created by: Marcus Alves Grando <mnag@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyspf
|
|
PORTVERSION= 2.0.12
|
|
DISTVERSIONSUFFIX= t
|
|
PORTREVISION= 3
|
|
CATEGORIES= mail python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Python implementation of the RFC 4408 SPF protocol
|
|
|
|
LICENSE= PSFL
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}py3dns>=0:${PORTSDIR}/dns/py-py3dns
|
|
|
|
NO_ARCH= yes
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USES= python shebangfix
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
PLIST_FILES= bin/spf.py
|
|
|
|
SHEBANG_FILES= spf.py
|
|
|
|
post-install:
|
|
${CHMOD} ${BINMODE} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/spf.py
|
|
${LN} -s ${PYTHONPREFIX_SITELIBDIR}/spf.py ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|