From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Sep 7 05:30:01 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id E24B6BFC for ; Sat, 7 Sep 2013 05:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 C09882B92 for ; Sat, 7 Sep 2013 05:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r875U0qG064082 for ; Sat, 7 Sep 2013 05:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r875U0Vg064039; Sat, 7 Sep 2013 05:30:00 GMT (envelope-from gnats) Resent-Date: Sat, 7 Sep 2013 05:30:00 GMT Resent-Message-Id: <201309070530.r875U0Vg064039@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, Yasuhiro KIMURA 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 7E34CBDF for ; Sat, 7 Sep 2013 05:25:04 +0000 (UTC) (envelope-from yasu@home.utahime.org) Received: from gate.utahime.jp (ipq210.utahime.jp [183.180.29.210]) by mx1.freebsd.org (Postfix) with ESMTP id 4FD0D2B85 for ; Sat, 7 Sep 2013 05:25:03 +0000 (UTC) Received: from eastasia.home.utahime.org (eastasia.home.utahime.org [192.168.174.1]) by gate.utahime.jp (Postfix) with ESMTP id B58B361F9D; Sat, 7 Sep 2013 14:24:54 +0900 (JST) Received: from eastasia.home.utahime.org (localhost [127.0.0.1]) by localhost-backdoor.home.utahime.org (Postfix) with ESMTP id 897904E636; Sat, 7 Sep 2013 14:24:54 +0900 (JST) Received: by eastasia.home.utahime.org (Postfix, from userid 1000) id 5DDB24E62F; Sat, 7 Sep 2013 14:24:54 +0900 (JST) Message-Id: <20130907052454.5DDB24E62F@eastasia.home.utahime.org> Date: Sat, 7 Sep 2013 14:24:54 +0900 (JST) From: Yasuhiro KIMURA To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/181904: [PATCH] graphics/libwmf: fix warning of make index when X11 option is unset 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: Sat, 07 Sep 2013 05:30:01 -0000 >Number: 181904 >Category: ports >Synopsis: [PATCH] graphics/libwmf: fix warning of make index when X11 option is unset >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sat Sep 07 05:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Yasuhiro KIMURA >Release: FreeBSD 9.1-RELEASE-p6 amd64 >Organization: >Environment: System: FreeBSD xxxx 9.1-RELEASE-p6 FreeBSD 9.1-RELEASE-p6 #0 r254634: Thu Aug 22 12:43:09 JST 2013 xxxx amd64 >Description: When X11 options is unset, 'make index' produces follwing warning. % cd /usr/ports % maix index Generating INDEX - please wait..Warning: Duplicate INDEX entry: libwmf-nox11-0.2.8.4_10 Done. >How-To-Repeat: >Fix: --- patch-libwmf begins here --- Index: graphics/libwmf/Makefile =================================================================== --- graphics/libwmf/Makefile (revision 326556) +++ graphics/libwmf/Makefile (working copy) @@ -37,7 +37,6 @@ PLIST_SUB+= X11="" CONFLICTS+= libwmf-nox11-0.* .else -PKGNAMESUFFIX= -nox11 CONFIGURE_ARGS+= --with-x=no PLIST_SUB+= X11="@comment " CONFLICTS+= libwmf-0.* Index: graphics/libwmf-nox11/Makefile =================================================================== --- graphics/libwmf-nox11/Makefile (revision 326556) +++ graphics/libwmf-nox11/Makefile (working copy) @@ -3,6 +3,7 @@ PORTSCOUT= ignore:1 +PKGNAMESUFFIX= -nox11 MASTERDIR= ${.CURDIR}/../libwmf OPTIONS_EXCLUDE= X11 OPTIONS_FILE_UNSET= X11 --- patch-libwmf ends here --- >Release-Note: >Audit-Trail: >Unformatted: