From owner-svn-ports-all@freebsd.org Tue Sep 6 23:48:07 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2BB20BCD8B3; Tue, 6 Sep 2016 23:48:07 +0000 (UTC) (envelope-from jbeich@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 mx1.freebsd.org (Postfix) with ESMTPS id EC0F7805; Tue, 6 Sep 2016 23:48:06 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u86Nm6SE087580; Tue, 6 Sep 2016 23:48:06 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u86Nm6M0087579; Tue, 6 Sep 2016 23:48:06 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609062348.u86Nm6M0087579@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Tue, 6 Sep 2016 23:48:06 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r421473 - branches/2016Q3/devel/renpy X-SVN-Group: ports-branches MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 06 Sep 2016 23:48:07 -0000 Author: jbeich Date: Tue Sep 6 23:48:05 2016 New Revision: 421473 URL: https://svnweb.freebsd.org/changeset/ports/421473 Log: MFH: r421470 Fix bin/renpy's shebang after r410677 and appease stage-qa Warning: Bad symlink '/usr/local/bin/renpy' pointing to an absolute pathname '/usr/local/share/renpy/renpy.py' Approved by: ports-secteam blanket Modified: branches/2016Q3/devel/renpy/Makefile Directory Properties: branches/2016Q3/ (props changed) Modified: branches/2016Q3/devel/renpy/Makefile ============================================================================== --- branches/2016Q3/devel/renpy/Makefile Tue Sep 6 23:44:58 2016 (r421472) +++ branches/2016Q3/devel/renpy/Makefile Tue Sep 6 23:48:05 2016 (r421473) @@ -3,7 +3,7 @@ PORTNAME= renpy PORTVERSION= 6.99.10 DISTVERSIONSUFFIX=-sdk -PORTREVISION= 0 +PORTREVISION= 1 CATEGORIES= devel games MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ @@ -34,6 +34,7 @@ USE_SDL= sdl2 EXCLUDE= gen 'module/*.py[co]' 'renpy/*.py[co]' EXTRACT_AFTER_ARGS=${EXCLUDE:S,^,--exclude ,} SHEBANG_FILES= renpy.py launcher/game/tkaskdir.py +TARGET_ORDER_OVERRIDE=610:fix-shebang BUILD_WRKSRC= ${WRKSRC}/module INSTALL_WRKSRC= ${BUILD_WRKSRC} MAKE_ENV+= RENPY_DEPS_INSTALL="${LOCALBASE}" @@ -84,7 +85,7 @@ add-empty-dirs: post-install: ${FIND} ${STAGEDIR}${PYTHONPREFIX_SITELIBDIR} -name \*.so \ -exec ${STRIP_CMD} {} + - ${LN} -fs ${DATADIR}/renpy.py \ + ${LN} -fs ../${DATADIR_REL}/renpy.py \ ${STAGEDIR}${PREFIX}/bin/${PORTNAME} (cd ${WRKSRC} && ${COPYTREE_SHARE} \ "${PORTDATA}" ${STAGEDIR}${DATADIR} \