svn commit: r453509 - head/devel/renpy

Jan Beich jbeich at FreeBSD.org
Sun Nov 5 01:18:43 UTC 2017


Author: jbeich
Date: Sun Nov  5 01:18:42 2017
New Revision: 453509
URL: https://svnweb.freebsd.org/changeset/ports/453509

Log:
  devel/renpy: partially unbreak creating a project after r421471
  
  /usr/local/share/renpy/gui/game does not appear to be a Ren'Py game

Modified:
  head/devel/renpy/Makefile   (contents, props changed)

Modified: head/devel/renpy/Makefile
==============================================================================
--- head/devel/renpy/Makefile	Sun Nov  5 00:07:28 2017	(r453508)
+++ head/devel/renpy/Makefile	Sun Nov  5 01:18:42 2017	(r453509)
@@ -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 at d81ea29
-	${FIND} ${WRKSRC}/templates -type d ! -name "saves" -empty | \
+# Keep images directory in gui and templates, see renpy at d81ea29
+	${FIND} ${WRKSRC} -type d -empty \
+		! \( -name "saves" -or -name "pysdlsound" \) | \
 		${SED} 's,^${WRKSRC}, at dir ${DATADIR},' >>${TMPPLIST}
 
 post-install:


More information about the svn-ports-all mailing list