diff options
author | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-02-28 07:08:18 +0800 |
---|---|---|
committer | marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-02-28 07:08:18 +0800 |
commit | 0111de538a7cc12339b777c08483820ec7bf0e24 (patch) | |
tree | e7928aaf74b7571645c0ce24f2f61b17f0f04b3a /audio | |
parent | 4e06ab86f35b10071c4ba1995ef6f067d97cc9c2 (diff) | |
download | marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar.gz marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar.bz2 marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar.lz marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar.xz marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.tar.zst marcuscom-ports-0111de538a7cc12339b777c08483820ec7bf0e24.zip |
Fix build with new totem-pl-parser.
Submitted by: Eric L. Chen <eric@bsded.com>
Obtained from: GNOME git
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@13734 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'audio')
-rw-r--r-- | audio/rhythmbox/Makefile | 139 | ||||
-rw-r--r-- | audio/rhythmbox/distinfo | 3 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-configure | 11 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c | 26 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h | 10 | ||||
-rw-r--r-- | audio/rhythmbox/files/patch-totem_pl_parser | 240 | ||||
-rw-r--r-- | audio/rhythmbox/pkg-descr | 5 | ||||
-rw-r--r-- | audio/rhythmbox/pkg-plist | 722 |
8 files changed, 1156 insertions, 0 deletions
diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile new file mode 100644 index 000000000..29f7190b7 --- /dev/null +++ b/audio/rhythmbox/Makefile @@ -0,0 +1,139 @@ +# 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.103 2009/11/22 22:09:39 marcus Exp $ +# + +PORTNAME= rhythmbox +PORTVERSION= 0.12.6 +PORTREVISION= 3 +CATEGORIES= audio gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= marcus@FreeBSD.org +COMMENT= Audio player for GNOME + +LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ + musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ + id3tag.0:${PORTSDIR}/audio/libid3tag \ + totem-plparser.17:${PORTSDIR}/multimedia/totem-pl-parser \ + dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ + sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ + soup-2.4.1:${PORTSDIR}/devel/libsoup \ + gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ + brasero-media.2:${PORTSDIR}/sysutils/brasero + +USE_BZIP2= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +USE_GNOME= gnomehack intlhack gnomeprefix gtk20 nautilus2 +WANT_GNOME= yes +USE_GSTREAMER= flac mp3 gnomevfs gconf jpeg +USE_AUTOTOOLS= libtool:22 +CONFIGURE_ARGS= --disable-vala --with-libbrasero-media \ + --without-libnautilus-burn +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 \ + MTP "Enable MS Media Transfer Protocol support" off \ + ITMS_PLUGIN "Enable iTunes browser plugin" on + +.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_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_MTP) +LIB_DEPENDS+= mtp.8:${PORTSDIR}/audio/libmtp +PLIST_SUB+= MTP="" +CONFIGURE_ARGS+= --with-mtp +.else +CONFIGURE_ARGS+= --without-mtp +PLIST_SUB+= MTP="@comment " +.endif + +.if defined(WITH_DAAP) +CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ + gnome-keyring:${PORTSDIR}/security/gnome-keyring +PLIST_SUB+= DAAP="" +.else +.if exists(${LOCALBASE}/lib/libavahi-client.a) +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app +.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 exists(${LOCALBASE}/libdata/pkgconfig/gst-python-0.10.pc) +USE_PYTHON= yes +.include "${PORTSDIR}/Mk/bsd.python.mk" +USE_GSTREAMER+= python +CONFIGURE_ARGS+=--enable-python +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+=--disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + +.if !defined(WITHOUT_IPOD) +LIB_DEPENDS+= gpod.5:${PORTSDIR}/audio/libgpod +CONFIGURE_ARGS+=--with-ipod +PLIST_SUB+= IPOD="" +.else +CONFIGURE_ARGS+=--without-ipod +PLIST_SUB+= IPOD="@comment " +.endif + +.if !defined(WITHOUT_ITMS_PLUGIN) +USE_WEBPLUGINS= gecko18 +WEBPLUGINS_FILES=librhythmbox-itms-detection-plugin.so +.include "${PORTSDIR}/www/firefox/Makefile.webplugins" + +CONFIGURE_ARGS+=--enable-browser-plugin +CONFIGURE_ENV+= MOZILLA_PLUGINDIR=${WEBPLUGINS_DIR} +PLIST_SUB+= ITMS_PLUGIN="" +.else +CONFIGURE_ARGS+=--disable-browser-plugin +PLIST_SUB+= ITMS_PLUGIN="@comment " +.endif + +.include <bsd.port.post.mk> diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo new file mode 100644 index 000000000..ae35bc94f --- /dev/null +++ b/audio/rhythmbox/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/rhythmbox-0.12.6.tar.bz2) = c22ff476c956afeb7f694e5d1a59cfb9 +SHA256 (gnome2/rhythmbox-0.12.6.tar.bz2) = ddffa5b7e0e0fe81044354998fd91a58d4ff526746b17a6b638e0e8ea1ac9684 +SIZE (gnome2/rhythmbox-0.12.6.tar.bz2) = 5202025 diff --git a/audio/rhythmbox/files/patch-configure b/audio/rhythmbox/files/patch-configure new file mode 100644 index 000000000..9e512187f --- /dev/null +++ b/audio/rhythmbox/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2009-03-21 13:56:32.000000000 -0400 ++++ configure 2009-03-21 13:57:17.000000000 -0400 +@@ -20763,7 +20763,7 @@ else + fi + + +-MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR:="\${libdir}/mozilla/plugins"}" ++MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR}" + + + if test x$enable_browser_plugin = xyes; then diff --git a/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c b/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c new file mode 100644 index 000000000..4d9bb5178 --- /dev/null +++ b/audio/rhythmbox/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/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-totem_pl_parser b/audio/rhythmbox/files/patch-totem_pl_parser new file mode 100644 index 000000000..a4a27903d --- /dev/null +++ b/audio/rhythmbox/files/patch-totem_pl_parser @@ -0,0 +1,240 @@ +diff -urN plugins/generic-player/rb-generic-player-playlist-source.c plugins/generic-player/rb-generic-player-playlist-source.c +--- plugins/generic-player/rb-generic-player-playlist-source.c ++++ plugins/generic-player/rb-generic-player-playlist-source.c +@@ -49,6 +49,12 @@ typedef struct + gboolean loading; + } RBGenericPlayerPlaylistSourcePrivate; + ++typedef struct ++{ ++ RBGenericPlayerPlaylistSource *source; ++ TotemPlPlaylist *playlist; ++} SavePlaylistData; ++ + RB_PLUGIN_DEFINE_TYPE(RBGenericPlayerPlaylistSource, + rb_generic_player_playlist_source, + RB_TYPE_STATIC_PLAYLIST_SOURCE) +@@ -69,26 +75,37 @@ impl_save_to_xml (RBPlaylistSource *source, xmlNodePtr node) + /* do nothing; just to prevent weirdness */ + } + +-static void +-save_playlist_entry (GtkTreeModel *model, GtkTreeIter *iter, +- char **uri, char **title, +- gboolean *custom_title, +- RBGenericPlayerPlaylistSource *source) ++static gboolean ++save_playlist_foreach (GtkTreeModel *model, ++ GtkTreePath *path, ++ GtkTreeIter *iter, ++ gpointer user_data) + { +- RBGenericPlayerPlaylistSourcePrivate *priv = GET_PRIVATE (source); ++ SavePlaylistData *data = user_data; ++ RBGenericPlayerPlaylistSourcePrivate *priv = GET_PRIVATE (data->source); + RhythmDBEntry *entry; +- const char *host_uri; ++ TotemPlPlaylistIter pl_iter; ++ const char *host_uri, *title; ++ gchar *uri; + + entry = rhythmdb_query_model_iter_to_entry (RHYTHMDB_QUERY_MODEL (model), + iter); + if (entry == NULL) { +- return; ++ return FALSE; + } + + host_uri = rhythmdb_entry_get_string (entry, RHYTHMDB_PROP_LOCATION); +- *uri = rb_generic_player_source_uri_to_playlist_uri (priv->player_source, host_uri); +- *title = rhythmdb_entry_dup_string (entry, RHYTHMDB_PROP_TITLE); +- *custom_title = TRUE; ++ uri = rb_generic_player_source_uri_to_playlist_uri (priv->player_source, host_uri); ++ title = rhythmdb_entry_get_string (entry, RHYTHMDB_PROP_TITLE); ++ ++ totem_pl_playlist_append (data->playlist, &pl_iter); ++ totem_pl_playlist_set (data->playlist, &pl_iter, ++ TOTEM_PL_PARSER_FIELD_URI, uri, ++ TOTEM_PL_PARSER_FIELD_TITLE, title, ++ NULL); ++ g_free (uri); ++ ++ return FALSE; + } + + /* this probably belongs more in totem than here */ +@@ -119,11 +136,14 @@ save_playlist (RBGenericPlayerPlaylistSource *source) + { + TotemPlParser *parser; + TotemPlParserType playlist_type; ++ TotemPlPlaylist *playlist; + RhythmDBQueryModel *query_model; + char *name; + char *temp_uri; + GError *error = NULL; + RBGenericPlayerPlaylistSourcePrivate *priv = GET_PRIVATE (source); ++ SavePlaylistData data; ++ GFile *file; + + priv->save_playlist_id = 0; + playlist_type = rb_generic_player_source_get_playlist_format (priv->player_source); +@@ -173,41 +193,50 @@ save_playlist (RBGenericPlayerPlaylistSource *source) + } + + temp_uri = g_strdup_printf ("%s%06X", priv->playlist_path, g_random_int_range (0, 0xFFFFFF)); ++ file = g_file_new_for_path (temp_uri); + + parser = totem_pl_parser_new (); +- if (rb_debug_matches ("totem_pl_parser_write_with_title", "totem-pl-parser.c")) { ++ playlist = totem_pl_playlist_new (); ++ ++ data.source = source; ++ data.playlist = playlist; ++ ++ gtk_tree_model_foreach (GTK_TREE_MODEL (query_model), ++ save_playlist_foreach, ++ &data); ++ ++ if (rb_debug_matches ("totem_pl_parser_save", "totem-pl-parser.c")) { + g_object_set (parser, "debug", TRUE, NULL); + } +- if (totem_pl_parser_write_with_title (parser, +- GTK_TREE_MODEL (query_model), +- (TotemPlParserIterFunc) save_playlist_entry, +- temp_uri, +- name, +- playlist_type, +- source, +- &error) == FALSE) { ++ ++ if (totem_pl_parser_save (parser, ++ playlist, ++ file, ++ name, ++ playlist_type, ++ &error) == FALSE) { + /* XXX report this more usefully */ + g_warning ("Playlist save failed: %s", error->message); + } else { + GFile *dest; +- GFile *src; + + dest = g_file_new_for_path (priv->playlist_path); +- src = g_file_new_for_path (temp_uri); +- g_file_move (src, dest, G_FILE_COPY_OVERWRITE | G_FILE_COPY_NO_FALLBACK_FOR_MOVE, NULL, NULL, NULL, &error); ++ g_file_move (file, dest, G_FILE_COPY_OVERWRITE | G_FILE_COPY_NO_FALLBACK_FOR_MOVE, NULL, NULL, NULL, &error); + if (error != NULL) { + /* XXX report this more usefully */ + g_warning ("Replacing playlist failed: %s", error->message); + } + + g_object_unref (dest); +- g_object_unref (src); + } + + g_clear_error (&error); + g_free (name); + g_free (temp_uri); + g_object_unref (query_model); ++ g_object_unref (playlist); ++ g_object_unref (parser); ++ g_object_unref (file); + + return FALSE; + } +diff -urN sources/rb-playlist-source.c sources/rb-playlist-source.c +--- sources/rb-playlist-source.c ++++ sources/rb-playlist-source.c +@@ -544,31 +544,31 @@ rb_playlist_source_drop_cb (GtkWidget *widget, + gtk_drag_finish (context, TRUE, FALSE, time); + } + +-static void +-playlist_iter_func (GtkTreeModel *model, +- GtkTreeIter *iter, +- char **uri, +- char **title, +- gboolean *custom_title, +- gpointer user_data) ++static gboolean ++playlist_iter_foreach (GtkTreeModel *model, ++ GtkTreePath *path, ++ GtkTreeIter *iter, ++ gpointer user_data) + { ++ TotemPlPlaylist *playlist = user_data; ++ TotemPlPlaylistIter pl_iter; + RhythmDBEntry *entry; ++ const gchar *uri; + + gtk_tree_model_get (model, iter, 0, &entry, -1); + +- if (uri != NULL) { +- *uri = rhythmdb_entry_dup_string (entry, RHYTHMDB_PROP_LOCATION); +- } +- if (title != NULL) { +- *title = rhythmdb_entry_dup_string (entry, RHYTHMDB_PROP_TITLE); +- } +- if (custom_title != NULL) { +- *custom_title = FALSE; +- } ++ uri = rhythmdb_entry_get_string (entry, RHYTHMDB_PROP_LOCATION); ++ ++ totem_pl_playlist_append (playlist, &pl_iter); ++ totem_pl_playlist_set (playlist, &pl_iter, ++ TOTEM_PL_PARSER_FIELD_URI, uri, ++ NULL); + + if (entry != NULL) { + rhythmdb_entry_unref (entry); + } ++ ++ return FALSE; + } + + /** +@@ -585,15 +585,19 @@ rb_playlist_source_save_playlist (RBPlaylistSource *source, + const char *uri, + RBPlaylistExportType export_type) + { +- TotemPlParser *playlist; ++ TotemPlParser *pl; ++ TotemPlPlaylist *playlist; + GError *error = NULL; ++ GFile *file; + char *name; + gint totem_format; + + g_return_if_fail (RB_IS_PLAYLIST_SOURCE (source)); + + rb_debug ("saving playlist"); +- playlist = totem_pl_parser_new (); ++ pl = totem_pl_parser_new (); ++ playlist = totem_pl_playlist_new (); ++ file = g_file_new_for_uri (uri); + + g_object_get (source, "name", &name, NULL); + +@@ -610,12 +614,18 @@ rb_playlist_source_save_playlist (RBPlaylistSource *source, + break; + } + +- totem_pl_parser_write_with_title (playlist, GTK_TREE_MODEL (source->priv->model), +- playlist_iter_func, uri, name, +- totem_format, +- NULL, &error); ++ gtk_tree_model_foreach (GTK_TREE_MODEL (source->priv->model), ++ playlist_iter_foreach, ++ playlist); ++ ++ totem_pl_parser_save (pl, playlist, file, name, ++ totem_format, &error); ++ ++ g_object_unref (pl); + g_object_unref (playlist); ++ g_object_unref (file); + g_free (name); ++ + if (error != NULL) { + rb_error_dialog (NULL, _("Couldn't save playlist"), + "%s", error->message); diff --git a/audio/rhythmbox/pkg-descr b/audio/rhythmbox/pkg-descr new file mode 100644 index 000000000..9c4ecf6ca --- /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://www.gnome.org/projects/rhythmbox/ diff --git a/audio/rhythmbox/pkg-plist b/audio/rhythmbox/pkg-plist new file mode 100644 index 000000000..aecba7e67 --- /dev/null +++ b/audio/rhythmbox/pkg-plist @@ -0,0 +1,722 @@ +bin/rhythmbox +bin/rhythmbox-client +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.a +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.la +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.so +lib/librhythmbox-core.la +lib/librhythmbox-core.so +lib/librhythmbox-core.so.0 +%%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/DiscogsCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/DiscogsCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/DiscogsCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.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/LocalCoverArtSearchGIO.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/MusicBrainzCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/MusicBrainzCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/MusicBrainzCoverArtSearch.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/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/rhythmbox-missing-artwork.svg +lib/rhythmbox/plugins/audiocd/album-info.ui +lib/rhythmbox/plugins/audiocd/audiocd-ui.xml +lib/rhythmbox/plugins/audiocd/audiocd.rb-plugin +lib/rhythmbox/plugins/audiocd/libaudiocd.la +lib/rhythmbox/plugins/audiocd/libaudiocd.so +lib/rhythmbox/plugins/audiocd/multiple-album.ui +lib/rhythmbox/plugins/audioscrobbler/as-icon.png +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-prefs.ui +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-ui.xml +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.rb-plugin +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.la +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.so +%%PYTHON%%lib/rhythmbox/plugins/context/AlbumTab.py +%%PYTHON%%lib/rhythmbox/plugins/context/AlbumTab.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/AlbumTab.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/ArtistTab.py +%%PYTHON%%lib/rhythmbox/plugins/context/ArtistTab.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/ArtistTab.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/ContextView.py +%%PYTHON%%lib/rhythmbox/plugins/context/ContextView.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/ContextView.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/LastFM.py +%%PYTHON%%lib/rhythmbox/plugins/context/LastFM.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/LastFM.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/LyricsTab.py +%%PYTHON%%lib/rhythmbox/plugins/context/LyricsTab.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/LyricsTab.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/context/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/context/context.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/context/img/lastfm.png +%%PYTHON%%lib/rhythmbox/plugins/context/img/spinner.gif +%%PYTHON%%lib/rhythmbox/plugins/context/tmpl/album-tmpl.html +%%PYTHON%%lib/rhythmbox/plugins/context/tmpl/artist-tmpl.html +%%PYTHON%%lib/rhythmbox/plugins/context/tmpl/loading.html +%%PYTHON%%lib/rhythmbox/plugins/context/tmpl/lyrics-tmpl.html +%%PYTHON%%lib/rhythmbox/plugins/context/tmpl/main.css +%%DAAP%%lib/rhythmbox/plugins/daap/daap-prefs.ui +%%DAAP%%lib/rhythmbox/plugins/daap/daap-ui.xml +%%DAAP%%lib/rhythmbox/plugins/daap/daap.rb-plugin +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.la +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.so +%%DAAP%%lib/rhythmbox/plugins/daap/rb-daap-glue.h +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.la +lib/rhythmbox/plugins/generic-player/libgeneric-player.so +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.rb-plugin +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-info.ui +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-init.ui +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-ui.xml +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.rb-plugin +%%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.la +lib/rhythmbox/plugins/iradio/libiradio.so +lib/rhythmbox/plugins/iradio/station-properties.ui +%%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.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-loading.ui +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-prefs.ui +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo.png +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo_medium.png +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.la +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so +%%LIRC%%lib/rhythmbox/plugins/rblirc/lirc.rb-plugin +%%LIRC%%lib/rhythmbox/plugins/rblirc/rhythmbox_lirc_default +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics-prefs.ui +%%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.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-prefs.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-purchase.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.rb-plugin +%%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.la +lib/rhythmbox/plugins/mmkeys/libmmkeys.so +lib/rhythmbox/plugins/mmkeys/mmkeys.rb-plugin +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.la +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so +%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtp-ui.xml +%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.rb-plugin +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/URLCache.py +%%PYTHON%%lib/rhythmbox/plugins/rb/URLCache.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/URLCache.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.py +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyo +lib/rhythmbox/plugins/status-icon/libstatus-icon.la +lib/rhythmbox/plugins/status-icon/libstatus-icon.so +lib/rhythmbox/plugins/status-icon/status-icon-preferences.ui +lib/rhythmbox/plugins/status-icon/status-icon-ui.xml +lib/rhythmbox/plugins/status-icon/status-icon.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/coherence.rb-plugin +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.ui +lib/rhythmbox/plugins/visualizer/visualizer-ui.xml +lib/rhythmbox/plugins/visualizer/visualizer.rb-plugin +libexec/rhythmbox-metadata +share/applications/rhythmbox.desktop +share/dbus-1/services/org.gnome.Rhythmbox.service +%%DOCSDIR%%/RBAutoPlaylistSource.html +%%DOCSDIR%%/RBBrowserSource.html +%%DOCSDIR%%/RBCellRendererPixbuf.html +%%DOCSDIR%%/RBCellRendererRating.html +%%DOCSDIR%%/RBEncoder.html +%%DOCSDIR%%/RBEntryView.html +%%DOCSDIR%%/RBHistory.html +%%DOCSDIR%%/RBImportErrorsSource.html +%%DOCSDIR%%/RBLibraryBrowser.html +%%DOCSDIR%%/RBLibrarySource.html +%%DOCSDIR%%/RBMetaData.html +%%DOCSDIR%%/RBMissingFilesSource.html +%%DOCSDIR%%/RBPlayOrder.html +%%DOCSDIR%%/RBPlayQueueSource.html +%%DOCSDIR%%/RBPlayer.html +%%DOCSDIR%%/RBPlayerGstDataTee.html +%%DOCSDIR%%/RBPlayerGstFilter.html +%%DOCSDIR%%/RBPlayerGstTee.html +%%DOCSDIR%%/RBPlaylistManager.html +%%DOCSDIR%%/RBPlaylistSource.html +%%DOCSDIR%%/RBPropertyView.html +%%DOCSDIR%%/RBQueryCreator.html +%%DOCSDIR%%/RBRandomPlayOrder.html +%%DOCSDIR%%/RBRating.html +%%DOCSDIR%%/RBRemovableMediaManager.html +%%DOCSDIR%%/RBSearchEntry.html +%%DOCSDIR%%/RBShellClipboard.html +%%DOCSDIR%%/RBShellPlayer.html +%%DOCSDIR%%/RBShellPreferences.html +%%DOCSDIR%%/RBSongInfo.html +%%DOCSDIR%%/RBSource.html +%%DOCSDIR%%/RBSourceHeader.html +%%DOCSDIR%%/RBSourceList.html +%%DOCSDIR%%/RBSourceListModel.html +%%DOCSDIR%%/RBStatusbar.html +%%DOCSDIR%%/RBStringValueMap.html +%%DOCSDIR%%/RBURIDialog.html +%%DOCSDIR%%/RhythmDB.html +%%DOCSDIR%%/RhythmDBImportJob.html +%%DOCSDIR%%/RhythmDBPropertyModel.html +%%DOCSDIR%%/RhythmDBQueryResults.html +%%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-RBPodcastSource.html +%%DOCSDIR%%/rhythmbox-RBSourceGroup.html +%%DOCSDIR%%/rhythmbox-eel-gconf-extensions.html +%%DOCSDIR%%/rhythmbox-rb-async-queue-watch.html +%%DOCSDIR%%/rhythmbox-rb-builder-helpers.html +%%DOCSDIR%%/rhythmbox-rb-debug.html +%%DOCSDIR%%/rhythmbox-rb-dialog.html +%%DOCSDIR%%/rhythmbox-rb-file-helpers.html +%%DOCSDIR%%/rhythmbox-rb-header.html +%%DOCSDIR%%/rhythmbox-rb-rating-helper.html +%%DOCSDIR%%/rhythmbox-rb-removable-media-source.html +%%DOCSDIR%%/rhythmbox-rb-shell.html +%%DOCSDIR%%/rhythmbox-rb-static-playlist-source.html +%%DOCSDIR%%/rhythmbox-rb-streaming-source.html +%%DOCSDIR%%/rhythmbox-rb-tree-dnd.html +%%DOCSDIR%%/rhythmbox-rb-util.html +%%DOCSDIR%%/rhythmbox-rhythmdb-query-model.html +%%DOCSDIR%%/rhythmbox-rhythmdb-tree.html +%%DOCSDIR%%/rhythmbox.devhelp +%%DOCSDIR%%/rhythmbox.devhelp2 +%%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css +%%DOCSDIR%%/up.png +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/cs/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-window.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/cs/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/cs/figures/rb-statusbar.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar.png +share/gnome/help/rhythmbox/cs/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/cs/figures/rb-window-small.png +share/gnome/help/rhythmbox/cs/figures/rb-window.png +share/gnome/help/rhythmbox/cs/rhythmbox.xml +share/gnome/help/rhythmbox/da/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/da/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/da/figures/rb-notification-window.png +share/gnome/help/rhythmbox/da/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/da/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/da/figures/rb-statusbar.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar.png +share/gnome/help/rhythmbox/da/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/da/figures/rb-window-small.png +share/gnome/help/rhythmbox/da/figures/rb-window.png +share/gnome/help/rhythmbox/da/rhythmbox.xml +share/gnome/help/rhythmbox/de/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/de/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/de/figures/rb-notification-window.png +share/gnome/help/rhythmbox/de/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/de/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/de/figures/rb-statusbar.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar.png +share/gnome/help/rhythmbox/de/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/de/figures/rb-window-small.png +share/gnome/help/rhythmbox/de/figures/rb-window.png +share/gnome/help/rhythmbox/de/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/it/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/it/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/it/figures/rb-notification-window.png +share/gnome/help/rhythmbox/it/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/it/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/it/figures/rb-statusbar.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar.png +share/gnome/help/rhythmbox/it/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/it/figures/rb-window-small.png +share/gnome/help/rhythmbox/it/figures/rb-window.png +share/gnome/help/rhythmbox/it/rhythmbox.xml +share/gnome/help/rhythmbox/oc/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-window.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/oc/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/oc/figures/rb-statusbar.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar.png +share/gnome/help/rhythmbox/oc/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/oc/figures/rb-window-small.png +share/gnome/help/rhythmbox/oc/figures/rb-window.png +share/gnome/help/rhythmbox/oc/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/icons/hicolor/16x16/apps/rhythmbox.png +share/icons/hicolor/22x22/apps/rhythmbox.png +share/icons/hicolor/24x24/apps/rhythmbox.png +share/icons/hicolor/32x32/apps/rhythmbox.png +share/icons/hicolor/48x48/apps/rhythmbox.png +share/icons/hicolor/scalable/apps/rhythmbox.svg +share/locale/af/LC_MESSAGES/rhythmbox.mo +share/locale/am/LC_MESSAGES/rhythmbox.mo +share/locale/ar/LC_MESSAGES/rhythmbox.mo +share/locale/as/LC_MESSAGES/rhythmbox.mo +share/locale/az/LC_MESSAGES/rhythmbox.mo +share/locale/be/LC_MESSAGES/rhythmbox.mo +share/locale/be@latin/LC_MESSAGES/rhythmbox.mo +share/locale/bg/LC_MESSAGES/rhythmbox.mo +share/locale/bn_IN/LC_MESSAGES/rhythmbox.mo +share/locale/br/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/gu/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/kn/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/mr/LC_MESSAGES/rhythmbox.mo +share/locale/ms/LC_MESSAGES/rhythmbox.mo +share/locale/nb/LC_MESSAGES/rhythmbox.mo +share/locale/nds/LC_MESSAGES/rhythmbox.mo +share/locale/ne/LC_MESSAGES/rhythmbox.mo +share/locale/nl/LC_MESSAGES/rhythmbox.mo +share/locale/oc/LC_MESSAGES/rhythmbox.mo +share/locale/or/LC_MESSAGES/rhythmbox.mo +share/locale/pa/LC_MESSAGES/rhythmbox.mo +share/locale/pl/LC_MESSAGES/rhythmbox.mo +share/locale/ps/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/sl/LC_MESSAGES/rhythmbox.mo +share/locale/sr/LC_MESSAGES/rhythmbox.mo +share/locale/sr@latin/LC_MESSAGES/rhythmbox.mo +share/locale/sv/LC_MESSAGES/rhythmbox.mo +share/locale/ta/LC_MESSAGES/rhythmbox.mo +share/locale/te/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 +share/omf/rhythmbox/rhythmbox-C.omf +share/omf/rhythmbox/rhythmbox-cs.omf +share/omf/rhythmbox/rhythmbox-da.omf +share/omf/rhythmbox/rhythmbox-de.omf +share/omf/rhythmbox/rhythmbox-el.omf +share/omf/rhythmbox/rhythmbox-es.omf +share/omf/rhythmbox/rhythmbox-fr.omf +share/omf/rhythmbox/rhythmbox-it.omf +share/omf/rhythmbox/rhythmbox-oc.omf +share/omf/rhythmbox/rhythmbox-ru.omf +share/omf/rhythmbox/rhythmbox-sv.omf +share/omf/rhythmbox/rhythmbox-zh_CN.omf +share/rhythmbox/create-playlist.ui +share/rhythmbox/general-prefs.ui +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/16x16/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/16x16/actions/media-eject.png +share/rhythmbox/icons/hicolor/16x16/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/16x16/actions/playlist-new.png +share/rhythmbox/icons/hicolor/16x16/actions/podcast-new.png +share/rhythmbox/icons/hicolor/16x16/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/16x16/places/library-podcast.png +share/rhythmbox/icons/hicolor/16x16/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/16x16/places/playlist.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-no-star.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-set-star.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-unset-star.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/22x22/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/22x22/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/22x22/actions/playlist-new.png +share/rhythmbox/icons/hicolor/22x22/actions/podcast-new.png +share/rhythmbox/icons/hicolor/22x22/actions/visualization.png +share/rhythmbox/icons/hicolor/22x22/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/22x22/places/library-podcast.png +share/rhythmbox/icons/hicolor/22x22/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/22x22/places/playlist.png +%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/jamendo.png +%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/magnatune.png +share/rhythmbox/icons/hicolor/22x22/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/32x32/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/32x32/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/32x32/actions/playlist-new.png +share/rhythmbox/icons/hicolor/32x32/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/32x32/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/32x32/places/playlist.png +share/rhythmbox/icons/hicolor/32x32/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/internet-radio-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/playlist-automatic-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/playlist-new.svg +share/rhythmbox/icons/hicolor/scalable/places/library-internet-radio.svg +share/rhythmbox/icons/hicolor/scalable/places/playlist-automatic.svg +share/rhythmbox/icons/hicolor/scalable/places/playlist.svg +share/rhythmbox/icons/hicolor/scalable/status/rhythmbox-notplaying.svg +share/rhythmbox/library-prefs.ui +share/rhythmbox/playback-prefs.ui +share/rhythmbox/playlist-save.ui +share/rhythmbox/playlists.xml +share/rhythmbox/plugins.ui +share/rhythmbox/podcast-feed-properties.ui +share/rhythmbox/podcast-prefs.ui +share/rhythmbox/podcast-properties.ui +share/rhythmbox/rhythmbox-ui.xml +share/rhythmbox/song-info-multiple.ui +share/rhythmbox/song-info.ui +share/rhythmbox/uri-new.ui +@dirrm share/rhythmbox/icons/hicolor/scalable/status +@dirrm share/rhythmbox/icons/hicolor/scalable/places +@dirrm share/rhythmbox/icons/hicolor/scalable/actions +@dirrm share/rhythmbox/icons/hicolor/scalable +@dirrm share/rhythmbox/icons/hicolor/32x32/status +@dirrm share/rhythmbox/icons/hicolor/32x32/places +@dirrm share/rhythmbox/icons/hicolor/32x32/actions +@dirrm share/rhythmbox/icons/hicolor/32x32 +%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24/places +%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24 +@dirrm share/rhythmbox/icons/hicolor/22x22/status +@dirrm share/rhythmbox/icons/hicolor/22x22/places +@dirrm share/rhythmbox/icons/hicolor/22x22/actions +@dirrm share/rhythmbox/icons/hicolor/22x22 +@dirrm share/rhythmbox/icons/hicolor/16x16/status +@dirrm share/rhythmbox/icons/hicolor/16x16/places +@dirrm share/rhythmbox/icons/hicolor/16x16/actions +@dirrm share/rhythmbox/icons/hicolor/16x16 +@dirrm share/rhythmbox/icons/hicolor +@dirrm share/rhythmbox/icons/ +@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/oc/figures +@dirrm share/gnome/help/rhythmbox/oc +@dirrm share/gnome/help/rhythmbox/it/figures +@dirrm share/gnome/help/rhythmbox/it +@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/da/figures +@dirrm share/gnome/help/rhythmbox/da +@dirrm share/gnome/help/rhythmbox/de/figures +@dirrm share/gnome/help/rhythmbox/de +@dirrm share/gnome/help/rhythmbox/cs/figures +@dirrm share/gnome/help/rhythmbox/cs +@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/upnp_coherence +@dirrm lib/rhythmbox/plugins/status-icon +%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb +%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console +@dirrm lib/rhythmbox/plugins/power-manager +%%MTP%%@dirrm lib/rhythmbox/plugins/mtpdevice +@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 +%%PYTHON%%@dirrm lib/rhythmbox/plugins/im-status +@dirrm lib/rhythmbox/plugins/generic-player +%%DAAP%%@dirrm lib/rhythmbox/plugins/daap +%%PYTHON%%@dirrm lib/rhythmbox/plugins/context/tmpl +%%PYTHON%%@dirrm lib/rhythmbox/plugins/context/img +%%PYTHON%%@dirrm lib/rhythmbox/plugins/context +@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 +%%ITMS_PLUGIN%%@dirrmtry %%WEBPLUGINS_DIR%% +@dirrmtry share/applications +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/te/LC_MESSAGES +@dirrmtry share/locale/te +@dirrmtry share/locale/sr@latin/LC_MESSAGES +@dirrmtry share/locale/sr@latin +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/ps/LC_MESSAGES +@dirrmtry share/locale/ps +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/nds/LC_MESSAGES +@dirrmtry share/locale/nds +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as |