svn commit: r323733 - head/games/triplane
Alexey Dokuchaev
danfe at FreeBSD.org
Fri Jul 26 15:16:15 UTC 2013
Author: danfe
Date: Fri Jul 26 15:16:14 2013
New Revision: 323733
URL: http://svnweb.freebsd.org/changeset/ports/323733
Log:
- Try to fix parallel builds: setting ALL_TARGET to "depend all" would not
work in -jX case due to races; thus, move depend generation to pre-build
- While here, convert USE_GMAKE and fix badly indented line by one tabstop
- As advised by the Porter's Handbook, terminate URL with a slash (in port
description text)
Reported by: pointyhat-west
Modified:
head/games/triplane/Makefile
head/games/triplane/pkg-descr
Modified: head/games/triplane/Makefile
==============================================================================
--- head/games/triplane/Makefile Fri Jul 26 15:15:10 2013 (r323732)
+++ head/games/triplane/Makefile Fri Jul 26 15:16:14 2013 (r323733)
@@ -13,15 +13,17 @@ COMMENT= Port of the original Triplane T
LICENSE= GPLv3
+USES= gmake
USE_SDL= sdl mixer
-USE_GMAKE= yes
WRKSRC= ${WRKDIR}/${DISTNAME}
CFLAGS+= -DTRIPLANE_DATA=\\\"${DATADIR}\\\"
MAKE_ENV= DATADIR="${DATADIR}"
-ALL_TARGET= depend all
+MAN6= triplane.6
-MAN6= triplane.6
+# ALL_TARGET="depend all" would not work in -jX case due to races
+pre-build:
+ ${GMAKE} -C ${BUILD_WRKSRC} depend
.include <bsd.port.mk>
Modified: head/games/triplane/pkg-descr
==============================================================================
--- head/games/triplane/pkg-descr Fri Jul 26 15:15:10 2013 (r323732)
+++ head/games/triplane/pkg-descr Fri Jul 26 15:16:14 2013 (r323733)
@@ -4,4 +4,4 @@ the original Triplane Turmoil game for D
original game exactly so that high scores remain comparable to the
original.
-WWW: http://triplane.sourceforge.net
+WWW: http://triplane.sourceforge.net/
More information about the svn-ports-head
mailing list