svn commit: r345700 - head/mail/py-spf

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sun Feb 23 12:16:23 UTC 2014


Author: sunpoet
Date: Sun Feb 23 12:16:22 2014
New Revision: 345700
URL: http://svnweb.freebsd.org/changeset/ports/345700
QAT: https://qat.redports.org/buildarchive/r345700/

Log:
  - Allow build with Python 3.x
  - Bump PORTREVISION

Modified:
  head/mail/py-spf/Makefile

Modified: head/mail/py-spf/Makefile
==============================================================================
--- head/mail/py-spf/Makefile	Sun Feb 23 12:13:11 2014	(r345699)
+++ head/mail/py-spf/Makefile	Sun Feb 23 12:16:22 2014	(r345700)
@@ -3,6 +3,7 @@
 
 PORTNAME=	spf
 PORTVERSION=	2.0.8
+PORTREVISION=	1
 CATEGORIES=	mail python
 MASTER_SITES=	SF/pymilter/py${PORTNAME}/py${PORTNAME}-${PORTVERSION}
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -13,8 +14,6 @@ COMMENT=	Python implementation of the RF
 
 LICENSE=	PSFL
 
-RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}dns>=0:${PORTSDIR}/dns/py-dns
-
 OPTIONS_DEFINE=	DOCS
 OPTIONSFILE=	${PORT_DBDIR}/py-${PORTNAME}/options
 
@@ -28,10 +27,18 @@ PORTDOCS=	CHANGELOG README
 
 SHEBANG_FILES=	spf.py
 
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 300
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}dns>=0:${PORTSDIR}/dns/py-dns
+.else
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}dns3>=0:${PORTSDIR}/dns/py-dns3
+.endif
+
 post-install:
 	${CHMOD} ${BINMODE} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR}/spf.py
 	${LN} -s ${PYTHONPREFIX_SITELIBDIR}/spf.py ${STAGEDIR}${PREFIX}/bin/
 	${MKDIR} ${STAGEDIR}${DOCSDIR}/
 	cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
 
-.include <bsd.port.mk>
+.include <bsd.port.post.mk>


More information about the svn-ports-all mailing list