summaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authormarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-12-05 08:42:43 +0800
committermarcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>2005-12-05 08:42:43 +0800
commit3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2 (patch)
treeefaea7760c9000071d0dcfda4eb0537cbe344c50 /audio
parent6814ad6a1e2840d7b6f4c6439dc6fe02cf1a7627 (diff)
downloadmarcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.gz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.bz2
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.lz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.xz
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.tar.zst
marcuscom-ports-3d58c50fc09d8c210c5d0b87325d4ee6b599b3a2.zip
Teach rhythmbox to use avahi instead of howl for mDNS support.
Submitted by: sajd on #freebsd-gnome git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@5253 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio')
-rw-r--r--audio/rhythmbox-devel/Makefile85
-rw-r--r--audio/rhythmbox-devel/distinfo3
-rw-r--r--audio/rhythmbox-devel/files/patch-configure65
-rw-r--r--audio/rhythmbox-devel/files/patch-daapsharing_rb-daap-src.c27
-rw-r--r--audio/rhythmbox-devel/files/patch-player_rb-recorder-gst.c12
-rw-r--r--audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h10
-rw-r--r--audio/rhythmbox-devel/files/patch-remote_bonobo_Makefile.in11
-rw-r--r--audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c18
-rw-r--r--audio/rhythmbox-devel/pkg-descr5
-rw-r--r--audio/rhythmbox-devel/pkg-plist246
-rw-r--r--audio/rhythmbox/Makefile85
-rw-r--r--audio/rhythmbox/distinfo3
-rw-r--r--audio/rhythmbox/files/patch-configure65
-rw-r--r--audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c27
-rw-r--r--audio/rhythmbox/files/patch-player_rb-recorder-gst.c12
-rw-r--r--audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h10
-rw-r--r--audio/rhythmbox/files/patch-remote_bonobo_Makefile.in11
-rw-r--r--audio/rhythmbox/files/patch-sources_rb-ipod-source.c18
-rw-r--r--audio/rhythmbox/pkg-descr5
-rw-r--r--audio/rhythmbox/pkg-plist246
20 files changed, 964 insertions, 0 deletions
diff --git a/audio/rhythmbox-devel/Makefile b/audio/rhythmbox-devel/Makefile
new file mode 100644
index 000000000..93a978a6b
--- /dev/null
+++ b/audio/rhythmbox-devel/Makefile
@@ -0,0 +1,85 @@
+# New ports collection makefile for: rhythmbox
+# Date created: 17 August 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/audio/rhythmbox/Makefile,v 1.40 2005/10/28 08:03:53 jylefort Exp $
+#
+
+PORTNAME= rhythmbox
+PORTVERSION= 0.9.2
+PORTREVISION= 1
+CATEGORIES= audio gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.9
+DIST_SUBDIR= gnome2
+
+MAINTAINER= marcus@FreeBSD.org
+COMMENT= Audio player for the Gnome 2 desktop environment
+
+LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \
+ id3tag.0:${PORTSDIR}/audio/libid3tag \
+ totem-plparser.1:${PORTSDIR}/multimedia/totem-gstreamer \
+ dbus-1.1:${PORTSDIR}/devel/dbus
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+INSTALLS_OMF= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui nautiluscdburner
+USE_GSTREAMER= flac mad gnomevfs gconf jpeg
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ARGS= --enable-nautilus-menu
+CONFIGURE_ENV= LIBS="-lm" \
+ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
+ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
+
+GCONF_SCHEMAS= rhythmbox.schemas
+
+OPTIONS= IPOD "Enable iPod support" off \
+ DAAP "Enable iTunes music sharing" off \
+ FAAD "Enable FAAD decoder support" off
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 500000
+BROKEN= "Does not build on 4.X"
+.endif
+
+.ifdef (WITH_IPOD)
+CONFIGURE_ARGS+= --enable-ipod
+.endif
+
+.if exists(${LOCALBASE}/lib/libvorbis.so)
+WITH_VORBIS= yes
+.endif
+
+.ifdef (WITH_VORBIS)
+USE_GSTREAMER+= vorbis
+.else
+CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest
+.endif
+
+.if defined(WITH_FAAD)
+USE_GSTREAMER+= faad
+.endif
+
+.if defined(WITH_DAAP)
+CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi
+LIB_DEPENDS+= soup-2.2.8:${PORTSDIR}/devel/libsoup \
+ avahi-client:${PORTSDIR}/net/avahi
+.else
+.if exists(${LOCALBASE}/lib/libavahi-client.a)
+LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi
+.endif
+CONFIGURE_ARGS+= --disable-daap
+.endif
+
+pre-everything::
+.if !defined(WITH_VORBIS)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support"
+ @${ECHO_MSG}
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/audio/rhythmbox-devel/distinfo b/audio/rhythmbox-devel/distinfo
new file mode 100644
index 000000000..59542bb7b
--- /dev/null
+++ b/audio/rhythmbox-devel/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/rhythmbox-0.9.2.tar.bz2) = 533223578c9c37bd72634755b33beab7
+SHA256 (gnome2/rhythmbox-0.9.2.tar.bz2) = 08e8ee10c0dc48f293b1e58cb5babaac9bfdf2df4e12aea76824ec3c6f4d0340
+SIZE (gnome2/rhythmbox-0.9.2.tar.bz2) = 2470164
diff --git a/audio/rhythmbox-devel/files/patch-configure b/audio/rhythmbox-devel/files/patch-configure
new file mode 100644
index 000000000..088e5eaea
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-configure
@@ -0,0 +1,65 @@
+--- configure.orig Mon Nov 28 13:42:56 2005
++++ configure Mon Nov 28 13:44:13 2005
+@@ -22409,7 +22409,7 @@
+ enable_hal02=yes
+ fi
+ fi
+- if test x$enable_hal05 == xyes || test x$enable_hal02 == xyes; then
++ if test x$enable_hal05 = xyes || test x$enable_hal02 = xyes; then
+ enable_hal=yes
+ else
+ enable_hal=no
+@@ -22426,7 +22426,7 @@
+ _ACEOF
+
+ use_ipod=yes
+- if test x$enable_hal05 == xyes; then
++ if test x$enable_hal05 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_HAL_0_5 1
+@@ -22748,7 +22748,7 @@
+ RHYTHMBOX_LIBS="$RHYTHMBOX_LIBS $SOUNDSYSTEM_LIBS"
+
+
+- if test "x$GST_INSPECT" == "x"; then
++ if test "x$GST_INSPECT" = "x"; then
+ # Extract the first word of "gst-inspect-0.8", so it can be a program name with args.
+ set dummy gst-inspect-0.8; ac_word=$2
+ echo "$as_me:$LINENO: checking for $ac_word" >&5
+@@ -23002,7 +23002,7 @@
+ have_avahi_05=yes
+ fi
+ fi
+-if test x$have_avahi_06 == xyes || test x$have_avahi_05 == xyes; then
++if test x$have_avahi_06 = xyes || test x$have_avahi_05 = xyes; then
+ have_avahi=yes
+ else
+ have_avahi=no
+@@ -23089,7 +23089,7 @@
+
+ { echo "$as_me:$LINENO: Detected Avahi, using it for mDNS/DNS-SD" >&5
+ echo "$as_me: Detected Avahi, using it for mDNS/DNS-SD" >&6;}
+- if test x$have_avahi_06 == xyes; then
++ if test x$have_avahi_06 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_AVAHI_0_6 1
+@@ -23156,7 +23156,7 @@
+ { echo "$as_me:$LINENO: Using Avahi for mDNS/DNS-SD" >&5
+ echo "$as_me: Using Avahi for mDNS/DNS-SD" >&6;}
+
+- if test x$have_avahi_06 == xyes; then
++ if test x$have_avahi_06 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_AVAHI_0_6 1
+@@ -23811,7 +23811,7 @@
+
+
+ if test x"$x_includes" != x"NONE" && test -n "$x_includes" ; then
+- CFLAGS=$CFLAGS -I`echo $x_includes | sed -e "s/:/ -I/g"`
++ CFLAGS=$CFLAGS\ -I`echo $x_includes | sed -e "s/:/ -I/g"`
+ fi
+ if test x"$x_libraries" != x"NONE" && test -n "$x_libraries" ; then
+ LIBS=-L`echo $x_libraries | sed -e "s/:/ -L/g"`
diff --git a/audio/rhythmbox-devel/files/patch-daapsharing_rb-daap-src.c b/audio/rhythmbox-devel/files/patch-daapsharing_rb-daap-src.c
new file mode 100644
index 000000000..fdbf98e76
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-daapsharing_rb-daap-src.c
@@ -0,0 +1,27 @@
+--- daapsharing/rb-daap-src.c.orig Sun Oct 16 05:50:21 2005
++++ daapsharing/rb-daap-src.c Mon Oct 17 10:30:20 2005
+@@ -34,6 +34,7 @@
+ #include <sys/ioctl.h>
+ #include <netdb.h>
+ #include <unistd.h>
++#include <signal.h>
+
+ #include <libgnome/gnome-i18n.h>
+ #include <gst/gst.h>
+@@ -580,7 +581,15 @@ gst_tcp_socket_write (int socket, const
+ size_t bytes_written = 0;
+
+ while (bytes_written < count) {
+- ssize_t wrote = send (socket, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL);
++ ssize_t wrote;
++#ifdef MSG_NOSIGNAL
++ wrote = send (socket, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL);
++#else
++ signal (SIGPIPE, SIG_IGN);
++ wrote = send (socket, buf + bytes_written, count - bytes_written, 0);
++ signal (SIGPIPE, SIG_DFL);
++#endif
++
+
+ if (wrote <= 0) {
+ return bytes_written;
diff --git a/audio/rhythmbox-devel/files/patch-player_rb-recorder-gst.c b/audio/rhythmbox-devel/files/patch-player_rb-recorder-gst.c
new file mode 100644
index 000000000..e8aae3495
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-player_rb-recorder-gst.c
@@ -0,0 +1,12 @@
+--- player/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005
++++ player/rb-recorder-gst.c Wed Aug 10 20:06:31 2005
+@@ -25,7 +25,9 @@
+ #include <string.h>
+ #include <math.h>
+ #include <time.h>
++#ifndef __FreeBSD__
+ #include <sys/vfs.h>
++#endif
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
diff --git a/audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h
new file mode 100644
index 000000000..2208b3205
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h
@@ -0,0 +1,10 @@
+--- podcast/rb-podcast-parse.h.orig Mon Nov 28 13:51:28 2005
++++ podcast/rb-podcast-parse.h Mon Nov 28 13:51:05 2005
+@@ -22,6 +22,7 @@
+ #ifndef RB_PODCAST_PARSE_H
+ #define RB_PODCAST_PARSE_H
+
++#include <inttypes.h>
+ #include <glib.h>
+
+ typedef struct
diff --git a/audio/rhythmbox-devel/files/patch-remote_bonobo_Makefile.in b/audio/rhythmbox-devel/files/patch-remote_bonobo_Makefile.in
new file mode 100644
index 000000000..c19ec530e
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-remote_bonobo_Makefile.in
@@ -0,0 +1,11 @@
+--- remote/bonobo/Makefile.in.orig Wed Aug 27 04:19:40 2003
++++ remote/bonobo/Makefile.in Wed Aug 27 04:19:56 2003
+@@ -237,7 +237,7 @@
+
+ noinst_HEADERS = Rhythmbox.h
+
+-idldir = $(prefix)/share/idl
++idldir = $(datadir)/idl
+ idl_DATA = Rhythmbox.idl
+
+ CLEAN_FILES = $(rhythmbox_interface_idl_sources)
diff --git a/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c b/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c
new file mode 100644
index 000000000..61fbb19a5
--- /dev/null
+++ b/audio/rhythmbox-devel/files/patch-sources_rb-ipod-source.c
@@ -0,0 +1,18 @@
+--- sources/rb-ipod-source.c.orig Sun Sep 19 17:05:37 2004
++++ sources/rb-ipod-source.c Sun Sep 19 17:05:49 2004
+@@ -234,6 +234,7 @@
+ }
+
+ /* Set disc number */
++ /*
+ if (song->cd_nr != 0) {
+ GValue value = {0, };
+ g_value_init (&value, G_TYPE_ULONG);
+@@ -243,6 +244,7 @@
+ &value);
+ g_value_unset (&value);
+ }
++ */
+
+ /* Set bitrate */
+ if (song->bitrate != 0) {
diff --git a/audio/rhythmbox-devel/pkg-descr b/audio/rhythmbox-devel/pkg-descr
new file mode 100644
index 000000000..39e0558c2
--- /dev/null
+++ b/audio/rhythmbox-devel/pkg-descr
@@ -0,0 +1,5 @@
+Rhythmbox is an integrated music management application, originally inspired by
+Apple's iTunes. It is free software, designed to work well under the GNOME
+Desktop, and based on the powerful GStreamer media framework.
+
+WWW: http://web.rhythmbox.org/
diff --git a/audio/rhythmbox-devel/pkg-plist b/audio/rhythmbox-devel/pkg-plist
new file mode 100644
index 000000000..0efac9ebe
--- /dev/null
+++ b/audio/rhythmbox-devel/pkg-plist
@@ -0,0 +1,246 @@
+bin/rhythmbox
+lib/bonobo/librb-nautilus-context-menu.so
+libdata/bonobo/servers/GNOME_Rhythmbox.server
+libdata/bonobo/servers/Rhythmbox_Nautilus_Context_Menu.server
+libdata/pkgconfig/rhythmbox.pc
+share/dbus-1/services/org.gnome.Rhythmbox.service
+%%DOCSDIR%%/ch01.html
+%%DOCSDIR%%/ch02.html
+%%DOCSDIR%%/ch03.html
+%%DOCSDIR%%/ch04.html
+%%DOCSDIR%%/ch05.html
+%%DOCSDIR%%/ch06.html
+%%DOCSDIR%%/ch07.html
+%%DOCSDIR%%/ch08.html
+%%DOCSDIR%%/home.png
+%%DOCSDIR%%/index.html
+%%DOCSDIR%%/index.sgml
+%%DOCSDIR%%/left.png
+%%DOCSDIR%%/rhythmbox-RBCellRendererPixbuf.html
+%%DOCSDIR%%/rhythmbox-RBSource.html
+%%DOCSDIR%%/rhythmbox-eel-gconf-extensions.html
+%%DOCSDIR%%/rhythmbox-rb-cell-renderer-rating.html
+%%DOCSDIR%%/rhythmbox-rb-debug.html
+%%DOCSDIR%%/rhythmbox-rb-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-druid.html
+%%DOCSDIR%%/rhythmbox-rb-entry-view.html
+%%DOCSDIR%%/rhythmbox-rb-enums.html
+%%DOCSDIR%%/rhythmbox-rb-file-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-glade-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-header.html
+%%DOCSDIR%%/rhythmbox-rb-history.html
+%%DOCSDIR%%/rhythmbox-rb-iradio-source.html
+%%DOCSDIR%%/rhythmbox-rb-library-source.html
+%%DOCSDIR%%/rhythmbox-rb-load-failure-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-metadata.html
+%%DOCSDIR%%/rhythmbox-rb-new-station-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-linear-loop.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-linear.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-age-and-rating.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-age.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-rating.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-equal-weights.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-shuffle.html
+%%DOCSDIR%%/rhythmbox-rb-play-order.html
+%%DOCSDIR%%/rhythmbox-rb-player.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-manager.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-source-recorder.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-source.html
+%%DOCSDIR%%/rhythmbox-rb-preferences.html
+%%DOCSDIR%%/rhythmbox-rb-property-view.html
+%%DOCSDIR%%/rhythmbox-rb-query-creator.html
+%%DOCSDIR%%/rhythmbox-rb-rating-helper.html
+%%DOCSDIR%%/rhythmbox-rb-rating.html
+%%DOCSDIR%%/rhythmbox-rb-recorder.html
+%%DOCSDIR%%/rhythmbox-rb-search-entry.html
+%%DOCSDIR%%/rhythmbox-rb-shell-clipboard.html
+%%DOCSDIR%%/rhythmbox-rb-shell-player.html
+%%DOCSDIR%%/rhythmbox-rb-shell-preferences.html
+%%DOCSDIR%%/rhythmbox-rb-shell.html
+%%DOCSDIR%%/rhythmbox-rb-song-display-box.html
+%%DOCSDIR%%/rhythmbox-rb-song-info.html
+%%DOCSDIR%%/rhythmbox-rb-source-header.html
+%%DOCSDIR%%/rhythmbox-rb-sourcelist-model.html
+%%DOCSDIR%%/rhythmbox-rb-sourcelist.html
+%%DOCSDIR%%/rhythmbox-rb-station-properties-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-statusbar.html
+%%DOCSDIR%%/rhythmbox-rb-stock-icons.html
+%%DOCSDIR%%/rhythmbox-rb-string-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-tray-icon.html
+%%DOCSDIR%%/rhythmbox-rb-tree-dnd.html
+%%DOCSDIR%%/rhythmbox-rb-tree-model-sort.html
+%%DOCSDIR%%/rhythmbox-rb-util.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-property-model.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-query-model.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-tree.html
+%%DOCSDIR%%/rhythmbox-rhythmdb.html
+%%DOCSDIR%%/rhythmbox.devhelp
+%%DOCSDIR%%/right.png
+%%DOCSDIR%%/style.css
+%%DOCSDIR%%/up.png
+share/gnome/application-registry/rhythmbox.applications
+share/gnome/applications/rhythmbox.desktop
+share/gnome/help/rhythmbox/C/authors.xml
+share/gnome/help/rhythmbox/C/fdl-appendix.xml
+share/gnome/help/rhythmbox/C/figures/rb-adv.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-finish.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-library.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-start.png
+share/gnome/help/rhythmbox/C/figures/rb-basic.png
+share/gnome/help/rhythmbox/C/figures/rb-browser.png
+share/gnome/help/rhythmbox/C/figures/rb-context-menu.png
+share/gnome/help/rhythmbox/C/figures/rb-empty.png
+share/gnome/help/rhythmbox/C/figures/rb-full-play.png
+share/gnome/help/rhythmbox/C/figures/rb-group-auto.png
+share/gnome/help/rhythmbox/C/figures/rb-group-create.png
+share/gnome/help/rhythmbox/C/figures/rb-group.png
+share/gnome/help/rhythmbox/C/figures/rb-imported.png
+share/gnome/help/rhythmbox/C/figures/rb-iradio-add.png
+share/gnome/help/rhythmbox/C/figures/rb-iradio.png
+share/gnome/help/rhythmbox/C/figures/rb-nextprev.png
+share/gnome/help/rhythmbox/C/figures/rb-nobrowse-play.png
+share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png
+share/gnome/help/rhythmbox/C/figures/rb-notification-area.png
+share/gnome/help/rhythmbox/C/figures/rb-player.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-general.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-ipod.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-library.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs.png
+share/gnome/help/rhythmbox/C/figures/rb-repeat.png
+share/gnome/help/rhythmbox/C/figures/rb-search.png
+share/gnome/help/rhythmbox/C/figures/rb-shuffle.png
+share/gnome/help/rhythmbox/C/figures/rb-sidebar.png
+share/gnome/help/rhythmbox/C/figures/rb-stats.png
+share/gnome/help/rhythmbox/C/figures/rb-statusbar.png
+share/gnome/help/rhythmbox/C/figures/rb-toolbar-editor.png
+share/gnome/help/rhythmbox/C/figures/rb-toolbar.png
+share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png
+share/gnome/help/rhythmbox/C/figures/rb-volume-mute.png
+share/gnome/help/rhythmbox/C/figures/rb-window-small.png
+share/gnome/help/rhythmbox/C/figures/rb-window.png
+share/gnome/help/rhythmbox/C/figures/rhythmbox-group.png
+share/gnome/help/rhythmbox/C/figures/rhythmbox-tray-icon.png
+share/gnome/help/rhythmbox/C/legal.xml
+share/gnome/help/rhythmbox/C/quick-reference.xml
+share/gnome/help/rhythmbox/C/rhythmbox.xml
+share/gnome/help/rhythmbox/C/user-guide.xml
+share/gnome/help/rhythmbox/ja/authors.xml
+share/gnome/help/rhythmbox/ja/fdl-appendix.xml
+share/gnome/help/rhythmbox/ja/figures/rb-adv.png
+share/gnome/help/rhythmbox/ja/figures/rb-basic.png
+share/gnome/help/rhythmbox/ja/figures/rb-browser.png
+share/gnome/help/rhythmbox/ja/figures/rb-context-menu.png
+share/gnome/help/rhythmbox/ja/figures/rb-iradio-add.png
+share/gnome/help/rhythmbox/ja/figures/rb-iradio.png
+share/gnome/help/rhythmbox/ja/figures/rb-nextprev.png
+share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png
+share/gnome/help/rhythmbox/ja/figures/rb-notification-area.png
+share/gnome/help/rhythmbox/ja/figures/rb-player.png
+share/gnome/help/rhythmbox/ja/figures/rb-prefs-general.png
+share/gnome/help/rhythmbox/ja/figures/rb-prefs-library.png
+share/gnome/help/rhythmbox/ja/figures/rb-repeat.png
+share/gnome/help/rhythmbox/ja/figures/rb-search.png
+share/gnome/help/rhythmbox/ja/figures/rb-shuffle.png
+share/gnome/help/rhythmbox/ja/figures/rb-sidebar.png
+share/gnome/help/rhythmbox/ja/figures/rb-stats.png
+share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png
+share/gnome/help/rhythmbox/ja/figures/rb-window.png
+share/gnome/help/rhythmbox/ja/legal.xml
+share/gnome/help/rhythmbox/ja/quick-reference.xml
+share/gnome/help/rhythmbox/ja/rhythmbox.xml
+share/gnome/help/rhythmbox/ja/user-guide.xml
+share/gnome/idl/Rhythmbox.idl
+share/gnome/mime-info/rhythmbox.keys
+share/gnome/omf/rhythmbox/rhythmbox-C.omf
+share/gnome/omf/rhythmbox/rhythmbox-ja.omf
+share/gnome/pixmaps/rhythmbox.png
+share/gnome/rhythmbox/art/about-logo.png
+share/gnome/rhythmbox/art/rhythmbox-no-star.png
+share/gnome/rhythmbox/art/rhythmbox-podcast.png
+share/gnome/rhythmbox/art/rhythmbox-set-star.png
+share/gnome/rhythmbox/art/rhythmbox-tray-icon.png
+share/gnome/rhythmbox/art/rhythmbox-unset-star.png
+share/gnome/rhythmbox/glade/audioscrobbler-prefs.glade
+share/gnome/rhythmbox/glade/create-playlist.glade
+share/gnome/rhythmbox/glade/daap-prefs.glade
+share/gnome/rhythmbox/glade/druid.glade
+share/gnome/rhythmbox/glade/general-prefs.glade
+share/gnome/rhythmbox/glade/library-prefs.glade
+share/gnome/rhythmbox/glade/load-failure.glade
+share/gnome/rhythmbox/glade/podcast-feed-properties.glade
+share/gnome/rhythmbox/glade/podcast-new.glade
+share/gnome/rhythmbox/glade/podcast-prefs.glade
+share/gnome/rhythmbox/glade/podcast-properties.glade
+share/gnome/rhythmbox/glade/recorder.glade
+share/gnome/rhythmbox/glade/song-info-multiple.glade
+share/gnome/rhythmbox/glade/song-info.glade
+share/gnome/rhythmbox/glade/station-properties.glade
+share/gnome/rhythmbox/glade/uri.glade
+share/gnome/rhythmbox/iradio-initial.pls
+share/gnome/rhythmbox/rhythmbox-ui.xml
+share/locale/am/LC_MESSAGES/rhythmbox.mo
+share/locale/ar/LC_MESSAGES/rhythmbox.mo
+share/locale/az/LC_MESSAGES/rhythmbox.mo
+share/locale/be/LC_MESSAGES/rhythmbox.mo
+share/locale/bg/LC_MESSAGES/rhythmbox.mo
+share/locale/ca/LC_MESSAGES/rhythmbox.mo
+share/locale/cs/LC_MESSAGES/rhythmbox.mo
+share/locale/cy/LC_MESSAGES/rhythmbox.mo
+share/locale/da/LC_MESSAGES/rhythmbox.mo
+share/locale/de/LC_MESSAGES/rhythmbox.mo
+share/locale/el/LC_MESSAGES/rhythmbox.mo
+share/locale/en_CA/LC_MESSAGES/rhythmbox.mo
+share/locale/en_GB/LC_MESSAGES/rhythmbox.mo
+share/locale/es/LC_MESSAGES/rhythmbox.mo
+share/locale/et/LC_MESSAGES/rhythmbox.mo
+share/locale/eu/LC_MESSAGES/rhythmbox.mo
+share/locale/fi/LC_MESSAGES/rhythmbox.mo
+share/locale/fr/LC_MESSAGES/rhythmbox.mo
+share/locale/ga/LC_MESSAGES/rhythmbox.mo
+share/locale/gl/LC_MESSAGES/rhythmbox.mo
+share/locale/he/LC_MESSAGES/rhythmbox.mo
+share/locale/hr/LC_MESSAGES/rhythmbox.mo
+share/locale/hu/LC_MESSAGES/rhythmbox.mo
+share/locale/id/LC_MESSAGES/rhythmbox.mo
+share/locale/is/LC_MESSAGES/rhythmbox.mo
+share/locale/it/LC_MESSAGES/rhythmbox.mo
+share/locale/ja/LC_MESSAGES/rhythmbox.mo
+share/locale/ko/LC_MESSAGES/rhythmbox.mo
+share/locale/lt/LC_MESSAGES/rhythmbox.mo
+share/locale/lv/LC_MESSAGES/rhythmbox.mo
+share/locale/mk/LC_MESSAGES/rhythmbox.mo
+share/locale/ml/LC_MESSAGES/rhythmbox.mo
+share/locale/mn/LC_MESSAGES/rhythmbox.mo
+share/locale/ms/LC_MESSAGES/rhythmbox.mo
+share/locale/nb/LC_MESSAGES/rhythmbox.mo
+share/locale/ne/LC_MESSAGES/rhythmbox.mo
+share/locale/nl/LC_MESSAGES/rhythmbox.mo
+share/locale/no/LC_MESSAGES/rhythmbox.mo
+share/locale/pa/LC_MESSAGES/rhythmbox.mo
+share/locale/pl/LC_MESSAGES/rhythmbox.mo
+share/locale/pt/LC_MESSAGES/rhythmbox.mo
+share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo
+share/locale/ro/LC_MESSAGES/rhythmbox.mo
+share/locale/ru/LC_MESSAGES/rhythmbox.mo
+share/locale/rw/LC_MESSAGES/rhythmbox.mo
+share/locale/sk/LC_MESSAGES/rhythmbox.mo
+share/locale/sr/LC_MESSAGES/rhythmbox.mo
+share/locale/sr@Latn/LC_MESSAGES/rhythmbox.mo
+share/locale/sv/LC_MESSAGES/rhythmbox.mo
+share/locale/th/LC_MESSAGES/rhythmbox.mo
+share/locale/tr/LC_MESSAGES/rhythmbox.mo
+share/locale/uk/LC_MESSAGES/rhythmbox.mo
+share/locale/vi/LC_MESSAGES/rhythmbox.mo
+share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo
+share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo
+@dirrm %%DOCSDIR%%
+@dirrm share/gnome/rhythmbox/glade
+@dirrm share/gnome/rhythmbox/art
+@dirrm share/gnome/rhythmbox
+@dirrm share/gnome/omf/rhythmbox
+@dirrm share/gnome/help/rhythmbox/ja/figures
+@dirrm share/gnome/help/rhythmbox/ja
+@dirrm share/gnome/help/rhythmbox/C/figures
+@dirrm share/gnome/help/rhythmbox/C
+@dirrm share/gnome/help/rhythmbox
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile
new file mode 100644
index 000000000..93a978a6b
--- /dev/null
+++ b/audio/rhythmbox/Makefile
@@ -0,0 +1,85 @@
+# New ports collection makefile for: rhythmbox
+# Date created: 17 August 2003
+# Whom: Joe Marcus Clarke <marcus@FreeBSD.org>
+#
+# $FreeBSD$
+# $MCom: ports/audio/rhythmbox/Makefile,v 1.40 2005/10/28 08:03:53 jylefort Exp $
+#
+
+PORTNAME= rhythmbox
+PORTVERSION= 0.9.2
+PORTREVISION= 1
+CATEGORIES= audio gnome
+MASTER_SITES= ${MASTER_SITE_GNOME}
+MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.9
+DIST_SUBDIR= gnome2
+
+MAINTAINER= marcus@FreeBSD.org
+COMMENT= Audio player for the Gnome 2 desktop environment
+
+LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \
+ id3tag.0:${PORTSDIR}/audio/libid3tag \
+ totem-plparser.1:${PORTSDIR}/multimedia/totem-gstreamer \
+ dbus-1.1:${PORTSDIR}/devel/dbus
+
+USE_BZIP2= yes
+USE_X_PREFIX= yes
+INSTALLS_OMF= yes
+USE_GMAKE= yes
+USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui nautiluscdburner
+USE_GSTREAMER= flac mad gnomevfs gconf jpeg
+USE_AUTOTOOLS= libtool:15
+CONFIGURE_ARGS= --enable-nautilus-menu
+CONFIGURE_ENV= LIBS="-lm" \
+ LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" \
+ CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include"
+
+GCONF_SCHEMAS= rhythmbox.schemas
+
+OPTIONS= IPOD "Enable iPod support" off \
+ DAAP "Enable iTunes music sharing" off \
+ FAAD "Enable FAAD decoder support" off
+
+.include <bsd.port.pre.mk>
+
+.if ${OSVERSION} < 500000
+BROKEN= "Does not build on 4.X"
+.endif
+
+.ifdef (WITH_IPOD)
+CONFIGURE_ARGS+= --enable-ipod
+.endif
+
+.if exists(${LOCALBASE}/lib/libvorbis.so)
+WITH_VORBIS= yes
+.endif
+
+.ifdef (WITH_VORBIS)
+USE_GSTREAMER+= vorbis
+.else
+CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest
+.endif
+
+.if defined(WITH_FAAD)
+USE_GSTREAMER+= faad
+.endif
+
+.if defined(WITH_DAAP)
+CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi
+LIB_DEPENDS+= soup-2.2.8:${PORTSDIR}/devel/libsoup \
+ avahi-client:${PORTSDIR}/net/avahi
+.else
+.if exists(${LOCALBASE}/lib/libavahi-client.a)
+LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi
+.endif
+CONFIGURE_ARGS+= --disable-daap
+.endif
+
+pre-everything::
+.if !defined(WITH_VORBIS)
+ @${ECHO_MSG}
+ @${ECHO_MSG} "Define WITH_VORBIS to enable Vorbis support"
+ @${ECHO_MSG}
+.endif
+
+.include <bsd.port.post.mk>
diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo
new file mode 100644
index 000000000..59542bb7b
--- /dev/null
+++ b/audio/rhythmbox/distinfo
@@ -0,0 +1,3 @@
+MD5 (gnome2/rhythmbox-0.9.2.tar.bz2) = 533223578c9c37bd72634755b33beab7
+SHA256 (gnome2/rhythmbox-0.9.2.tar.bz2) = 08e8ee10c0dc48f293b1e58cb5babaac9bfdf2df4e12aea76824ec3c6f4d0340
+SIZE (gnome2/rhythmbox-0.9.2.tar.bz2) = 2470164
diff --git a/audio/rhythmbox/files/patch-configure b/audio/rhythmbox/files/patch-configure
new file mode 100644
index 000000000..088e5eaea
--- /dev/null
+++ b/audio/rhythmbox/files/patch-configure
@@ -0,0 +1,65 @@
+--- configure.orig Mon Nov 28 13:42:56 2005
++++ configure Mon Nov 28 13:44:13 2005
+@@ -22409,7 +22409,7 @@
+ enable_hal02=yes
+ fi
+ fi
+- if test x$enable_hal05 == xyes || test x$enable_hal02 == xyes; then
++ if test x$enable_hal05 = xyes || test x$enable_hal02 = xyes; then
+ enable_hal=yes
+ else
+ enable_hal=no
+@@ -22426,7 +22426,7 @@
+ _ACEOF
+
+ use_ipod=yes
+- if test x$enable_hal05 == xyes; then
++ if test x$enable_hal05 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_HAL_0_5 1
+@@ -22748,7 +22748,7 @@
+ RHYTHMBOX_LIBS="$RHYTHMBOX_LIBS $SOUNDSYSTEM_LIBS"
+
+
+- if test "x$GST_INSPECT" == "x"; then
++ if test "x$GST_INSPECT" = "x"; then
+ # Extract the first word of "gst-inspect-0.8", so it can be a program name with args.
+ set dummy gst-inspect-0.8; ac_word=$2
+ echo "$as_me:$LINENO: checking for $ac_word" >&5
+@@ -23002,7 +23002,7 @@
+ have_avahi_05=yes
+ fi
+ fi
+-if test x$have_avahi_06 == xyes || test x$have_avahi_05 == xyes; then
++if test x$have_avahi_06 = xyes || test x$have_avahi_05 = xyes; then
+ have_avahi=yes
+ else
+ have_avahi=no
+@@ -23089,7 +23089,7 @@
+
+ { echo "$as_me:$LINENO: Detected Avahi, using it for mDNS/DNS-SD" >&5
+ echo "$as_me: Detected Avahi, using it for mDNS/DNS-SD" >&6;}
+- if test x$have_avahi_06 == xyes; then
++ if test x$have_avahi_06 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_AVAHI_0_6 1
+@@ -23156,7 +23156,7 @@
+ { echo "$as_me:$LINENO: Using Avahi for mDNS/DNS-SD" >&5
+ echo "$as_me: Using Avahi for mDNS/DNS-SD" >&6;}
+
+- if test x$have_avahi_06 == xyes; then
++ if test x$have_avahi_06 = xyes; then
+
+ cat >>confdefs.h <<\_ACEOF
+ #define HAVE_AVAHI_0_6 1
+@@ -23811,7 +23811,7 @@
+
+
+ if test x"$x_includes" != x"NONE" && test -n "$x_includes" ; then
+- CFLAGS=$CFLAGS -I`echo $x_includes | sed -e "s/:/ -I/g"`
++ CFLAGS=$CFLAGS\ -I`echo $x_includes | sed -e "s/:/ -I/g"`
+ fi
+ if test x"$x_libraries" != x"NONE" && test -n "$x_libraries" ; then
+ LIBS=-L`echo $x_libraries | sed -e "s/:/ -L/g"`
diff --git a/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c b/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c
new file mode 100644
index 000000000..fdbf98e76
--- /dev/null
+++ b/audio/rhythmbox/files/patch-daapsharing_rb-daap-src.c
@@ -0,0 +1,27 @@
+--- daapsharing/rb-daap-src.c.orig Sun Oct 16 05:50:21 2005
++++ daapsharing/rb-daap-src.c Mon Oct 17 10:30:20 2005
+@@ -34,6 +34,7 @@
+ #include <sys/ioctl.h>
+ #include <netdb.h>
+ #include <unistd.h>
++#include <signal.h>
+
+ #include <libgnome/gnome-i18n.h>
+ #include <gst/gst.h>
+@@ -580,7 +581,15 @@ gst_tcp_socket_write (int socket, const
+ size_t bytes_written = 0;
+
+ while (bytes_written < count) {
+- ssize_t wrote = send (socket, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL);
++ ssize_t wrote;
++#ifdef MSG_NOSIGNAL
++ wrote = send (socket, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL);
++#else
++ signal (SIGPIPE, SIG_IGN);
++ wrote = send (socket, buf + bytes_written, count - bytes_written, 0);
++ signal (SIGPIPE, SIG_DFL);
++#endif
++
+
+ if (wrote <= 0) {
+ return bytes_written;
diff --git a/audio/rhythmbox/files/patch-player_rb-recorder-gst.c b/audio/rhythmbox/files/patch-player_rb-recorder-gst.c
new file mode 100644
index 000000000..e8aae3495
--- /dev/null
+++ b/audio/rhythmbox/files/patch-player_rb-recorder-gst.c
@@ -0,0 +1,12 @@
+--- player/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005
++++ player/rb-recorder-gst.c Wed Aug 10 20:06:31 2005
+@@ -25,7 +25,9 @@
+ #include <string.h>
+ #include <math.h>
+ #include <time.h>
++#ifndef __FreeBSD__
+ #include <sys/vfs.h>
++#endif
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <fcntl.h>
diff --git a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h
new file mode 100644
index 000000000..2208b3205
--- /dev/null
+++ b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h
@@ -0,0 +1,10 @@
+--- podcast/rb-podcast-parse.h.orig Mon Nov 28 13:51:28 2005
++++ podcast/rb-podcast-parse.h Mon Nov 28 13:51:05 2005
+@@ -22,6 +22,7 @@
+ #ifndef RB_PODCAST_PARSE_H
+ #define RB_PODCAST_PARSE_H
+
++#include <inttypes.h>
+ #include <glib.h>
+
+ typedef struct
diff --git a/audio/rhythmbox/files/patch-remote_bonobo_Makefile.in b/audio/rhythmbox/files/patch-remote_bonobo_Makefile.in
new file mode 100644
index 000000000..c19ec530e
--- /dev/null
+++ b/audio/rhythmbox/files/patch-remote_bonobo_Makefile.in
@@ -0,0 +1,11 @@
+--- remote/bonobo/Makefile.in.orig Wed Aug 27 04:19:40 2003
++++ remote/bonobo/Makefile.in Wed Aug 27 04:19:56 2003
+@@ -237,7 +237,7 @@
+
+ noinst_HEADERS = Rhythmbox.h
+
+-idldir = $(prefix)/share/idl
++idldir = $(datadir)/idl
+ idl_DATA = Rhythmbox.idl
+
+ CLEAN_FILES = $(rhythmbox_interface_idl_sources)
diff --git a/audio/rhythmbox/files/patch-sources_rb-ipod-source.c b/audio/rhythmbox/files/patch-sources_rb-ipod-source.c
new file mode 100644
index 000000000..61fbb19a5
--- /dev/null
+++ b/audio/rhythmbox/files/patch-sources_rb-ipod-source.c
@@ -0,0 +1,18 @@
+--- sources/rb-ipod-source.c.orig Sun Sep 19 17:05:37 2004
++++ sources/rb-ipod-source.c Sun Sep 19 17:05:49 2004
+@@ -234,6 +234,7 @@
+ }
+
+ /* Set disc number */
++ /*
+ if (song->cd_nr != 0) {
+ GValue value = {0, };
+ g_value_init (&value, G_TYPE_ULONG);
+@@ -243,6 +244,7 @@
+ &value);
+ g_value_unset (&value);
+ }
++ */
+
+ /* Set bitrate */
+ if (song->bitrate != 0) {
diff --git a/audio/rhythmbox/pkg-descr b/audio/rhythmbox/pkg-descr
new file mode 100644
index 000000000..39e0558c2
--- /dev/null
+++ b/audio/rhythmbox/pkg-descr
@@ -0,0 +1,5 @@
+Rhythmbox is an integrated music management application, originally inspired by
+Apple's iTunes. It is free software, designed to work well under the GNOME
+Desktop, and based on the powerful GStreamer media framework.
+
+WWW: http://web.rhythmbox.org/
diff --git a/audio/rhythmbox/pkg-plist b/audio/rhythmbox/pkg-plist
new file mode 100644
index 000000000..0efac9ebe
--- /dev/null
+++ b/audio/rhythmbox/pkg-plist
@@ -0,0 +1,246 @@
+bin/rhythmbox
+lib/bonobo/librb-nautilus-context-menu.so
+libdata/bonobo/servers/GNOME_Rhythmbox.server
+libdata/bonobo/servers/Rhythmbox_Nautilus_Context_Menu.server
+libdata/pkgconfig/rhythmbox.pc
+share/dbus-1/services/org.gnome.Rhythmbox.service
+%%DOCSDIR%%/ch01.html
+%%DOCSDIR%%/ch02.html
+%%DOCSDIR%%/ch03.html
+%%DOCSDIR%%/ch04.html
+%%DOCSDIR%%/ch05.html
+%%DOCSDIR%%/ch06.html
+%%DOCSDIR%%/ch07.html
+%%DOCSDIR%%/ch08.html
+%%DOCSDIR%%/home.png
+%%DOCSDIR%%/index.html
+%%DOCSDIR%%/index.sgml
+%%DOCSDIR%%/left.png
+%%DOCSDIR%%/rhythmbox-RBCellRendererPixbuf.html
+%%DOCSDIR%%/rhythmbox-RBSource.html
+%%DOCSDIR%%/rhythmbox-eel-gconf-extensions.html
+%%DOCSDIR%%/rhythmbox-rb-cell-renderer-rating.html
+%%DOCSDIR%%/rhythmbox-rb-debug.html
+%%DOCSDIR%%/rhythmbox-rb-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-druid.html
+%%DOCSDIR%%/rhythmbox-rb-entry-view.html
+%%DOCSDIR%%/rhythmbox-rb-enums.html
+%%DOCSDIR%%/rhythmbox-rb-file-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-glade-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-header.html
+%%DOCSDIR%%/rhythmbox-rb-history.html
+%%DOCSDIR%%/rhythmbox-rb-iradio-source.html
+%%DOCSDIR%%/rhythmbox-rb-library-source.html
+%%DOCSDIR%%/rhythmbox-rb-load-failure-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-metadata.html
+%%DOCSDIR%%/rhythmbox-rb-new-station-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-linear-loop.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-linear.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-age-and-rating.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-age.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-by-rating.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random-equal-weights.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-random.html
+%%DOCSDIR%%/rhythmbox-rb-play-order-shuffle.html
+%%DOCSDIR%%/rhythmbox-rb-play-order.html
+%%DOCSDIR%%/rhythmbox-rb-player.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-manager.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-source-recorder.html
+%%DOCSDIR%%/rhythmbox-rb-playlist-source.html
+%%DOCSDIR%%/rhythmbox-rb-preferences.html
+%%DOCSDIR%%/rhythmbox-rb-property-view.html
+%%DOCSDIR%%/rhythmbox-rb-query-creator.html
+%%DOCSDIR%%/rhythmbox-rb-rating-helper.html
+%%DOCSDIR%%/rhythmbox-rb-rating.html
+%%DOCSDIR%%/rhythmbox-rb-recorder.html
+%%DOCSDIR%%/rhythmbox-rb-search-entry.html
+%%DOCSDIR%%/rhythmbox-rb-shell-clipboard.html
+%%DOCSDIR%%/rhythmbox-rb-shell-player.html
+%%DOCSDIR%%/rhythmbox-rb-shell-preferences.html
+%%DOCSDIR%%/rhythmbox-rb-shell.html
+%%DOCSDIR%%/rhythmbox-rb-song-display-box.html
+%%DOCSDIR%%/rhythmbox-rb-song-info.html
+%%DOCSDIR%%/rhythmbox-rb-source-header.html
+%%DOCSDIR%%/rhythmbox-rb-sourcelist-model.html
+%%DOCSDIR%%/rhythmbox-rb-sourcelist.html
+%%DOCSDIR%%/rhythmbox-rb-station-properties-dialog.html
+%%DOCSDIR%%/rhythmbox-rb-statusbar.html
+%%DOCSDIR%%/rhythmbox-rb-stock-icons.html
+%%DOCSDIR%%/rhythmbox-rb-string-helpers.html
+%%DOCSDIR%%/rhythmbox-rb-tray-icon.html
+%%DOCSDIR%%/rhythmbox-rb-tree-dnd.html
+%%DOCSDIR%%/rhythmbox-rb-tree-model-sort.html
+%%DOCSDIR%%/rhythmbox-rb-util.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-property-model.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-query-model.html
+%%DOCSDIR%%/rhythmbox-rhythmdb-tree.html
+%%DOCSDIR%%/rhythmbox-rhythmdb.html
+%%DOCSDIR%%/rhythmbox.devhelp
+%%DOCSDIR%%/right.png
+%%DOCSDIR%%/style.css
+%%DOCSDIR%%/up.png
+share/gnome/application-registry/rhythmbox.applications
+share/gnome/applications/rhythmbox.desktop
+share/gnome/help/rhythmbox/C/authors.xml
+share/gnome/help/rhythmbox/C/fdl-appendix.xml
+share/gnome/help/rhythmbox/C/figures/rb-adv.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-finish.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-library.png
+share/gnome/help/rhythmbox/C/figures/rb-asst-start.png
+share/gnome/help/rhythmbox/C/figures/rb-basic.png
+share/gnome/help/rhythmbox/C/figures/rb-browser.png
+share/gnome/help/rhythmbox/C/figures/rb-context-menu.png
+share/gnome/help/rhythmbox/C/figures/rb-empty.png
+share/gnome/help/rhythmbox/C/figures/rb-full-play.png
+share/gnome/help/rhythmbox/C/figures/rb-group-auto.png
+share/gnome/help/rhythmbox/C/figures/rb-group-create.png
+share/gnome/help/rhythmbox/C/figures/rb-group.png
+share/gnome/help/rhythmbox/C/figures/rb-imported.png
+share/gnome/help/rhythmbox/C/figures/rb-iradio-add.png
+share/gnome/help/rhythmbox/C/figures/rb-iradio.png
+share/gnome/help/rhythmbox/C/figures/rb-nextprev.png
+share/gnome/help/rhythmbox/C/figures/rb-nobrowse-play.png
+share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png
+share/gnome/help/rhythmbox/C/figures/rb-notification-area.png
+share/gnome/help/rhythmbox/C/figures/rb-player.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-general.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-ipod.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs-library.png
+share/gnome/help/rhythmbox/C/figures/rb-prefs.png
+share/gnome/help/rhythmbox/C/figures/rb-repeat.png
+share/gnome/help/rhythmbox/C/figures/rb-search.png
+share/gnome/help/rhythmbox/C/figures/rb-shuffle.png
+share/gnome/help/rhythmbox/C/figures/rb-sidebar.png
+share/gnome/help/rhythmbox/C/figures/rb-stats.png
+share/gnome/help/rhythmbox/C/figures/rb-statusbar.png
+share/gnome/help/rhythmbox/C/figures/rb-toolbar-editor.png
+share/gnome/help/rhythmbox/C/figures/rb-toolbar.png
+share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png
+share/gnome/help/rhythmbox/C/figures/rb-volume-mute.png
+share/gnome/help/rhythmbox/C/figures/rb-window-small.png
+share/gnome/help/rhythmbox/C/figures/rb-window.png
+share/gnome/help/rhythmbox/C/figures/rhythmbox-group.png
+share/gnome/help/rhythmbox/C/figures/rhythmbox-tray-icon.png
+share/gnome/help/rhythmbox/C/legal.xml
+share/gnome/help/rhythmbox/C/quick-reference.xml
+share/gnome/help/rhythmbox/C/rhythmbox.xml
+share/gnome/help/rhythmbox/C/user-guide.xml
+share/gnome/help/rhythmbox/ja/authors.xml
+share/gnome/help/rhythmbox/ja/fdl-appendix.xml
+share/gnome/help/rhythmbox/ja/figures/rb-adv.png
+share/gnome/help/rhythmbox/ja/figures/rb-basic.png
+share/gnome/help/rhythmbox/ja/figures/rb-browser.png
+share/gnome/help/rhythmbox/ja/figures/rb-context-menu.png
+share/gnome/help/rhythmbox/ja/figures/rb-iradio-add.png
+share/gnome/help/rhythmbox/ja/figures/rb-iradio.png
+share/gnome/help/rhythmbox/ja/figures/rb-nextprev.png
+share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png
+share/gnome/help/rhythmbox/ja/figures/rb-notification-area.png
+share/gnome/help/rhythmbox/ja/figures/rb-player.png
+share/gnome/help/rhythmbox/ja/figures/rb-prefs-general.png
+share/gnome/help/rhythmbox/ja/figures/rb-prefs-library.png
+share/gnome/help/rhythmbox/ja/figures/rb-repeat.png
+share/gnome/help/rhythmbox/ja/figures/rb-search.png
+share/gnome/help/rhythmbox/ja/figures/rb-shuffle.png
+share/gnome/help/rhythmbox/ja/figures/rb-sidebar.png
+share/gnome/help/rhythmbox/ja/figures/rb-stats.png
+share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png
+share/gnome/help/rhythmbox/ja/figures/rb-window.png
+share/gnome/help/rhythmbox/ja/legal.xml
+share/gnome/help/rhythmbox/ja/quick-reference.xml
+share/gnome/help/rhythmbox/ja/rhythmbox.xml
+share/gnome/help/rhythmbox/ja/user-guide.xml
+share/gnome/idl/Rhythmbox.idl
+share/gnome/mime-info/rhythmbox.keys
+share/gnome/omf/rhythmbox/rhythmbox-C.omf
+share/gnome/omf/rhythmbox/rhythmbox-ja.omf
+share/gnome/pixmaps/rhythmbox.png
+share/gnome/rhythmbox/art/about-logo.png
+share/gnome/rhythmbox/art/rhythmbox-no-star.png
+share/gnome/rhythmbox/art/rhythmbox-podcast.png
+share/gnome/rhythmbox/art/rhythmbox-set-star.png
+share/gnome/rhythmbox/art/rhythmbox-tray-icon.png
+share/gnome/rhythmbox/art/rhythmbox-unset-star.png
+share/gnome/rhythmbox/glade/audioscrobbler-prefs.glade
+share/gnome/rhythmbox/glade/create-playlist.glade
+share/gnome/rhythmbox/glade/daap-prefs.glade
+share/gnome/rhythmbox/glade/druid.glade
+share/gnome/rhythmbox/glade/general-prefs.glade
+share/gnome/rhythmbox/glade/library-prefs.glade
+share/gnome/rhythmbox/glade/load-failure.glade
+share/gnome/rhythmbox/glade/podcast-feed-properties.glade
+share/gnome/rhythmbox/glade/podcast-new.glade
+share/gnome/rhythmbox/glade/podcast-prefs.glade
+share/gnome/rhythmbox/glade/podcast-properties.glade
+share/gnome/rhythmbox/glade/recorder.glade
+share/gnome/rhythmbox/glade/song-info-multiple.glade
+share/gnome/rhythmbox/glade/song-info.glade
+share/gnome/rhythmbox/glade/station-properties.glade
+share/gnome/rhythmbox/glade/uri.glade
+share/gnome/rhythmbox/iradio-initial.pls
+share/gnome/rhythmbox/rhythmbox-ui.xml
+share/locale/am/LC_MESSAGES/rhythmbox.mo
+share/locale/ar/LC_MESSAGES/rhythmbox.mo
+share/locale/az/LC_MESSAGES/rhythmbox.mo
+share/locale/be/LC_MESSAGES/rhythmbox.mo
+share/locale/bg/LC_MESSAGES/rhythmbox.mo
+share/locale/ca/LC_MESSAGES/rhythmbox.mo
+share/locale/cs/LC_MESSAGES/rhythmbox.mo
+share/locale/cy/LC_MESSAGES/rhythmbox.mo
+share/locale/da/LC_MESSAGES/rhythmbox.mo
+share/locale/de/LC_MESSAGES/rhythmbox.mo
+share/locale/el/LC_MESSAGES/rhythmbox.mo
+share/locale/en_CA/LC_MESSAGES/rhythmbox.mo
+share/locale/en_GB/LC_MESSAGES/rhythmbox.mo
+share/locale/es/LC_MESSAGES/rhythmbox.mo
+share/locale/et/LC_MESSAGES/rhythmbox.mo
+share/locale/eu/LC_MESSAGES/rhythmbox.mo
+share/locale/fi/LC_MESSAGES/rhythmbox.mo
+share/locale/fr/LC_MESSAGES/rhythmbox.mo
+share/locale/ga/LC_MESSAGES/rhythmbox.mo
+share/locale/gl/LC_MESSAGES/rhythmbox.mo
+share/locale/he/LC_MESSAGES/rhythmbox.mo
+share/locale/hr/LC_MESSAGES/rhythmbox.mo
+share/locale/hu/LC_MESSAGES/rhythmbox.mo
+share/locale/id/LC_MESSAGES/rhythmbox.mo
+share/locale/is/LC_MESSAGES/rhythmbox.mo
+share/locale/it/LC_MESSAGES/rhythmbox.mo
+share/locale/ja/LC_MESSAGES/rhythmbox.mo
+share/locale/ko/LC_MESSAGES/rhythmbox.mo
+share/locale/lt/LC_MESSAGES/rhythmbox.mo
+share/locale/lv/LC_MESSAGES/rhythmbox.mo
+share/locale/mk/LC_MESSAGES/rhythmbox.mo
+share/locale/ml/LC_MESSAGES/rhythmbox.mo
+share/locale/mn/LC_MESSAGES/rhythmbox.mo
+share/locale/ms/LC_MESSAGES/rhythmbox.mo
+share/locale/nb/LC_MESSAGES/rhythmbox.mo
+share/locale/ne/LC_MESSAGES/rhythmbox.mo
+share/locale/nl/LC_MESSAGES/rhythmbox.mo
+share/locale/no/LC_MESSAGES/rhythmbox.mo
+share/locale/pa/LC_MESSAGES/rhythmbox.mo
+share/locale/pl/LC_MESSAGES/rhythmbox.mo
+share/locale/pt/LC_MESSAGES/rhythmbox.mo
+share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo
+share/locale/ro/LC_MESSAGES/rhythmbox.mo
+share/locale/ru/LC_MESSAGES/rhythmbox.mo
+share/locale/rw/LC_MESSAGES/rhythmbox.mo
+share/locale/sk/LC_MESSAGES/rhythmbox.mo
+share/locale/sr/LC_MESSAGES/rhythmbox.mo
+share/locale/sr@Latn/LC_MESSAGES/rhythmbox.mo
+share/locale/sv/LC_MESSAGES/rhythmbox.mo
+share/locale/th/LC_MESSAGES/rhythmbox.mo
+share/locale/tr/LC_MESSAGES/rhythmbox.mo
+share/locale/uk/LC_MESSAGES/rhythmbox.mo
+share/locale/vi/LC_MESSAGES/rhythmbox.mo
+share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo
+share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo
+@dirrm %%DOCSDIR%%
+@dirrm share/gnome/rhythmbox/glade
+@dirrm share/gnome/rhythmbox/art
+@dirrm share/gnome/rhythmbox
+@dirrm share/gnome/omf/rhythmbox
+@dirrm share/gnome/help/rhythmbox/ja/figures
+@dirrm share/gnome/help/rhythmbox/ja
+@dirrm share/gnome/help/rhythmbox/C/figures
+@dirrm share/gnome/help/rhythmbox/C
+@dirrm share/gnome/help/rhythmbox