From owner-svn-ports-head@freebsd.org Fri Mar 9 20:47:11 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 550D9F4A4C0; Fri, 9 Mar 2018 20:47:11 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4489C6BA3C; Fri, 9 Mar 2018 20:47:10 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3A9EE240BE; Fri, 9 Mar 2018 20:47:10 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w29Kl9XU005632; Fri, 9 Mar 2018 20:47:09 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w29Kl9aH005631; Fri, 9 Mar 2018 20:47:09 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <201803092047.w29Kl9aH005631@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Fri, 9 Mar 2018 20:47:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464007 - head/cad/openscad X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: head/cad/openscad X-SVN-Commit-Revision: 464007 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Mar 2018 20:47:11 -0000 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