Date: Fri, 26 Jul 2013 15:16:14 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323733 - head/games/triplane Message-ID: <201307261516.r6QFGEnF073509@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201307261516.r6QFGEnF073509>