From rnoland@rnoland-ibm.acs.internap.com  Thu Sep 27 15:46:30 2007
Return-Path: <rnoland@rnoland-ibm.acs.internap.com>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 7BE4016A417
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 27 Sep 2007 15:46:30 +0000 (UTC)
	(envelope-from rnoland@rnoland-ibm.acs.internap.com)
Received: from gizmo.2hip.net (gizmo.2hip.net [64.74.207.195])
	by mx1.freebsd.org (Postfix) with ESMTP id 095E913C468
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 27 Sep 2007 15:46:29 +0000 (UTC)
	(envelope-from rnoland@rnoland-ibm.acs.internap.com)
Received: from rnoland-ibm.acs.internap.com (rnoland-ibm.acs.internap.com [63.251.67.21])
	(authenticated bits=0)
	by gizmo.2hip.net (8.13.8/8.13.8) with ESMTP id l8RFkKZ5011536
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO);
	Thu, 27 Sep 2007 11:46:21 -0400 (EDT)
	(envelope-from rnoland@rnoland-ibm.acs.internap.com)
Received: from rnoland-ibm.acs.internap.com (localhost.acs.internap.com [127.0.0.1])
	by rnoland-ibm.acs.internap.com (8.14.1/8.14.1) with ESMTP id l8RFkFfa034357;
	Thu, 27 Sep 2007 11:46:15 -0400 (EDT)
	(envelope-from rnoland@rnoland-ibm.acs.internap.com)
Received: (from rnoland@localhost)
	by rnoland-ibm.acs.internap.com (8.14.1/8.14.1/Submit) id l8RFkFCi034356;
	Thu, 27 Sep 2007 11:46:15 -0400 (EDT)
	(envelope-from rnoland)
Message-Id: <200709271546.l8RFkFCi034356@rnoland-ibm.acs.internap.com>
Date: Thu, 27 Sep 2007 11:46:15 -0400 (EDT)
From: Robert Noland <rnoland@2hip.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc: bsd-sharp-list@forge.novell.com
Subject: [PATCH] audio/muine: Fix build in current ports tree
X-Send-Pr-Version: 3.113
X-GNATS-Notify: bsd-sharp-list@forge.novell.com

>Number:         116692
>Category:       ports
>Synopsis:       [PATCH] audio/muine: Fix build in current ports tree
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    tmclaugh
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Thu Sep 27 15:50:01 GMT 2007
>Closed-Date:    Thu Oct 11 03:10:12 UTC 2007
>Last-Modified:  Thu Oct 11 03:20:02 UTC 2007
>Originator:     Robert Noland
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD rnoland-ibm.2hip.net 7.0-CURRENT FreeBSD 7.0-CURRENT #107: Wed Sep  5 16:22:41 EDT
>Description:
-Werror is being set and the inclusion of the vorbis headers is causing build 
to fail.  The vorbis header has defined but unused bits in it right now.
Also added USE_GETTEXT and USE_LDCONFIG just to help please portlint.

Port maintainer (bsd-sharp-list@forge.novell.com) is cc'd.

Generated with FreeBSD Port Tools 0.77
>How-To-Repeat:
>Fix:

--- muine-0.8.7_4.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/audio/muine/Makefile,v
retrieving revision 1.39
diff -u -r1.39 Makefile
--- Makefile	4 Aug 2007 11:40:39 -0000	1.39
+++ Makefile	27 Sep 2007 15:41:16 -0000
@@ -8,7 +8,7 @@
 
 PORTNAME=	muine
 PORTVERSION=	0.8.7
-PORTREVISION=	3
+PORTREVISION=	4
 CATEGORIES=	audio gnome
 MASTER_SITES=	http://muine-player.org/releases/
 
@@ -23,6 +23,8 @@
 RUN_DEPENDS=	dbus-daemon:${PORTSDIR}/devel/dbus
 
 USE_GMAKE=	yes
+USE_GETTEXT=	yes
+USE_LDCONFIG=	yes
 USE_GNOME=	gnomeprefix gnomehack intltool libgnomeui gnomesharp20
 GNU_CONFIGURE=	yes
 INSTALLS_ICONS=	yes
@@ -31,6 +33,8 @@
 		LDFLAGS="-L${LOCALBASE}/lib" \
 		GACUTIL_FLAGS="/package muine /gacdir $(libdir) /root $(libdir)"
 
+CONFIGURE_ARGS+=	--enable-compile-warnings=maximum
+
 GCONF_SCHEMAS=	muine.schemas
 
 OPTIONS=	XINE "Enable Xine backend" off \
--- muine-0.8.7_4.patch ends here ---

>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->tmclaugh 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Thu Sep 27 15:50:11 UTC 2007 
Responsible-Changed-Why:  
tmclaugh@ wants his PRs 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116692 
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Thu Sep 27 15:50:18 UTC 2007 
State-Changed-Why:  
Awaiting maintainers feedback 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116692 
State-Changed-From-To: feedback->closed 
State-Changed-By: tmclaugh 
State-Changed-When: Thu Oct 11 03:08:22 UTC 2007 
State-Changed-Why:  
Patch committed with BSD# maintainer OK. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=116692 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/116692: commit references a PR
Date: Thu, 11 Oct 2007 03:09:32 +0000 (UTC)

 tmclaugh    2007-10-11 03:09:26 UTC
 
   FreeBSD ports repository
 
   Modified files:
     audio/muine          Makefile 
   Log:
   Add --enable-compile-warnings=maximum to CONFIGURE_ARGS to fix an
   annoyance where vorbis headers cause compilation to fail.
   
   PR:             116692
   Submitted by:   Robert Noland
   
   Revision  Changes    Path
   1.40      +5 -2      ports/audio/muine/Makefile
 _______________________________________________
 cvs-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/cvs-all
 To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
 
>Unformatted:
