From nobody@FreeBSD.org  Fri Sep 23 06:04:09 2011
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5F7741065672
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 23 Sep 2011 06:04:09 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from red.freebsd.org (red.freebsd.org [IPv6:2001:4f8:fff6::22])
	by mx1.freebsd.org (Postfix) with ESMTP id 44E8A8FC08
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 23 Sep 2011 06:04:09 +0000 (UTC)
Received: from red.freebsd.org (localhost [127.0.0.1])
	by red.freebsd.org (8.14.4/8.14.4) with ESMTP id p8N649Xo032560
	for <freebsd-gnats-submit@FreeBSD.org>; Fri, 23 Sep 2011 06:04:09 GMT
	(envelope-from nobody@red.freebsd.org)
Received: (from nobody@localhost)
	by red.freebsd.org (8.14.4/8.14.4/Submit) id p8N649qW032529;
	Fri, 23 Sep 2011 06:04:09 GMT
	(envelope-from nobody)
Message-Id: <201109230604.p8N649qW032529@red.freebsd.org>
Date: Fri, 23 Sep 2011 06:04:09 GMT
From: John Hixson <john@ixsystems.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: update audio/pianobar to 2011.09.22
X-Send-Pr-Version: www-3.1
X-GNATS-Notify: john@pcbsd.org

>Number:         160932
>Category:       ports
>Synopsis:       update audio/pianobar to 2011.09.22
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          change-request
>Submitter-Id:   current-users
>Arrival-Date:   Fri Sep 23 06:10:01 UTC 2011
>Closed-Date:    Mon Sep 26 03:35:41 UTC 2011
>Last-Modified:  Mon Sep 26 03:40:08 UTC 2011
>Originator:     John Hixson
>Release:        9.0-CURRENT
>Organization:
iXsystems
>Environment:
FreeBSD thinkbsd 9.0-BETA2 FreeBSD 9.0-BETA2 #17: Wed Aug 31 21:30:41 PDT 2011     john@thinkbsd:/usr/obj/usr/src/sys/THINKBSD  amd64

>Description:

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

# This is a shell archive.  Save it in a file, remove anything before
# this line, and then unpack it by entering "sh file".  Note, it may
# create directories; files and directories will be owned by you and
# have default permissions.
#
# This archive contains:
#
#	pianobar
#	pianobar/Makefile
#	pianobar/pkg-descr
#	pianobar/files
#	pianobar/files/patch-Makefile
#	pianobar/distinfo
#
echo c - pianobar
mkdir -p pianobar > /dev/null 2>&1
echo x - pianobar/Makefile
sed 's/^X//' >pianobar/Makefile << '623a843b1096cb022f7fa9e61e627fe2'
X# New ports collection makefile for: pianobar
X# Date created: 8 October 2010
X# Whom: John Hixson <john@pcbsd.org>
X#
X# $FreeBSD: ports/audio/pianobar/Makefile,v 1.2 2010/11/08 18:23:57 jpaetzel Exp $
X#
X
XPORTNAME=	pianobar
XPORTVERSION=	2011.09.22
XCATEGORIES=	audio
XMASTER_SITES=	http://6xq.net/static/projects/${PORTNAME}/
X
XMAINTAINER=	john@pcbsd.org
XCOMMENT=	Command line Pandora player
X
XLIB_DEPENDS=	ao:${PORTSDIR}/audio/libao \
X	faad:${PORTSDIR}/audio/faad \
X	mad:${PORTSDIR}/audio/libmad
X
XLICENSE=	MIT
X
XMAN1=	pianobar.1
XMAN_COMPRESSED=	no
X
XPLIST_FILES=	bin/pianobar
X
XUSE_BZIP2=	yes
XUSE_GMAKE=	yes
X
XCFLAGS=
X
X.include <bsd.port.mk>
623a843b1096cb022f7fa9e61e627fe2
echo x - pianobar/pkg-descr
sed 's/^X//' >pianobar/pkg-descr << 'e9119ad23ae8360e8af96604ac219903'
XA free/open-source, console-based replacement for pandora's flash player.
X
XWWW: http://6xq.net/html/00/17.html
e9119ad23ae8360e8af96604ac219903
echo c - pianobar/files
mkdir -p pianobar/files > /dev/null 2>&1
echo x - pianobar/files/patch-Makefile
sed 's/^X//' >pianobar/files/patch-Makefile << '0212f5649f953440ce2b176373ddafc6'
X--- Makefile.orig	2011-09-22 03:34:19.000000000 -0700
X+++ Makefile	2011-09-22 22:58:18.000000000 -0700
X@@ -4,12 +4,12 @@
X BINDIR:=${PREFIX}/bin
X LIBDIR:=${PREFIX}/lib
X INCDIR:=${PREFIX}/include
X-MANDIR:=${PREFIX}/share/man
X+MANDIR:=${PREFIX}/man
X DYNLINK:=0
X 
X # Respect environment variables set by user; does not work with :=
X ifeq (${CFLAGS},)
X-	CFLAGS=-O2 -DNDEBUG
X+	CFLAGS=-O2 -DNDEBUG -I/usr/local/include
X endif
X ifeq (${CC},cc)
X 	CC=c99
X@@ -74,7 +74,7 @@
X 	LIBFAAD_LDFLAGS=
X else
X 	LIBFAAD_CFLAGS=-DENABLE_FAAD
X-	LIBFAAD_LDFLAGS=-lfaad
X+	LIBFAAD_LDFLAGS=-L/usr/local/lib -lfaad
X endif
X 
X ifeq (${DISABLE_MAD}, 1)
X@@ -82,7 +82,7 @@
X 	LIBMAD_LDFLAGS=
X else
X 	LIBMAD_CFLAGS=-DENABLE_MAD
X-	LIBMAD_LDFLAGS=-lmad
X+	LIBMAD_LDFLAGS=-L/usr/local/lib -lmad
X endif
X 
X # build pianobar
0212f5649f953440ce2b176373ddafc6
echo x - pianobar/distinfo
sed 's/^X//' >pianobar/distinfo << '96a3ba1ac5518aeb0358f98b9195df09'
XSHA256 (pianobar-2011.09.22.tar.bz2) = 6e54d4881e7ada6b0443611b0853215e9e54253667a58310d96dfe38be258ed3
XSIZE (pianobar-2011.09.22.tar.bz2) = 65436
96a3ba1ac5518aeb0358f98b9195df09
exit



>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->feedback 
State-Changed-By: edwin 
State-Changed-When: Fri Sep 23 06:10:13 UTC 2011 
State-Changed-Why:  
Awaiting maintainers feedback (via the GNATS Auto Assign Tool) 

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

From: Edwin Groothuis <edwin@FreeBSD.org>
To: john@pcbsd.org
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/160932: update audio/pianobar to 2011.09.22
Date: Fri, 23 Sep 2011 06:10:11 UT

 Maintainer of audio/pianobar,
 
 Please note that PR ports/160932 has just been submitted.
 
 If it contains a patch for an upgrade, an enhancement or a bug fix
 you agree on, reply to this email stating that you approve the patch
 and a committer will take care of it.
 
 The full text of the PR can be found at:
     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/160932
 
 -- 
 Edwin Groothuis via the GNATS Auto Assign Tool
 edwin@FreeBSD.org

From: John Hixson <john@pcbsd.org>
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/160932: update audio/pianobar to 2011.09.22
Date: Thu, 22 Sep 2011 23:17:56 -0700

 On Fri, Sep 23, 2011 at 06:10:11AM +0000, Edwin Groothuis wrote:
 > Maintainer of audio/pianobar,
 > 
 > Please note that PR ports/160932 has just been submitted.
 > 
 > If it contains a patch for an upgrade, an enhancement or a bug fix
 > you agree on, reply to this email stating that you approve the patch
 > and a committer will take care of it.
 > 
 > The full text of the PR can be found at:
 >     http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/160932
 > 
 > -- 
 > Edwin Groothuis via the GNATS Auto Assign Tool
 > edwin@FreeBSD.org
 
 Approve!
State-Changed-From-To: feedback->closed 
State-Changed-By: jpaetzel 
State-Changed-When: Mon Sep 26 03:33:28 UTC 2011 
State-Changed-Why:  
Committed, thanks! 

If you include [MAINTAINER-UPDATE] in the PR synopsis you won't need to approve 
PRs for ports you maintain. 

Patches against the most recent version of your port are easier to 
apply than sharfiles of the entire port. 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/160932: commit references a PR
Date: Mon, 26 Sep 2011 03:33:21 +0000 (UTC)

 jpaetzel    2011-09-26 03:33:07 UTC
 
   FreeBSD ports repository
 
   Modified files:
     audio/pianobar/files patch-Makefile 
     audio/pianobar       Makefile distinfo 
   Removed files:
     audio/pianobar/files patch-main.c patch-terminal.c patch-ui.c 
                          patch-waitress.c 
   Log:
   Update to 2011.09.22
   
   PR:     ports/160932
   Submitted by:   John Hixson <john@ixsystems.com>
   Sponsored by:   iXsystems
   
   Revision  Changes    Path
   1.6       +1 -1      ports/audio/pianobar/Makefile
   1.6       +2 -2      ports/audio/pianobar/distinfo
   1.5       +2 -2      ports/audio/pianobar/files/patch-Makefile
   1.4       +0 -10     ports/audio/pianobar/files/patch-main.c (dead)
   1.4       +0 -10     ports/audio/pianobar/files/patch-terminal.c (dead)
   1.4       +0 -10     ports/audio/pianobar/files/patch-ui.c (dead)
   1.4       +0 -10     ports/audio/pianobar/files/patch-waitress.c (dead)
 _______________________________________________
 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:
