From owner-svn-ports-head@FreeBSD.ORG Tue Nov 18 10:33:35 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7AD2AA72; Tue, 18 Nov 2014 10:33:35 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 6765BFD4; Tue, 18 Nov 2014 10:33:35 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sAIAXZ7U065140; Tue, 18 Nov 2014 10:33:35 GMT (envelope-from antoine@FreeBSD.org) Received: (from antoine@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sAIAXZTf065139; Tue, 18 Nov 2014 10:33:35 GMT (envelope-from antoine@FreeBSD.org) Message-Id: <201411181033.sAIAXZTf065139@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: antoine set sender to antoine@FreeBSD.org using -f From: Antoine Brodin Date: Tue, 18 Nov 2014 10:33:35 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r372710 - head/www/xist X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Nov 2014 10:33:35 -0000 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 +.include + +.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