Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 5 Nov 2017 01:18:42 +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: r453509 - head/devel/renpy
Message-ID:  <201711050118.vA51Ig24071954@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711050118.vA51Ig24071954>