diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-02 00:40:31 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2007-11-02 00:40:31 +0800 |
commit | 9ee342e2d7883162f3b332449788e53b7a56fbca (patch) | |
tree | bb02b25c5ccda387b003d9c5abf511f21693ba5e /audio/rhythmbox-devel | |
parent | 937366c848a635c0282a8e7739c59f3590b2aad4 (diff) | |
download | marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar.gz marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar.bz2 marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar.lz marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar.xz marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.tar.zst marcuscom-ports-9ee342e2d7883162f3b332449788e53b7a56fbca.zip |
Chase totem
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@9902 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio/rhythmbox-devel')
-rw-r--r-- | audio/rhythmbox-devel/Makefile | 122 | ||||
-rw-r--r-- | audio/rhythmbox-devel/distinfo | 3 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c | 12 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c | 26 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c | 51 | ||||
-rw-r--r-- | audio/rhythmbox-devel/files/patch-podcast_rb-podcast-parse.h | 10 | ||||
-rw-r--r-- | audio/rhythmbox-devel/pkg-descr | 5 | ||||
-rw-r--r-- | audio/rhythmbox-devel/pkg-plist | 442 |
8 files changed, 671 insertions, 0 deletions
diff --git a/audio/rhythmbox-devel/Makefile b/audio/rhythmbox-devel/Makefile new file mode 100644 index 000000000..a70d04c26 --- /dev/null +++ b/audio/rhythmbox-devel/Makefile @@ -0,0 +1,122 @@ +# 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.81 2007/07/30 19:41:19 mezz Exp $ +# + +PORTNAME= rhythmbox +PORTVERSION= 0.10.1 +PORTREVISION= 5 +CATEGORIES= audio gnome +MASTER_SITES= ${MASTER_SITE_GNOME} +MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.10 +DIST_SUBDIR= gnome2 + +MAINTAINER= marcus@FreeBSD.org +COMMENT= Audio player for GNOME + +LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ + id3tag.0:${PORTSDIR}/audio/libid3tag \ + totem-plparser.10:${PORTSDIR}/multimedia/totem \ + dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ + sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ + soup-2.2.8:${PORTSDIR}/devel/libsoup \ + gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media + +USE_BZIP2= yes +USE_XLIB= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +USE_GNOME= gnomehack intlhack gnomeprefix libgnomeui nautiluscdburner +WANT_GNOME= yes +USE_GSTREAMER= flac mp3 gnomevfs gconf jpeg +USE_AUTOTOOLS= libtool:15 +CONFIGURE_ARGS= --enable-nautilus-menu --with-playback=gstreamer-0-10 +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +CONFIGURE_ENV= LIBS="-lm" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + CPPFLAGS="-I${LOCALBASE}/include" + +GCONF_SCHEMAS= rhythmbox.schemas + +OPTIONS= DAAP "Enable iTunes music sharing" off \ + IPOD "Enable iPod support" on \ + FAAD "Enable FAAD decoder support" off \ + NOTIFY "Enable libnotify support" on \ + VORBIS "Enable Ogg/Vorbis support" on \ + LIRC "Enable Infrared syncing support" off +# GDA "Enable GDA database storage" off + +.include <bsd.port.pre.mk> + +.if !defined(WITHOUT_VORBIS) +USE_GSTREAMER+= vorbis +.else +CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest +.endif + +.if defined(WITH_FAAD) +USE_GSTREAMER+= faad +.endif + +#.if defined(WITH_GDA) +#USE_GNOME+= libgda2 +#CONFIGURE_ARGS+=--with-database=libgda +#.else +CONFIGURE_ARGS+=--with-database=tree +#.endif + +.if defined(WITH_LIRC) +LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc +PLIST_SUB+= LIRC="" +CONFIGURE_ARGS+=--enable-lirc +.else +CONFIGURE_ARGS+=--disable-lirc +PLIST_SUB+= LIRC="@comment " +.endif + +.if defined(WITH_DAAP) +CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi \ + gnome-keyring:${PORTSDIR}/security/gnome-keyring +PLIST_SUB+= DAAP="" +.else +.if exists(${LOCALBASE}/lib/libavahi-client.a) +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi +.endif +CONFIGURE_ARGS+= --disable-daap +PLIST_SUB+= DAAP="@comment " +.endif + +.if !defined(WITHOUT_NOTIFY) +LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify +RUN_DEPENDS+= ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon +.else +CONFIGURE_ARGS+= --disable-libnotify +.endif + +.if ${HAVE_GNOME:Mpygtk2}!="" +USE_PYTHON= yes +.include "${PORTSDIR}/Mk/bsd.python.mk" +USE_GNOME+= pygtk2 +CONFIGURE_ARGS+=--enable-python +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+=--disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + +.if !defined(WITHOUT_IPOD) +LIB_DEPENDS+= gpod.2:${PORTSDIR}/audio/libgpod +CONFIGURE_ARGS+=--with-ipod +PLIST_SUB+= IPOD="" +.else +CONFIGURE_ARGS+=--without-ipod +PLIST_SUB+= IPOD="@comment " +.endif + +.include <bsd.port.post.mk> diff --git a/audio/rhythmbox-devel/distinfo b/audio/rhythmbox-devel/distinfo new file mode 100644 index 000000000..ddf775466 --- /dev/null +++ b/audio/rhythmbox-devel/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/rhythmbox-0.10.1.tar.bz2) = 6ab510d54654d2973f91b5d0de54f854 +SHA256 (gnome2/rhythmbox-0.10.1.tar.bz2) = a303076477a9a7b6a226613a6f3b43f4641ce977357c9aa9652932dc0b9bbd16 +SIZE (gnome2/rhythmbox-0.10.1.tar.bz2) = 3408309 diff --git a/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c b/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c new file mode 100644 index 000000000..c70afd0dc --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-plugins_cd-recorder_rb-recorder-gst.c @@ -0,0 +1,12 @@ +--- plugins/cd-recorder/rb-recorder-gst.c.orig Wed Aug 10 20:06:11 2005 ++++ plugins/cd-recorder/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-plugins_daap_rb-daap-src.c b/audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c new file mode 100644 index 000000000..4d9bb5178 --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-plugins_daap_rb-daap-src.c @@ -0,0 +1,26 @@ +--- plugins/daap/rb-daap-src.c.orig Fri Jan 27 21:11:13 2006 ++++ plugins/daap/rb-daap-src.c Thu Feb 2 02:07:48 2006 +@@ -34,6 +34,7 @@ + #include <sys/ioctl.h> + #include <netdb.h> + #include <unistd.h> ++#include <signal.h> + #include <ctype.h> + + #include <libsoup/soup-headers.h> +@@ -435,7 +436,14 @@ rb_daap_src_write (RBDAAPSrc *src, const + size_t bytes_written = 0; + + while (bytes_written < count) { +- ssize_t wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); ++ ssize_t wrote; ++#ifdef MSG_NOSIGNAL ++ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); ++#else ++ signal (SIGPIPE, SIG_IGN); ++ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, 0); ++ signal (SIGPIPE, SIG_DFL); ++#endif + + if (wrote < 0) { + GST_WARNING ("error while writing: %s", g_strerror (errno)); diff --git a/audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c b/audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c new file mode 100644 index 000000000..2195b06b2 --- /dev/null +++ b/audio/rhythmbox-devel/files/patch-plugins_ipod_rb-ipod-source.c @@ -0,0 +1,51 @@ +--- plugins/ipod/rb-ipod-source.c.orig Sun Nov 19 12:12:33 2006 ++++ plugins/ipod/rb-ipod-source.c Sun Nov 19 12:28:50 2006 +@@ -695,33 +695,36 @@ hal_udi_is_ipod (const char *udi) + char *spider_udi; + int vnd_id = 0; + int product_id = 0; ++ DBusError phone_error; ++ ++ dbus_error_init (&phone_error); + + spider_udi = g_strdup(parent_udi); + while (vnd_id == 0 && product_id == 0 && spider_udi != NULL) { + char *old_udi = spider_udi; + spider_udi = libhal_device_get_property_string (ctx, spider_udi, +- "info.parent", &error); +- if (dbus_error_is_set (&error)) { +- dbus_error_free (&error); +- dbus_error_init (&error); ++ "info.parent", &phone_error); ++ if (dbus_error_is_set (&phone_error)) { ++ dbus_error_free (&phone_error); ++ dbus_error_init (&phone_error); + spider_udi = NULL; + break; + } + g_free(old_udi); + + vnd_id = libhal_device_get_property_int (ctx, spider_udi, +- "usb.vendor_id", &error); +- if (dbus_error_is_set(&error)) { +- dbus_error_free (&error); +- dbus_error_init (&error); ++ "usb.vendor_id", &phone_error); ++ if (dbus_error_is_set(&phone_error)) { ++ dbus_error_free (&phone_error); ++ dbus_error_init (&phone_error); + vnd_id = 0; + } + + product_id = libhal_device_get_property_int (ctx, spider_udi, +- "usb.product_id", &error); +- if (dbus_error_is_set(&error)) { +- dbus_error_free (&error); +- dbus_error_init (&error); ++ "usb.product_id", &phone_error); ++ if (dbus_error_is_set(&phone_error)) { ++ dbus_error_free (&phone_error); ++ dbus_error_init (&phone_error); + product_id = 0; + } + } 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/pkg-descr b/audio/rhythmbox-devel/pkg-descr new file mode 100644 index 000000000..60afe778d --- /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://www.gnome.org/projects/rhythmbox/ diff --git a/audio/rhythmbox-devel/pkg-plist b/audio/rhythmbox-devel/pkg-plist new file mode 100644 index 000000000..8d19a9859 --- /dev/null +++ b/audio/rhythmbox-devel/pkg-plist @@ -0,0 +1,442 @@ +bin/rhythmbox +bin/rhythmbox-client +lib/librhythmbox-core.a +lib/librhythmbox-core.la +lib/librhythmbox-core.so +lib/librhythmbox-core.so.0 +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/rhythmbox-missing-artwork.svg +lib/rhythmbox/plugins/audiocd/audiocd.rb-plugin +lib/rhythmbox/plugins/audiocd/libaudiocd.a +lib/rhythmbox/plugins/audiocd/libaudiocd.la +lib/rhythmbox/plugins/audiocd/libaudiocd.so +lib/rhythmbox/plugins/audiocd/multiple-album.glade +lib/rhythmbox/plugins/audioscrobbler/as-icon.svg +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-prefs.glade +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-ui.xml +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.rb-plugin +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.a +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.la +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so +lib/rhythmbox/plugins/cd-recorder/cd-recorder.rb-plugin +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.a +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.la +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.so +lib/rhythmbox/plugins/cd-recorder/recorder.glade +%%DAAP%%lib/rhythmbox/plugins/daap/daap-prefs.glade +%%DAAP%%lib/rhythmbox/plugins/daap/daap-ui.xml +%%DAAP%%lib/rhythmbox/plugins/daap/daap.rb-plugin +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.a +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.la +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.so +lib/rhythmbox/plugins/generic-player/generic-player-ui.xml +lib/rhythmbox/plugins/generic-player/generic-player.rb-plugin +lib/rhythmbox/plugins/generic-player/libgeneric-player.a +lib/rhythmbox/plugins/generic-player/libgeneric-player.la +lib/rhythmbox/plugins/generic-player/libgeneric-player.so +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-ui.xml +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.rb-plugin +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.a +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.la +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so +lib/rhythmbox/plugins/iradio/iradio-initial.pls +lib/rhythmbox/plugins/iradio/iradio-ui.xml +lib/rhythmbox/plugins/iradio/iradio.rb-plugin +lib/rhythmbox/plugins/iradio/libiradio.a +lib/rhythmbox/plugins/iradio/libiradio.la +lib/rhythmbox/plugins/iradio/libiradio.so +lib/rhythmbox/plugins/iradio/station-properties.glade +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-loading.glade +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-prefs.glade +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo.png +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo_medium.png +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo_small.png +%%LIRC%%lib/rhythmbox/plugins/lirc/librblirc.a +%%LIRC%%lib/rhythmbox/plugins/lirc/librblirc.la +%%LIRC%%lib/rhythmbox/plugins/lirc/librblirc.so +%%LIRC%%lib/rhythmbox/plugins/lirc/lirc.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-loading.glade +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-prefs.glade +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-purchase.glade +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_circle_small.png +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_small.png +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_tiny.png +lib/rhythmbox/plugins/mmkeys/libmmkeys.a +lib/rhythmbox/plugins/mmkeys/libmmkeys.la +lib/rhythmbox/plugins/mmkeys/libmmkeys.so +lib/rhythmbox/plugins/mmkeys/mmkeys.rb-plugin +lib/rhythmbox/plugins/power-manager/libpower-manager.a +lib/rhythmbox/plugins/power-manager/libpower-manager.la +lib/rhythmbox/plugins/power-manager/libpower-manager.so +lib/rhythmbox/plugins/power-manager/power-manager.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.py +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyc +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyo +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.py +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.py +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyo +lib/rhythmbox/plugins/visualizer/libvisualizer.a +lib/rhythmbox/plugins/visualizer/libvisualizer.la +lib/rhythmbox/plugins/visualizer/libvisualizer.so +lib/rhythmbox/plugins/visualizer/rb-visualizer-glue.h +lib/rhythmbox/plugins/visualizer/visualizer-controls.glade +lib/rhythmbox/plugins/visualizer/visualizer-ui.xml +lib/rhythmbox/plugins/visualizer/visualizer.rb-plugin +libexec/rhythmbox-metadata +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%%/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-library-source.html +%%DOCSDIR%%/rhythmbox-rb-metadata.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-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-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%%/rhythmbox.devhelp2 +%%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css +%%DOCSDIR%%/up.png +share/applications/rhythmbox.desktop +share/gnome/help/rhythmbox/C/fdl-appendix.xml +share/gnome/help/rhythmbox/C/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/C/figures/rb-notification-window.png +share/gnome/help/rhythmbox/C/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/C/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/C/figures/rb-statusbar.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-shuffle.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-window-small.png +share/gnome/help/rhythmbox/C/figures/rb-window.png +share/gnome/help/rhythmbox/C/legal.xml +share/gnome/help/rhythmbox/C/rhythmbox.xml +share/gnome/help/rhythmbox/el/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/el/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/el/figures/rb-notification-window.png +share/gnome/help/rhythmbox/el/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/el/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/el/figures/rb-statusbar.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar.png +share/gnome/help/rhythmbox/el/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/el/figures/rb-window-small.png +share/gnome/help/rhythmbox/el/figures/rb-window.png +share/gnome/help/rhythmbox/el/rhythmbox.xml +share/gnome/help/rhythmbox/es/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/es/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/es/figures/rb-notification-window.png +share/gnome/help/rhythmbox/es/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/es/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/es/figures/rb-statusbar.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar.png +share/gnome/help/rhythmbox/es/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/es/figures/rb-window-small.png +share/gnome/help/rhythmbox/es/figures/rb-window.png +share/gnome/help/rhythmbox/es/rhythmbox.xml +share/gnome/help/rhythmbox/fr/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-window.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/fr/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/fr/figures/rb-statusbar.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar.png +share/gnome/help/rhythmbox/fr/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/fr/figures/rb-window-small.png +share/gnome/help/rhythmbox/fr/figures/rb-window.png +share/gnome/help/rhythmbox/fr/rhythmbox.xml +share/gnome/help/rhythmbox/ru/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-window.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/ru/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/ru/figures/rb-statusbar.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar.png +share/gnome/help/rhythmbox/ru/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/ru/figures/rb-window-small.png +share/gnome/help/rhythmbox/ru/figures/rb-window.png +share/gnome/help/rhythmbox/ru/rhythmbox.xml +share/gnome/help/rhythmbox/sv/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-window.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/sv/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/sv/figures/rb-statusbar.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar.png +share/gnome/help/rhythmbox/sv/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/sv/figures/rb-window-small.png +share/gnome/help/rhythmbox/sv/figures/rb-window.png +share/gnome/help/rhythmbox/sv/rhythmbox.xml +share/gnome/help/rhythmbox/zh_CN/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-window.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-statusbar.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-window-small.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-window.png +share/gnome/help/rhythmbox/zh_CN/rhythmbox.xml +share/omf/rhythmbox/rhythmbox-C.omf +share/omf/rhythmbox/rhythmbox-el.omf +share/omf/rhythmbox/rhythmbox-es.omf +share/omf/rhythmbox/rhythmbox-fr.omf +share/omf/rhythmbox/rhythmbox-ru.omf +share/omf/rhythmbox/rhythmbox-sv.omf +share/omf/rhythmbox/rhythmbox-zh_CN.omf +share/rhythmbox/art/about-logo.png +share/rhythmbox/art/media-eject.png +share/rhythmbox/art/rhythmbox-no-star.png +share/rhythmbox/art/rhythmbox-podcast.png +share/rhythmbox/art/rhythmbox-set-star.png +share/rhythmbox/art/rhythmbox-tray-icon.png +share/rhythmbox/art/rhythmbox-unset-star.png +share/rhythmbox/glade/create-playlist.glade +share/rhythmbox/glade/druid.glade +share/rhythmbox/glade/general-prefs.glade +share/rhythmbox/glade/library-prefs.glade +share/rhythmbox/glade/playlist-save.glade +share/rhythmbox/glade/plugins.glade +share/rhythmbox/glade/podcast-feed-properties.glade +share/rhythmbox/glade/podcast-prefs.glade +share/rhythmbox/glade/podcast-properties.glade +share/rhythmbox/glade/song-info-multiple.glade +share/rhythmbox/glade/song-info.glade +share/rhythmbox/glade/uri-new.glade +share/rhythmbox/glade/uri.glade +share/rhythmbox/playlists.xml +share/rhythmbox/rhythmbox-ui.xml +share/icons/hicolor/48x48/apps/rhythmbox.png +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/dz/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/hi/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/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_HK/LC_MESSAGES/rhythmbox.mo +share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo +@dirrm share/rhythmbox/glade +@dirrm share/rhythmbox/art +@dirrm share/rhythmbox +@dirrm share/omf/rhythmbox +@dirrm share/gnome/help/rhythmbox/zh_CN/figures +@dirrm share/gnome/help/rhythmbox/zh_CN +@dirrm share/gnome/help/rhythmbox/sv/figures +@dirrm share/gnome/help/rhythmbox/sv +@dirrm share/gnome/help/rhythmbox/ru/figures +@dirrm share/gnome/help/rhythmbox/ru +@dirrm share/gnome/help/rhythmbox/fr/figures +@dirrm share/gnome/help/rhythmbox/fr +@dirrm share/gnome/help/rhythmbox/es/figures +@dirrm share/gnome/help/rhythmbox/es +@dirrm share/gnome/help/rhythmbox/el/figures +@dirrm share/gnome/help/rhythmbox/el +@dirrm share/gnome/help/rhythmbox/C/figures +@dirrm share/gnome/help/rhythmbox/C +@dirrm share/gnome/help/rhythmbox +@dirrm %%DOCSDIR%% +@dirrm lib/rhythmbox/plugins/visualizer +%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb +%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console +@dirrm lib/rhythmbox/plugins/power-manager +@dirrm lib/rhythmbox/plugins/mmkeys +%%PYTHON%%@dirrm lib/rhythmbox/plugins/magnatune +%%PYTHON%%@dirrm lib/rhythmbox/plugins/lyrics +%%LIRC%%@dirrm lib/rhythmbox/plugins/lirc +%%PYTHON%%@dirrm lib/rhythmbox/plugins/jamendo +@dirrm lib/rhythmbox/plugins/iradio +%%IPOD%%@dirrm lib/rhythmbox/plugins/ipod +@dirrm lib/rhythmbox/plugins/generic-player +%%DAAP%%@dirrm lib/rhythmbox/plugins/daap +@dirrm lib/rhythmbox/plugins/cd-recorder +@dirrm lib/rhythmbox/plugins/audioscrobbler +@dirrm lib/rhythmbox/plugins/audiocd +%%PYTHON%%@dirrm lib/rhythmbox/plugins/artdisplay +@dirrm lib/rhythmbox/plugins +@dirrm lib/rhythmbox +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/applications |