From owner-svn-ports-head@FreeBSD.ORG Fri Jul 26 15:16:15 2013 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id 2F03B6E2; Fri, 26 Jul 2013 15:16:15 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 1C5F6213B; Fri, 26 Jul 2013 15:16:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6QFGErf073512; Fri, 26 Jul 2013 15:16:14 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6QFGEnF073509; Fri, 26 Jul 2013 15:16:14 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201307261516.r6QFGEnF073509@svn.freebsd.org> From: Alexey Dokuchaev Date: Fri, 26 Jul 2013 15:16:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r323733 - head/games/triplane X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Jul 2013 15:16:15 -0000 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 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/