Date: Tue, 18 Nov 2014 10:33:35 +0000 (UTC) From: Antoine Brodin <antoine@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372710 - head/www/xist Message-ID: <201411181033.sAIAXZTf065139@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: antoine Date: Tue Nov 18 10:33:34 2014 New Revision: 372710 URL: https://svnweb.freebsd.org/changeset/ports/372710 QAT: https://qat.redports.org/buildarchive/r372710/ Log: Ignore on the package builders when the default version of python is different from the requested one Modified: head/www/xist/Makefile Modified: head/www/xist/Makefile ============================================================================== --- head/www/xist/Makefile Tue Nov 18 09:37:31 2014 (r372709) +++ head/www/xist/Makefile Tue Nov 18 10:33:34 2014 (r372710) @@ -15,10 +15,16 @@ COMMENT= XML-based extensible HTML gener LICENSE= MIT RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>=3.4:${PORTSDIR}/devel/py-lxml \ - ${PYTHON_PKGNAMEPREFIX}pillow>2.6:${PORTSDIR}/graphics/py-pillow \ + ${PYTHON_PKGNAMEPREFIX}pillow>=2.6:${PORTSDIR}/graphics/py-pillow \ ${PYTHON_PKGNAMEPREFIX}cssutils>=1.0:${PORTSDIR}/www/py-cssutils USES= python:3 tar:bzip2 USE_PYTHON= autoplist distutils -.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>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201411181033.sAIAXZTf065139>