diff options
author | jbeich <jbeich@FreeBSD.org> | 2015-05-29 12:56:20 +0800 |
---|---|---|
committer | jbeich <jbeich@FreeBSD.org> | 2015-05-29 12:56:20 +0800 |
commit | 49ab97e1c3f2b548be199f57ff115aa6d319d506 (patch) | |
tree | 8b8fbc2b30b1c17c223aa1addf68038a0a0a971c | |
parent | 07aae662ec225c26a6c9e47ccc8b0a1cb8f66d4c (diff) | |
download | freebsd-ports-gnome-49ab97e1c3f2b548be199f57ff115aa6d319d506.tar.gz freebsd-ports-gnome-49ab97e1c3f2b548be199f57ff115aa6d319d506.tar.zst freebsd-ports-gnome-49ab97e1c3f2b548be199f57ff115aa6d319d506.zip |
devel/renpy: fix TKINTER regressing after r382557
Traceback (most recent call last):
File "choose_directory.rpy", line 61, in choose_directory
File "/usr/local/lib/python2.7/subprocess.py", line 710, in __init__
errread, errwrite)
File "/usr/local/lib/python2.7/subprocess.py", line 1335, in _execute_child
raise child_exception
OSError: [Errno 2] No such file or directory
-rw-r--r-- | devel/renpy/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/devel/renpy/Makefile b/devel/renpy/Makefile index 8ed6eeaa1f2c..ac5c3b3aa6a3 100644 --- a/devel/renpy/Makefile +++ b/devel/renpy/Makefile @@ -3,6 +3,7 @@ PORTNAME= renpy PORTVERSION= 6.99.2 DISTVERSIONSUFFIX=-source +PORTREVISION= 1 CATEGORIES= devel games MASTER_SITES= http://www.renpy.org/dl/${PORTVERSION}/ \ GENTOO @@ -63,7 +64,7 @@ PORTDATA+= the_question tutorial post-patch: @${REINPLACE_CMD} -e 's,/usr/bin/python,${PYTHON_CMD},' \ - ${WRKSRC}/launcher/game/project.rpy + ${WRKSRC}/launcher/game/choose_directory.rpy # Avoid having to add -I/usr/include -L/usr/lib @${REINPLACE_CMD} '/library("z")/d' ${BUILD_WRKSRC}/${PYSETUP} |