From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Dec 5 02:30:01 2012 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BBCD953 for ; Wed, 5 Dec 2012 02:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id D1BF98FC12 for ; Wed, 5 Dec 2012 02:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id qB52U00m048825 for ; Wed, 5 Dec 2012 02:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id qB52U0sa048824; Wed, 5 Dec 2012 02:30:00 GMT (envelope-from gnats) Resent-Date: Wed, 5 Dec 2012 02:30:00 GMT Resent-Message-Id: <201212050230.qB52U0sa048824@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Dmitry Marakasov Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 625FF76E for ; Wed, 5 Dec 2012 02:26:11 +0000 (UTC) (envelope-from amdmi3@amdmi3.ru) Received: from smtp.timeweb.ru (unknown [IPv6:2a03:6f00:1::5c35:743c]) by mx1.freebsd.org (Postfix) with ESMTP id E56598FC12 for ; Wed, 5 Dec 2012 02:26:10 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLSv1:DHE-RSA-CAMELLIA256-SHA:256) (Exim 4.80) (envelope-from ) id 1Tg4ga-0000q5-TO; Wed, 05 Dec 2012 06:26:08 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 82414B84D; Wed, 5 Dec 2012 06:26:08 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 77C33A27; Wed, 5 Dec 2012 06:26:08 +0400 (MSK) Message-Id: <20121205022608.77C33A27@hades.panopticon> Date: Wed, 5 Dec 2012 06:26:08 +0400 (MSK) From: Dmitry Marakasov To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/174139: [PATCH] games/wesnoth: fix plist Cc: rnejdl@ringofsaturn.com X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Dec 2012 02:30:01 -0000 >Number: 174139 >Category: ports >Synopsis: [PATCH] games/wesnoth: fix plist >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Wed Dec 05 02:30:00 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Dmitry Marakasov >Release: FreeBSD 9.0-RELEASE-p3 amd64 >Organization: >Environment: System: FreeBSD hades.panopticon 9.0-RELEASE-p3 FreeBSD 9.0-RELEASE-p3 #0: Wed Jun 13 17:39:20 MSK 2012 >Description: - Fix plist for WITHOUT_SERVER case (http://people.freebsd.org/~amdmi3/wesnoth-noserver-1.10.4.log) - Remove unneeded apostrophe escaping Port maintainer (rnejdl@ringofsaturn.com) is cc'd. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: >Fix: --- wesnoth-1.10.4.patch begins here --- diff -ruN --exclude=CVS /usr/ports/games/wesnoth/Makefile ./Makefile --- /usr/ports/games/wesnoth/Makefile 2012-11-17 09:57:56.000000000 +0400 +++ ./Makefile 2012-12-05 06:22:26.335048105 +0400 @@ -2,7 +2,7 @@ # Date created: 22 December 2003 # Whom: Mezz # -# $FreeBSD: ports/games/wesnoth/Makefile,v 1.101 2012/11/17 05:57:56 svnexp Exp $ +# $FreeBSD: head/games/wesnoth/Makefile 304987 2012-09-28 10:51:52Z culot $ # PORTNAME= wesnoth @@ -98,9 +98,11 @@ USE_GETTEXT= yes MANLANG= "" cs de en_GB es et fi fr gl hu id it lt pl ru sk \ sr sr@ijekavian sr@ijekavianlatin sr@latin vi zh_CN zh_TW +.if ${PORT_OPTIONS:MSERVER} _MANPAGES+= ${PREFIX}/man/ja/man6/wesnothd.6 \ ${PREFIX}/man/pt_BR/man6/wesnothd.6 \ ${PREFIX}/man/tr/man6/wesnothd.6 +.endif PLIST_SUB+= NLS="" .else CMAKE_ARGS+= -DENABLE_NLS=off @@ -120,7 +122,7 @@ .endif .if ${PORT_OPTIONS:MPYTHON} -BROKEN= cmake build doesn\'t support installing python tools +BROKEN= cmake build doesn't support installing python tools USE_PYTHON= yes CONFIGURE_ENV+= PYTHON_PREFIX=${PREFIX} \ PYTHON_VERSION=${PYTHON_VERSION:S/python//} --- wesnoth-1.10.4.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: