From owner-svn-ports-head@freebsd.org Wed Sep 30 17:49:02 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 656E1A0C179; Wed, 30 Sep 2015 17:49:02 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 562FA1AFB; Wed, 30 Sep 2015 17:49:02 +0000 (UTC) (envelope-from novel@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t8UHn2t6013039; Wed, 30 Sep 2015 17:49:02 GMT (envelope-from novel@FreeBSD.org) Received: (from novel@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t8UHn2dq013038; Wed, 30 Sep 2015 17:49:02 GMT (envelope-from novel@FreeBSD.org) Message-Id: <201509301749.t8UHn2dq013038@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: novel set sender to novel@FreeBSD.org using -f From: Roman Bogorodskiy Date: Wed, 30 Sep 2015 17:49:02 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398226 - head/games/iourbanterror 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.20 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: Wed, 30 Sep 2015 17:49:02 -0000 Author: novel Date: Wed Sep 30 17:49:01 2015 New Revision: 398226 URL: https://svnweb.freebsd.org/changeset/ports/398226 Log: games/iourbanterror: point to proper pkg-descr games/iourbanterror ships its own pkg-descr file, but does not define DESCR, so pkg-descr from its parent port, games/ioquake3, is used. Define DESCR to point to the proper file for games/iourbanterror and games/iourbanterror-server. While here, fix tabs/space mix in intendation and drop trailing whitespace as pointed by portlint. Modified: head/games/iourbanterror/Makefile Modified: head/games/iourbanterror/Makefile ============================================================================== --- head/games/iourbanterror/Makefile Wed Sep 30 17:42:52 2015 (r398225) +++ head/games/iourbanterror/Makefile Wed Sep 30 17:49:01 2015 (r398226) @@ -14,6 +14,7 @@ COMMENT= Quake 3 engine modified for Urb RUN_DEPENDS= urbanterror-data>0:${PORTSDIR}/games/urbanterror-data MASTERDIR= ${.CURDIR}/../ioquake3 +DESCR= ${.CURDIR}/../${PORTNAME}/pkg-descr IOQ3?= CLIENT @@ -35,9 +36,9 @@ MAKE_ARGS+= BUILD_MISSIONPACK=0 \ post-patch: @(cd ${WRKSRC} && \ - for pfile in ${.CURDIR}/../${PORTNAME}/files/patch-*; do \ + for pfile in ${.CURDIR}/../${PORTNAME}/files/patch-*; do \ ${PATCH} < $${pfile}; \ - done) + done) @${REINPLACE_CMD} \ -e 's/ioquake3/${Q3CLIENT}/g' \ -e 's/ioq3ded/${Q3SERVER}/g' \