diff options
Diffstat (limited to 'devel/renpy/Makefile')
-rw-r--r-- | devel/renpy/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/devel/renpy/Makefile b/devel/renpy/Makefile index d5d29ab73a53..2d44a0a51f44 100644 --- a/devel/renpy/Makefile +++ b/devel/renpy/Makefile @@ -3,7 +3,7 @@ PORTNAME= renpy PORTVERSION?= 6.99.13 DISTVERSIONSUFFIX=-sdk -PORTREVISION?= 0 +PORTREVISION?= 1 CATEGORIES= devel games MASTER_SITES= https://www.renpy.org/dl/${PORTVERSION}/ @@ -45,7 +45,7 @@ TARGET_ORDER_OVERRIDE=610:fix-shebang BUILD_WRKSRC= ${WRKSRC}/module INSTALL_WRKSRC= ${BUILD_WRKSRC} MAKE_ENV+= RENPY_DEPS_INSTALL="${LOCALBASE}" -PORTDATA= launcher renpy renpy.py templates +PORTDATA= gui launcher renpy renpy.py templates PORTDOCS= * PLIST_FILES= bin/${PORTNAME} @@ -96,8 +96,9 @@ post-build: add-plist-post: add-empty-dirs add-empty-dirs: -# Keep images directory in templates, see renpy@d81ea29 - ${FIND} ${WRKSRC}/templates -type d ! -name "saves" -empty | \ +# Keep images directory in gui and templates, see renpy@d81ea29 + ${FIND} ${WRKSRC} -type d -empty \ + ! \( -name "saves" -or -name "pysdlsound" \) | \ ${SED} 's,^${WRKSRC},@dir ${DATADIR},' >>${TMPPLIST} post-install: |