svn commit: r464007 - head/cad/openscad

Tobias C. Berner tcberner at FreeBSD.org
Fri Mar 9 20:47:11 UTC 2018


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


More information about the svn-ports-head mailing list