svn commit: r365043 - in head: Mk/Uses graphics/py-chart

Marcus von Appen mva at FreeBSD.org
Fri Aug 15 20:55:04 UTC 2014


Author: mva
Date: Fri Aug 15 20:55:03 2014
New Revision: 365043
URL: http://svnweb.freebsd.org/changeset/ports/365043
QAT: https://qat.redports.org/buildarchive/r365043/

Log:
  - Fix USE_PYTHON knob handling. Features are to be separated with spaces, not
    comma
  
  With hat:	python@

Modified:
  head/Mk/Uses/python.mk
  head/graphics/py-chart/Makefile

Modified: head/Mk/Uses/python.mk
==============================================================================
--- head/Mk/Uses/python.mk	Fri Aug 15 20:53:00 2014	(r365042)
+++ head/Mk/Uses/python.mk	Fri Aug 15 20:55:03 2014	(r365043)
@@ -315,7 +315,7 @@ USE_PYTHON+=	noegginfo
 # COMPAT KNOBS END
 
 # Make each individual feature available as _PYTHON_FEATURE_<FEATURENAME>
-.for var in ${USE_PYTHON:S/,/ /g}
+.for var in ${USE_PYTHON}
 _PYTHON_FEATURE_${var:tu}=	yes
 .endfor
 

Modified: head/graphics/py-chart/Makefile
==============================================================================
--- head/graphics/py-chart/Makefile	Fri Aug 15 20:53:00 2014	(r365042)
+++ head/graphics/py-chart/Makefile	Fri Aug 15 20:55:03 2014	(r365043)
@@ -15,7 +15,7 @@ COMMENT=	Create high quality Encapsulate
 LICENSE=	GPLv2
 
 USE_GHOSTSCRIPT_RUN=	yes
-USE_PYTHON=	distutils,autoplist
+USE_PYTHON=	distutils autoplist
 USES=		python:2.7
 
 .include <bsd.port.mk>


More information about the svn-ports-head mailing list