From owner-svn-ports-all@freebsd.org Tue Sep 6 23:44:32 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 A652DBCD76A; Tue, 6 Sep 2016 23:44:32 +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 7249928B; Tue, 6 Sep 2016 23:44:32 +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 u86NiVYC086921; Tue, 6 Sep 2016 23:44:31 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u86NiVc7086920; Tue, 6 Sep 2016 23:44:31 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201609062344.u86NiVc7086920@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:44:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r421470 - head/devel/renpy X-SVN-Group: ports-head 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:44:32 -0000 Author: jbeich Date: Tue Sep 6 23:44:31 2016 New Revision: 421470 URL: https://svnweb.freebsd.org/changeset/ports/421470 Log: 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' Modified: head/devel/renpy/Makefile (contents, props changed) Modified: head/devel/renpy/Makefile ============================================================================== --- head/devel/renpy/Makefile Tue Sep 6 23:18:47 2016 (r421469) +++ head/devel/renpy/Makefile Tue Sep 6 23:44:31 2016 (r421470) @@ -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} \