Date: Mon, 30 Oct 2017 19:22:19 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453207 - head/devel/renpy Message-ID: <201710301922.v9UJMJYu029490@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Mon Oct 30 19:22:19 2017 New Revision: 453207 URL: https://svnweb.freebsd.org/changeset/ports/453207 Log: devel/renpy6: unbreak after r453203 find: tutorial/recrop.py: No such file or directory find: oldtutorial: No such file or directory Modified: head/devel/renpy/Makefile (contents, props changed) Modified: head/devel/renpy/Makefile ============================================================================== --- head/devel/renpy/Makefile Mon Oct 30 19:04:02 2017 (r453206) +++ head/devel/renpy/Makefile Mon Oct 30 19:22:19 2017 (r453207) @@ -35,9 +35,12 @@ USE_PYTHON= autoplist distutils 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 +.ifndef PKGNAMESUFFIX python3_CMD?= ${PYTHON_CMD} SHEBANG_LANG= python3 -SHEBANG_FILES= renpy.py launcher/game/tkaskdir.py tutorial/recrop.py +SHEBANG_FILES+= tutorial/recrop.py +.endif TARGET_ORDER_OVERRIDE=610:fix-shebang BUILD_WRKSRC= ${WRKSRC}/module INSTALL_WRKSRC= ${BUILD_WRKSRC} @@ -59,7 +62,10 @@ OPTIONS_DEFINE= DOCS DIST EXAMPLES TKINTER DIST_DESC= Distribution runtimes for Windows, OS X, Linux DIST_VARS= LICENSE+="ART20 PSFL" \ PORTDATA+="lib renpy.app renpy.exe renpy.sh" -EXAMPLES_VARS= PORTDATA+="oldtutorial the_question tutorial" +EXAMPLES_VARS= PORTDATA+="the_question tutorial" +.ifndef PKGNAMESUFFIX +EXAMPLES_VARS+= PORTDATA+="oldtutorial" +.endif TKINTER_DESC= Install Tkinter to allow choosing Projects Directory TKINTER_RUN_DEPENDS=${PYTHON_PKGNAMEPREFIX}tkinter>0:x11-toolkits/py-tkinter
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201710301922.v9UJMJYu029490>