Date: Fri, 27 May 2016 19:42:12 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r415960 - head/math/py-networkx Message-ID: <201605271942.u4RJgCpZ024200@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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= *
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201605271942.u4RJgCpZ024200>