svn commit: r415960 - head/math/py-networkx

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri May 27 19:42:14 UTC 2016


Author: amdmi3
Date: Fri May 27 19:42:12 2016
New Revision: 415960
URL: https://svnweb.freebsd.org/changeset/ports/415960

Log:
  - Change condition to fix build with fmake when using python3.x
  
  PR:		209514
  Approved by:	portmgr blanket

Modified:
  head/math/py-networkx/Makefile

Modified: head/math/py-networkx/Makefile
==============================================================================
--- head/math/py-networkx/Makefile	Fri May 27 19:40:28 2016	(r415959)
+++ head/math/py-networkx/Makefile	Fri May 27 19:42:12 2016	(r415960)
@@ -49,8 +49,10 @@ YAML_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX
 
 .include <bsd.port.pre.mk>
 
-.if ${PYTHON_REL} >= 3000 && (${PORT_OPTIONS:MMPL} || ${PORT_OPTIONS:MGRAPHVIZ})
+.if ${PYTHON_REL} >= 3000
+. if ${PORT_OPTIONS:MMPL} || ${PORT_OPTIONS:MGRAPHVIZ}
 BROKEN=		Neither math/py-matplotlib nor graphics/py-graphviz support Python 3.x yet. Please disable both the MPL and GRAPHVIZ options
+. endif
 .endif
 
 PORTEXAMPLES=	*


More information about the svn-ports-head mailing list