aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntoine Brodin <antoine@FreeBSD.org>2014-10-18 14:45:35 +0000
committerAntoine Brodin <antoine@FreeBSD.org>2014-10-18 14:45:35 +0000
commitcfa2789ff6f5f9ba9b1f47a0236b26371222a621 (patch)
tree4b8d3e20e158c049a6c0305111efdb5638e625d0
parent8db692128fd8fa0614eb6fc6246ad144528db9f5 (diff)
downloadports-cfa2789ff6f5f9ba9b1f47a0236b26371222a621.tar.gz
ports-cfa2789ff6f5f9ba9b1f47a0236b26371222a621.zip
MFH: r371129
Ignore on the package builders when the default version of python is different from the requested one Reported by: pkg-fallout
Notes
Notes: svn path=/branches/2014Q4/; revision=371130
-rw-r--r--mail/rss2email3/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/mail/rss2email3/Makefile b/mail/rss2email3/Makefile
index 70e716c9baf6..f627cfdbb7de 100644
--- a/mail/rss2email3/Makefile
+++ b/mail/rss2email3/Makefile
@@ -36,4 +36,10 @@ post-install:
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/
${INSTALL_MAN} ${WRKSRC}/r2e.1 ${STAGEDIR}${MANPREFIX}/man/man1
-.include <bsd.port.mk>
+.include <bsd.port.pre.mk>
+
+.if defined(PACKAGE_BUILDING) && ${PYTHON_VER} != ${PYTHON_DEFAULT}
+IGNORE= you have python ${PYTHON_DEFAULT} set as the default, and this needs ${PYTHON_VER}
+.endif
+
+.include <bsd.port.post.mk>