Date: Fri, 9 Mar 2018 20:47:09 +0000 (UTC) From: "Tobias C. Berner" <tcberner@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464007 - head/cad/openscad Message-ID: <201803092047.w29Kl9aH005631@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tcberner Date: Fri Mar 9 20:47:09 2018 New Revision: 464007 URL: https://svnweb.freebsd.org/changeset/ports/464007 Log: Fix cad/openscad shebang Error: '/usr/local/bin/python' is an invalid shebang you need USES=shebangfix for 'share/openscad/libraries/MCAD/get_submodules.py The existing shebang fix on the py file did nothing without USES=python. Python already was an implied dependency. Approved by: portmgr blanket Modified: head/cad/openscad/Makefile Modified: head/cad/openscad/Makefile ============================================================================== --- head/cad/openscad/Makefile Fri Mar 9 20:45:11 2018 (r464006) +++ head/cad/openscad/Makefile Fri Mar 9 20:47:09 2018 (r464007) @@ -3,7 +3,7 @@ PORTNAME= openscad PORTVERSION= 2015.03 -PORTREVISION= 15 +PORTREVISION= 16 CATEGORIES= cad MASTER_SITES= http://files.openscad.org/ DISTNAME= openscad-${PORTVERSION}.src @@ -23,7 +23,8 @@ LIB_DEPENDS= libgmp.so:math/gmp \ libharfbuzz.so:print/harfbuzz \ libopencsg.so:graphics/opencsg -USES= bison compiler:c++11-lang desktop-file-utils eigen:3 gettext-tools pkgconfig qmake shebangfix +USES= bison compiler:c++11-lang desktop-file-utils eigen:3 gettext-tools \ + pkgconfig python:run qmake shebangfix SHEBANG_FILES= libraries/MCAD/get_submodules.py USE_GL= glu glew USE_QT4= corelib gui opengl moc_build uic_build rcc_build
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803092047.w29Kl9aH005631>