From nobody@FreeBSD.org  Tue Nov 28 15:22:36 2006
Return-Path: <nobody@FreeBSD.org>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52])
	by hub.freebsd.org (Postfix) with ESMTP id 1C9AF16A40F
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 28 Nov 2006 15:22:36 +0000 (UTC)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (www.freebsd.org [69.147.83.33])
	by mx1.FreeBSD.org (Postfix) with ESMTP id A5C0543CAA
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 28 Nov 2006 15:22:32 +0000 (GMT)
	(envelope-from nobody@FreeBSD.org)
Received: from www.freebsd.org (localhost [127.0.0.1])
	by www.freebsd.org (8.13.1/8.13.1) with ESMTP id kASFMZmw019975
	for <freebsd-gnats-submit@FreeBSD.org>; Tue, 28 Nov 2006 15:22:35 GMT
	(envelope-from nobody@www.freebsd.org)
Received: (from nobody@localhost)
	by www.freebsd.org (8.13.1/8.13.1/Submit) id kASFMZx5019974;
	Tue, 28 Nov 2006 15:22:35 GMT
	(envelope-from nobody)
Message-Id: <200611281522.kASFMZx5019974@www.freebsd.org>
Date: Tue, 28 Nov 2006 15:22:35 GMT
From: Rene Ladan<r.c.ladan@gmail.com>
To: freebsd-gnats-submit@FreeBSD.org
Subject: [MAINTAINER] multimedia/xfce4-media: update to 0.9.2
X-Send-Pr-Version: www-3.0

>Number:         105951
>Category:       ports
>Synopsis:       [MAINTAINER] multimedia/xfce4-media: update to 0.9.2
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    miwi
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Tue Nov 28 15:30:18 GMT 2006
>Closed-Date:    Wed Nov 29 20:55:13 GMT 2006
>Last-Modified:  Wed Nov 29 21:00:32 GMT 2006
>Originator:     Rene Ladan
>Release:        FreeBSD 7.0-CURRENT i386
>Organization:
>Environment:
System: FreeBSD s000655.campus.tue.nl 7.0-CURRENT FreeBSD 7.0-CURRENT #21: M    on Nov 27 17:53:03 CET 2006

>Description:
- Update to 0.9.2

- Make DBUS support OPTIONable

Removed file(s):
- files/patch-src_remote.c

Generated with FreeBSD Port Tools 0.77

>How-To-Repeat:

>Fix:


Patch attached with submission follows:

diff -ruN --exclude=CVS /usr/ports/multimedia/xfce4-media/Makefile /usr/home/rene/freebsd/ports/xfce4-media/Makefile
--- /usr/ports/multimedia/xfce4-media/Makefile	Sat Nov  4 22:01:22 2006
+++ /usr/home/rene/freebsd/ports/xfce4-media/Makefile	Tue Nov 28 16:09:03 2006
@@ -6,8 +6,7 @@
 #
 
 PORTNAME=	xfce4-media
-PORTVERSION=	0.9.1
-PORTREVISION=	3
+PORTVERSION=	0.9.2
 CATEGORIES=	multimedia xfce
 MASTER_SITES=	http://spuriousinterrupt.org/files/xfmedia/
 DISTNAME=	xfmedia-${PORTVERSION}
@@ -21,7 +20,8 @@
 		xine.15:${PORTSDIR}/multimedia/libxine \
 		exo-0.3.0:${PORTSDIR}/x11/libexo
 
-OPTIONS=	TAGLIB	"Enable metadata editing"	off
+OPTIONS=	TAGLIB	"Enable metadata editing"	off \
+		DBUS	"Enable remote control support" off
 
 USE_BZIP2=	yes
 USE_GETOPT_LONG=yes
@@ -43,6 +43,13 @@
 CONFIGURE_ARGS=	--with-taglib
 .else
 CONFIGURE_ARGS=	--without-taglib
+.endif
+
+.if defined(WITH_DBUS)
+LIB_DEPENDS+=	dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib
+CONFIGURE_ARGS+=	--enable-dbus
+.else
+CONFIGURE_ARGS+=	--disable-dbus
 .endif
 
 post-patch:
diff -ruN --exclude=CVS /usr/ports/multimedia/xfce4-media/distinfo /usr/home/rene/freebsd/ports/xfce4-media/distinfo
--- /usr/ports/multimedia/xfce4-media/distinfo	Sat Nov  4 22:01:22 2006
+++ /usr/home/rene/freebsd/ports/xfce4-media/distinfo	Tue Nov 28 11:53:52 2006
@@ -1,3 +1,3 @@
-MD5 (xfce4/xfmedia-0.9.1.tar.bz2) = 5ab3d25703d16ab4074dc63e677d0367
-SHA256 (xfce4/xfmedia-0.9.1.tar.bz2) = f396989b891dc676bec67a777ef217c9b0e7ccf212373a74984c0153aea0b8fa
-SIZE (xfce4/xfmedia-0.9.1.tar.bz2) = 806692
+MD5 (xfce4/xfmedia-0.9.2.tar.bz2) = 6eb8bd1f67201f829e0f45e733c02bd5
+SHA256 (xfce4/xfmedia-0.9.2.tar.bz2) = 451b67541527cde7f96693fa1ef7776eb03ac40edcef3023bfb2c1ebcf3e7e0c
+SIZE (xfce4/xfmedia-0.9.2.tar.bz2) = 893228
diff -ruN --exclude=CVS /usr/ports/multimedia/xfce4-media/files/patch-src_remote.c /usr/home/rene/freebsd/ports/xfce4-media/files/patch-src_remote.c
--- /usr/ports/multimedia/xfce4-media/files/patch-src_remote.c	Sat Nov  4 22:01:22 2006
+++ /usr/home/rene/freebsd/ports/xfce4-media/files/patch-src_remote.c	Thu Jan  1 01:00:00 1970
@@ -1,12 +0,0 @@
---- src/remote.c.orig	2006-04-08 16:24:13.000000000 +0000
-+++ src/remote.c
-@@ -489,8 +489,7 @@ xfmedia_remote_init(XfmediaMainwin *mwin
-     for(i = 0; i < MAX_INSTANCES; i++) {
-         g_snprintf(name, 64, XFMEDIA_DBUS_SERVICE_FMT, i);
-         dbus_error_init(&derr);
--        ret = dbus_bus_request_name(dbus_conn, name,
--                DBUS_NAME_FLAG_PROHIBIT_REPLACEMENT, &derr);
-+        ret = dbus_bus_request_name(dbus_conn, name, 0, &derr);
-         if(ret < 0) {
-             g_warning("Unable to acquire D-BUS service '%s': %s." \
-                 "  Remote control interface will not be available.",
diff -ruN --exclude=CVS /usr/ports/multimedia/xfce4-media/pkg-plist /usr/home/rene/freebsd/ports/xfce4-media/pkg-plist
--- /usr/ports/multimedia/xfce4-media/pkg-plist	Sat Nov  4 22:01:22 2006
+++ /usr/home/rene/freebsd/ports/xfce4-media/pkg-plist	Tue Nov 28 16:08:06 2006
@@ -8,6 +8,7 @@
 include/xfmedia/xfmedia-remote-client.h
 include/xfmedia/xfmedia-remote-common.h
 include/xfmedia/xfmedia-settings.h
+include/xfmedia/xfmedia-video-window.h
 lib/xfmedia/plugins/xfmedia-infopipe.a
 lib/xfmedia/plugins/xfmedia-infopipe.la
 lib/xfmedia/plugins/xfmedia-infopipe.so
-

>Release-Note:
>Audit-Trail:

From: Rene Ladan <r.c.ladan@gmail.com>
To: bug-followup@FreeBSD.org, Rene Ladan <r.c.ladan@gmail.com>
Cc:  
Subject: Re: misc/105951: [MAINTAINER] multimedia/xfce4-media: update to 0.9.2
Date: Tue, 28 Nov 2006 16:46:43 +0100

 Grr, should be in ports category of course.
 
 -- 
 GPG fingerprint = E738 5471 D185 7013 0EE0  4FC8 3C1D 6F83 12E1 84F6
 (subkeys.pgp.net)
 
 "It won't fit on the line."
 		-- me, 2001
 
Responsible-Changed-From-To: freebsd-bugs->freebsd-ports-bugs 
Responsible-Changed-By: remko 
Responsible-Changed-When: Tue Nov 28 19:05:23 UTC 2006 
Responsible-Changed-Why:  
Assign to the ports team. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=105951 
Responsible-Changed-From-To: freebsd-ports-bugs->miwi 
Responsible-Changed-By: miwi 
Responsible-Changed-When: Wed Nov 29 10:00:59 UTC 2006 
Responsible-Changed-Why:  
I'll take it. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=105951 
State-Changed-From-To: open->closed 
State-Changed-By: miwi 
State-Changed-When: Wed Nov 29 20:55:11 UTC 2006 
State-Changed-Why:  
Committed, with minor changes. Thanks! 

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

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/105951: commit references a PR
Date: Wed, 29 Nov 2006 20:55:25 +0000 (UTC)

 miwi        2006-11-29 20:55:02 UTC
 
   FreeBSD ports repository
 
   Modified files:
     multimedia/xfce4-media Makefile distinfo pkg-plist 
   Removed files:
     multimedia/xfce4-media/files patch-src_remote.c 
   Log:
   - Update to 0.9.2
   
   PR:             105951
   Submitted by:   Rene Ladan<r.c.ladan@gmail.com> (maintainer)
   
   Revision  Changes    Path
   1.16      +10 -3     ports/multimedia/xfce4-media/Makefile
   1.4       +3 -3      ports/multimedia/xfce4-media/distinfo
   1.2       +0 -12     ports/multimedia/xfce4-media/files/patch-src_remote.c (dead)
   1.7       +35 -0     ports/multimedia/xfce4-media/pkg-plist
 _______________________________________________
 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:
