From 752a66b40a757b50196fb97fda1143a42e96c295 Mon Sep 17 00:00:00 2001 From: kwm Date: Sun, 27 Oct 2013 22:10:10 +0000 Subject: Move gnome3 ports into the place of the gnome2 locations. Update to new port rules, remove conflicts, latest_link, enable stage support. gnome-games was skipped because I got a update for that. gnome-keyring 2 vs 3, needs to be looked at. zenity 2 vs 3, and libgnomekbd 2 vs 3 Use new lib_depend syntax in bsd.gnome.mk. Possible lots of broken links. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18813 df743ca5-7f9a-e211-a948-0013205c9059 --- audio/rhythmbox/Makefile | 155 ++++++ audio/rhythmbox/distinfo | 2 + audio/rhythmbox/files/patch-configure | 11 + audio/rhythmbox/pkg-descr | 5 + audio/rhythmbox/pkg-plist | 857 +++++++++++++++++++++++++++++++++ audio/rhythmbox3/Makefile | 156 ------ audio/rhythmbox3/distinfo | 2 - audio/rhythmbox3/files/patch-configure | 11 - audio/rhythmbox3/pkg-descr | 5 - audio/rhythmbox3/pkg-plist | 857 --------------------------------- 10 files changed, 1030 insertions(+), 1031 deletions(-) create mode 100644 audio/rhythmbox/Makefile create mode 100644 audio/rhythmbox/distinfo create mode 100644 audio/rhythmbox/files/patch-configure create mode 100644 audio/rhythmbox/pkg-descr create mode 100644 audio/rhythmbox/pkg-plist delete mode 100644 audio/rhythmbox3/Makefile delete mode 100644 audio/rhythmbox3/distinfo delete mode 100644 audio/rhythmbox3/files/patch-configure delete mode 100644 audio/rhythmbox3/pkg-descr delete mode 100644 audio/rhythmbox3/pkg-plist (limited to 'audio') diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile new file mode 100644 index 000000000..56c8d3ead --- /dev/null +++ b/audio/rhythmbox/Makefile @@ -0,0 +1,155 @@ +# Created by: Joe Marcus Clarke +# $FreeBSD$ +# $MCom: ports/trunk/audio/rhythmbox3/Makefile 18610 2013-06-30 16:33:05Z marcus $ + +PORTNAME= rhythmbox +PORTVERSION= 2.90.1.1 +PORTREVISION= 1 +CATEGORIES= audio gnome +#MASTER_SITES= GNOME +MASTER_SITES= LOCAL/kwm +PKGNAMESUFFIX= 3 +DIST_SUBDIR= gnome3 + +MAINTAINER= marcus@FreeBSD.org +COMMENT= Audio player for GNOME + +BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat +LIB_DEPENDS= libmusicbrainz3.so:${PORTSDIR}/audio/libmusicbrainz3 \ + libtotem-plparser.so:${PORTSDIR}/multimedia/totem-pl-parser \ + libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ + libpeas-1.0.so:${PORTSDIR}/devel/libpeas \ + libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \ + libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome \ + libgnome-media-profiles-3.0.so:${PORTSDIR}/multimedia/libgnome-media-profiles \ + libbrasero-media3.so:${PORTSDIR}/sysutils/brasero3 + + +USE_BZIP2= yes +USES= gettext gmake pathfix pkgconfig +INSTALLS_OMF= yes +USE_XORG= ice xproto +USE_GNOME= intlhack gnomeprefix gtk30 introspection:build +WANT_GNOME= yes +USE_GSTREAMER= flac mp3 jpeg cdparanoia vorbis +USE_AUTOTOOLS= libtool +CONFIGURE_ARGS= --disable-vala +INSTALLS_ICONS= yes +INSTALLS_OMF= yes +USE_LDCONFIG= yes +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib + +GLIB_SCHEMAS= org.gnome.rhythmbox.gschema.xml + +OPTIONS_DEFINE= IPOD FAAD NOTIFY PYTHON LIRC MTP WEBKIT ITMS_PLUGIN +OPTIONS_DEFAULT=NOTIFY PYTHON +IPOD_DESC= iPod support +ITMS_PLUGIN_DESC=iTunes browser plugin +WEBKIT_DESC= HTML view support +#DAAP "Enable iTunes music sharing" off \ +#VISUAL "Enable clutter visualizer plugin" on \ + +MAN1= rhythmbox-client.1 rhythmbox.1 + +.include + +.if ${PORT_OPTIONS:MFAAD} +USE_GSTREAMER+= faad +.endif + +.if ${PORT_OPTIONS:MFAAD} +LIB_DEPENDS+= liblirc_client.so:${PORTSDIR}/comms/lirc +PLIST_SUB+= LIRC="" +CONFIGURE_ARGS+=--enable-lirc +.else +CONFIGURE_ARGS+=--disable-lirc +PLIST_SUB+= LIRC="@comment " +.endif + +.if ${PORT_OPTIONS:MMTP} +LIB_DEPENDS+= libmtp.so:${PORTSDIR}/audio/libmtp \ + libhal.so:${PORTSDIR}/sysutils/hal +PLIST_SUB+= MTP="" +CONFIGURE_ARGS+=--with-mtp +.else +CONFIGURE_ARGS+=--without-mtp +PLIST_SUB+= MTP="@comment " +.endif + +#.if defined(WITH_DAAP) +# needs http://www.flyn.org/projects/libdmapsharing/ +#CONFIGURE_ARGS+=--enable-daap --with-mdns=avahi +#LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ +# gnome-keyring.0:${PORTSDIR}/security/libgnome-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 ${PORT_OPTIONS:MNOTIFY} +LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify +PLIST_SUB+= NOTIFY="" +.else +CONFIGURE_ARGS+=--disable-libnotify +PLIST_SUB+= NOTIFY="@comment " +.endif + +.if ${PORT_OPTIONS:MPYTHON} +USE_PYTHON= yes +USE_GSTREAMER+= python +CONFIGURE_ARGS+=--enable-python +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+=--disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + +.if ${PORT_OPTIONS:MIPOD} +LIB_DEPENDS+= libgpod.so:${PORTSDIR}/audio/libgpod +CONFIGURE_ARGS+=--with-ipod +PLIST_SUB+= IPOD="" +.else +CONFIGURE_ARGS+=--without-ipod +PLIST_SUB+= IPOD="@comment " +.endif + +.if ${PORT_OPTIONS:MITMS_PLUGIN} +# see if we can run this plugin from mozilla .. +USE_WEBPLUGINS= webkit-gtk3 +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 + +.if ${PORT_OPTIONS:MWEBKIT} +LIB_DEPENDS+= libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 +CONFIGURE_ARGS+=--with-webkit +PLIST_SUB+= WEBKIT="" +.else +CONFIGURE_ARGS+=--without-webkit +PLIST_SUB+= WEBKIT="@comment " +.endif + +#.if defined(WITH_VISUAL) +#LIB_DEPENDS+= mx-1.0.2:${PORTSDIR}/x11-toolkits/mx \ +# clutter-gtk-1.0.0:${PORTSDIR}/graphics/clutter-gtk3 \ +# clutter-gst-1.0.0:${PORTSDIR}/multimedia/clutter-gst +#CONFIGURE_ARGS+=--enable-visualizer +#PLIST_SUB+= VISUAL="" +#.else +CONFIGURE_ARGS+=--enable-visualizer=no +PLIST_SUB+= VISUAL="@comment " +#.endif + +.include diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo new file mode 100644 index 000000000..be6bba89e --- /dev/null +++ b/audio/rhythmbox/distinfo @@ -0,0 +1,2 @@ +SHA256 (gnome3/rhythmbox-2.90.1.1.tar.bz2) = 187fe6f60cf9991d0dd2a8b55671356ed2b5399f998aadeb323adf3bf4a2ec05 +SIZE (gnome3/rhythmbox-2.90.1.1.tar.bz2) = 11181310 diff --git a/audio/rhythmbox/files/patch-configure b/audio/rhythmbox/files/patch-configure new file mode 100644 index 000000000..53ec68b22 --- /dev/null +++ b/audio/rhythmbox/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2011-04-23 19:57:24.000000000 +0200 ++++ configure 2011-04-23 20:27:33.000000000 +0200 +@@ -20194,7 +20194,7 @@ + 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/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..c2d4ba177 --- /dev/null +++ b/audio/rhythmbox/pkg-plist @@ -0,0 +1,857 @@ +bin/rhythmbox +bin/rhythmbox-client +include/rhythmbox/backends/rb-encoder.h +include/rhythmbox/backends/rb-player-gst-data-tee.h +include/rhythmbox/backends/rb-player-gst-filter.h +include/rhythmbox/backends/rb-player-gst-tee.h +include/rhythmbox/backends/rb-player.h +include/rhythmbox/lib/libmediaplayerid/mediaplayerid.h +include/rhythmbox/lib/rb-builder-helpers.h +include/rhythmbox/lib/rb-debug.h +include/rhythmbox/lib/rb-file-helpers.h +include/rhythmbox/lib/rb-stock-icons.h +include/rhythmbox/lib/rb-string-value-map.h +include/rhythmbox/lib/rb-util.h +include/rhythmbox/metadata/rb-metadata.h +include/rhythmbox/plugins/rb-plugin-macros.h +include/rhythmbox/podcast/rb-podcast-entry-types.h +include/rhythmbox/podcast/rb-podcast-manager.h +include/rhythmbox/podcast/rb-podcast-parse.h +include/rhythmbox/rhythmdb/rb-refstring.h +include/rhythmbox/rhythmdb/rhythmdb-entry-type.h +include/rhythmbox/rhythmdb/rhythmdb-entry.h +include/rhythmbox/rhythmdb/rhythmdb-import-job.h +include/rhythmbox/rhythmdb/rhythmdb-property-model.h +include/rhythmbox/rhythmdb/rhythmdb-query-model.h +include/rhythmbox/rhythmdb/rhythmdb-query-result-list.h +include/rhythmbox/rhythmdb/rhythmdb-query-results.h +include/rhythmbox/rhythmdb/rhythmdb.h +include/rhythmbox/shell/rb-history.h +include/rhythmbox/shell/rb-play-order.h +include/rhythmbox/shell/rb-playlist-manager.h +include/rhythmbox/shell/rb-removable-media-manager.h +include/rhythmbox/shell/rb-shell-player.h +include/rhythmbox/shell/rb-shell-preferences.h +include/rhythmbox/shell/rb-shell.h +include/rhythmbox/shell/rb-track-transfer-batch.h +include/rhythmbox/shell/rb-track-transfer-queue.h +include/rhythmbox/sources/rb-auto-playlist-source.h +include/rhythmbox/sources/rb-browser-source.h +include/rhythmbox/sources/rb-display-page-group.h +include/rhythmbox/sources/rb-display-page-model.h +include/rhythmbox/sources/rb-display-page-tree.h +include/rhythmbox/sources/rb-display-page.h +include/rhythmbox/sources/rb-media-player-source.h +include/rhythmbox/sources/rb-playlist-source.h +include/rhythmbox/sources/rb-playlist-xml.h +include/rhythmbox/sources/rb-removable-media-source.h +include/rhythmbox/sources/rb-source-search-basic.h +include/rhythmbox/sources/rb-source-search.h +include/rhythmbox/sources/rb-source.h +include/rhythmbox/sources/rb-static-playlist-source.h +include/rhythmbox/sources/rb-streaming-source.h +include/rhythmbox/widgets/rb-alert-dialog.h +include/rhythmbox/widgets/rb-cell-renderer-pixbuf.h +include/rhythmbox/widgets/rb-cell-renderer-rating.h +include/rhythmbox/widgets/rb-dialog.h +include/rhythmbox/widgets/rb-entry-view.h +include/rhythmbox/widgets/rb-library-browser.h +include/rhythmbox/widgets/rb-property-view.h +include/rhythmbox/widgets/rb-rating.h +include/rhythmbox/widgets/rb-segmented-bar.h +include/rhythmbox/widgets/rb-song-info.h +include/rhythmbox/widgets/rb-uri-dialog.h +%%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/girepository-1.0/MPID-3.0.typelib +lib/girepository-1.0/RB-3.0.typelib +lib/librhythmbox-core.la +lib/librhythmbox-core.so +lib/librhythmbox-core.so.4 +%%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/EmbeddedCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.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/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/artdisplay.plugin +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.pyo +lib/rhythmbox/plugins/audiocd/audiocd.plugin +lib/rhythmbox/plugins/audiocd/libaudiocd.la +lib/rhythmbox/plugins/audiocd/libaudiocd.so +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.plugin +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.la +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so +lib/rhythmbox/plugins/cd-recorder/cd-recorder.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/LinksTab.py +%%PYTHON%%lib/rhythmbox/plugins/context/LinksTab.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/LinksTab.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/context.plugin +%%PYTHON%%lib/rhythmbox/plugins/context/context.py +%%PYTHON%%lib/rhythmbox/plugins/context/context.pyc +%%PYTHON%%lib/rhythmbox/plugins/context/context.pyo +lib/rhythmbox/plugins/dbus-media-server/dbus-media-server.plugin +lib/rhythmbox/plugins/dbus-media-server/libdbus-media-server.la +lib/rhythmbox/plugins/dbus-media-server/libdbus-media-server.so +lib/rhythmbox/plugins/fmradio/fmradio.plugin +lib/rhythmbox/plugins/fmradio/libfmradio.la +lib/rhythmbox/plugins/fmradio/libfmradio.so +lib/rhythmbox/plugins/generic-player/generic-player.plugin +lib/rhythmbox/plugins/generic-player/libgeneric-player.la +lib/rhythmbox/plugins/generic-player/libgeneric-player.so +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.plugin +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.py +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.pyc +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.pyo +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.plugin +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.la +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so +lib/rhythmbox/plugins/iradio/iradio.plugin +lib/rhythmbox/plugins/iradio/libiradio.la +lib/rhythmbox/plugins/iradio/libiradio.so +%%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/DarkLyricsParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/DarkLyricsParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/DarkLyricsParser.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/LyricsSites.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsSites.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsSites.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.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/lyrics.plugin +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyo +lib/rhythmbox/plugins/mmkeys/libmmkeys.la +lib/rhythmbox/plugins/mmkeys/libmmkeys.so +lib/rhythmbox/plugins/mmkeys/mmkeys.plugin +lib/rhythmbox/plugins/mpris/libmpris.la +lib/rhythmbox/plugins/mpris/libmpris.so +lib/rhythmbox/plugins/mpris/mpris.plugin +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.la +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so +%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.plugin +%%NOTIFY%%lib/rhythmbox/plugins/notification/libnotification.la +%%NOTIFY%%lib/rhythmbox/plugins/notification/libnotification.so +%%NOTIFY%%lib/rhythmbox/plugins/notification/notification.plugin +lib/rhythmbox/plugins/power-manager/libpower-manager.la +lib/rhythmbox/plugins/power-manager/libpower-manager.so +lib/rhythmbox/plugins/power-manager/power-manager.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.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/rb.plugin +%%PYTHON%%lib/rhythmbox/plugins/rb/rb.py +%%PYTHON%%lib/rhythmbox/plugins/rb/rb.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/rb.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.py +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyo +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.la +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so +%%LIRC%%lib/rhythmbox/plugins/rblirc/lirc.plugin +%%LIRC%%lib/rhythmbox/plugins/rblirc/rhythmbox_lirc_default +%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.plugin +%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.py +%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.pyc +%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.pyo +%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.py +%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.pyo +%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.py +%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.pyo +%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.plugin +%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.py +%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.pyc +%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.pyo +%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.plugin +%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.py +%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.pyc +%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.pyo +%%VISUAL%%lib/rhythmbox/plugins/visualizer/libvisualizer.la +%%VISUAL%%lib/rhythmbox/plugins/visualizer/libvisualizer.so +%%VISUAL%%lib/rhythmbox/plugins/visualizer/visualizer.plugin +libdata/pkgconfig/rhythmbox.pc +libexec/rhythmbox-metadata +share/applications/rhythmbox-device.desktop +share/applications/rhythmbox.desktop +share/dbus-1/services/org.gnome.Rhythmbox3.service +share/gir-1.0/MPID-3.0.gir +share/gir-1.0/RB-3.0.gir +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/eu/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/eu/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/eu/figures/rb-notification-window.png +share/gnome/help/rhythmbox/eu/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/eu/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/eu/figures/rb-statusbar.png +share/gnome/help/rhythmbox/eu/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/eu/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/eu/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/eu/figures/rb-toolbar.png +share/gnome/help/rhythmbox/eu/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/eu/figures/rb-window-small.png +share/gnome/help/rhythmbox/eu/figures/rb-window.png +share/gnome/help/rhythmbox/eu/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/gl/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/gl/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/gl/figures/rb-notification-window.png +share/gnome/help/rhythmbox/gl/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/gl/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/gl/figures/rb-statusbar.png +share/gnome/help/rhythmbox/gl/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/gl/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/gl/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/gl/figures/rb-toolbar.png +share/gnome/help/rhythmbox/gl/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/gl/figures/rb-window-small.png +share/gnome/help/rhythmbox/gl/figures/rb-window.png +share/gnome/help/rhythmbox/gl/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/ja/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/ja/figures/rb-notification-window.png +share/gnome/help/rhythmbox/ja/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/ja/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/ja/figures/rb-statusbar.png +share/gnome/help/rhythmbox/ja/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/ja/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/ja/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/ja/figures/rb-toolbar.png +share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/ja/figures/rb-window-small.png +share/gnome/help/rhythmbox/ja/figures/rb-window.png +share/gnome/help/rhythmbox/ja/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/pt/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/pt/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/pt/figures/rb-notification-window.png +share/gnome/help/rhythmbox/pt/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/pt/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/pt/figures/rb-statusbar.png +share/gnome/help/rhythmbox/pt/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/pt/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/pt/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/pt/figures/rb-toolbar.png +share/gnome/help/rhythmbox/pt/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/pt/figures/rb-window-small.png +share/gnome/help/rhythmbox/pt/figures/rb-window.png +share/gnome/help/rhythmbox/pt/rhythmbox.xml +share/gnome/help/rhythmbox/ro/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/ro/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/ro/figures/rb-notification-window.png +share/gnome/help/rhythmbox/ro/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/ro/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/ro/figures/rb-statusbar.png +share/gnome/help/rhythmbox/ro/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/ro/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/ro/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/ro/figures/rb-toolbar.png +share/gnome/help/rhythmbox/ro/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/ro/figures/rb-window-small.png +share/gnome/help/rhythmbox/ro/figures/rb-window.png +share/gnome/help/rhythmbox/ro/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/sl/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/sl/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/sl/figures/rb-notification-window.png +share/gnome/help/rhythmbox/sl/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/sl/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/sl/figures/rb-statusbar.png +share/gnome/help/rhythmbox/sl/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/sl/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/sl/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/sl/figures/rb-toolbar.png +share/gnome/help/rhythmbox/sl/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/sl/figures/rb-window-small.png +share/gnome/help/rhythmbox/sl/figures/rb-window.png +share/gnome/help/rhythmbox/sl/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/uk/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/uk/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/uk/figures/rb-notification-window.png +share/gnome/help/rhythmbox/uk/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/uk/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/uk/figures/rb-statusbar.png +share/gnome/help/rhythmbox/uk/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/uk/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/uk/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/uk/figures/rb-toolbar.png +share/gnome/help/rhythmbox/uk/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/uk/figures/rb-window-small.png +share/gnome/help/rhythmbox/uk/figures/rb-window.png +share/gnome/help/rhythmbox/uk/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/24x24/places/music-library.png +share/icons/hicolor/256x256/apps/rhythmbox.png +share/icons/hicolor/32x32/apps/rhythmbox.png +share/icons/hicolor/48x48/apps/rhythmbox.png +share/icons/hicolor/scalable/apps/rhythmbox-symbolic.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/ca@valencia/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/eo/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/nn/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-eu.omf +share/omf/rhythmbox/rhythmbox-fr.omf +share/omf/rhythmbox/rhythmbox-gl.omf +share/omf/rhythmbox/rhythmbox-it.omf +share/omf/rhythmbox/rhythmbox-ja.omf +share/omf/rhythmbox/rhythmbox-oc.omf +share/omf/rhythmbox/rhythmbox-pt.omf +share/omf/rhythmbox/rhythmbox-ro.omf +share/omf/rhythmbox/rhythmbox-ru.omf +share/omf/rhythmbox/rhythmbox-sl.omf +share/omf/rhythmbox/rhythmbox-sv.omf +share/omf/rhythmbox/rhythmbox-uk.omf +share/omf/rhythmbox/rhythmbox-zh_CN.omf +%%DATADIR%%/create-playlist.ui +%%DATADIR%%/general-prefs.ui +%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-duplicate.png +%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-duplicate.svg +%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-new.png +%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-new.svg +%%DATADIR%%/icons/hicolor/16x16/actions/internet-radio-new.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-eject.png +%%DATADIR%%/icons/hicolor/16x16/actions/playlist-automatic-new.png +%%DATADIR%%/icons/hicolor/16x16/actions/playlist-new.png +%%DATADIR%%/icons/hicolor/16x16/actions/podcast-new.png +%%DATADIR%%/icons/hicolor/16x16/places/library-internet-radio.png +%%DATADIR%%/icons/hicolor/16x16/places/library-podcast.png +%%DATADIR%%/icons/hicolor/16x16/places/music-library.png +%%DATADIR%%/icons/hicolor/16x16/places/playlist-automatic.png +%%DATADIR%%/icons/hicolor/16x16/places/playlist.png +%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-no-star.png +%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-set-star.png +%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-unset-star.png +%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-duplicate.png +%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-duplicate.svg +%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-new.png +%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-new.svg +%%DATADIR%%/icons/hicolor/22x22/actions/internet-radio-new.png +%%DATADIR%%/icons/hicolor/22x22/actions/playlist-automatic-new.png +%%DATADIR%%/icons/hicolor/22x22/actions/playlist-new.png +%%DATADIR%%/icons/hicolor/22x22/actions/podcast-new.png +%%DATADIR%%/icons/hicolor/22x22/places/library-internet-radio.png +%%DATADIR%%/icons/hicolor/22x22/places/library-podcast.png +%%DATADIR%%/icons/hicolor/22x22/places/playlist-automatic.png +%%DATADIR%%/icons/hicolor/22x22/places/playlist.png +%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-duplicate.png +%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-duplicate.svg +%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-new.png +%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-new.svg +%%DATADIR%%/icons/hicolor/32x32/actions/internet-radio-new.png +%%DATADIR%%/icons/hicolor/32x32/actions/playlist-automatic-new.png +%%DATADIR%%/icons/hicolor/32x32/actions/playlist-new.png +%%DATADIR%%/icons/hicolor/32x32/places/library-internet-radio.png +%%DATADIR%%/icons/hicolor/32x32/places/playlist-automatic.png +%%DATADIR%%/icons/hicolor/32x32/places/playlist.png +%%DATADIR%%/icons/hicolor/scalable/actions/audio-cd-duplicate.svg +%%DATADIR%%/icons/hicolor/scalable/actions/audio-cd-new.svg +%%DATADIR%%/icons/hicolor/scalable/actions/internet-radio-new.svg +%%DATADIR%%/icons/hicolor/scalable/actions/playlist-automatic-new.svg +%%DATADIR%%/icons/hicolor/scalable/actions/playlist-new.svg +%%DATADIR%%/icons/hicolor/scalable/places/library-internet-radio.svg +%%DATADIR%%/icons/hicolor/scalable/places/playlist-automatic.svg +%%DATADIR%%/icons/hicolor/scalable/places/playlist.svg +%%DATADIR%%/library-prefs.ui +%%DATADIR%%/media-player-properties.ui +%%DATADIR%%/playback-prefs.ui +%%DATADIR%%/playlist-save.ui +%%DATADIR%%/playlists.xml +%%PYTHON%%%%DATADIR%%/plugins/artdisplay/lastfm_red_small.png +%%PYTHON%%%%DATADIR%%/plugins/artdisplay/rhythmbox-missing-artwork.svg +%%DATADIR%%/plugins/audiocd/album-info.ui +%%DATADIR%%/plugins/audiocd/audiocd-ui.xml +%%DATADIR%%/plugins/audiocd/multiple-album.ui +%%DATADIR%%/plugins/audioscrobbler/Last.fm-icon.png +%%DATADIR%%/plugins/audioscrobbler/Libre.fm-icon.png +%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-preferences.ui +%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-profile-ui.xml +%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-profile.ui +%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-radio-ui.xml +%%PYTHON%%%%DATADIR%%/plugins/context/img/Allmusic16x16.png +%%PYTHON%%%%DATADIR%%/plugins/context/img/Discogs16x16.png +%%PYTHON%%%%DATADIR%%/plugins/context/img/Wikipedia16x16.png +%%PYTHON%%%%DATADIR%%/plugins/context/img/lastfm.png +%%PYTHON%%%%DATADIR%%/plugins/context/img/spinner.gif +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/album-tmpl.html +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/artist-tmpl.html +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/links-tmpl.html +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/loading.html +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/lyrics-tmpl.html +%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/main.css +%%DATADIR%%/plugins/fmradio/fmradio-ui.xml +%%DATADIR%%/plugins/generic-player/generic-player-info.ui +%%DATADIR%%/plugins/generic-player/generic-player-ui.xml +%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-info.ui +%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-init.ui +%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-ui.xml +%%DATADIR%%/plugins/iradio/iradio-initial.xspf +%%DATADIR%%/plugins/iradio/iradio-ui.xml +%%PYTHON%%%%DATADIR%%/plugins/lyrics/lyrics-prefs.ui +%%LIRC%%%%DATADIR%%/plugins/rblirc/rhythmbox_lirc_default +%%DATADIR%%/plugins/iradio/station-properties.ui +%%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-info.ui +%%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-ui.xml +%%PYTHON%%%%DATADIR%%/plugins/replaygain/replaygain-prefs.ui +%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-active.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-disabled.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-focus.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-hover.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/button.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/visualizer-box.png +%%VISUAL%%%%DATADIR%%/plugins/visualizer/visualizer.css +%%DATADIR%%/podcast-feed-properties.ui +%%DATADIR%%/podcast-prefs.ui +%%DATADIR%%/podcast-properties.ui +%%DATADIR%%/rhythmbox-ui.xml +%%DATADIR%%/rhythmbox.gep +%%DATADIR%%/song-info-multiple.ui +%%DATADIR%%/song-info.ui +%%DATADIR%%/sync-dialog.ui +%%DATADIR%%/sync-state.ui +%%DATADIR%%/uri-new.ui +%%LIRC%%%%DATADIR%%/plugins/rblirc +%%VISUAL%%@dirrm %%DATADIR%%/plugins/visualizer +%%PYTHON%%@dirrm %%DATADIR%%/plugins/replaygain +%%MTP%%@dirrm %%DATADIR%%/plugins/mtpdevice +%%PYTHON%%@dirrm %%DATADIR%%/plugins/lyrics +@dirrm %%DATADIR%%/plugins/iradio +%%IPOD%%@dirrm %%DATADIR%%/plugins/ipod +@dirrm %%DATADIR%%/plugins/generic-player +@dirrm %%DATADIR%%/plugins/fmradio +%%PYTHON%%@dirrm %%DATADIR%%/plugins/context/tmpl +%%PYTHON%%@dirrm %%DATADIR%%/plugins/context/img +%%PYTHON%%@dirrm %%DATADIR%%/plugins/context +@dirrm %%DATADIR%%/plugins/audioscrobbler +@dirrm %%DATADIR%%/plugins/audiocd +%%PYTHON%%@dirrm %%DATADIR%%/plugins/artdisplay +@dirrm %%DATADIR%%/plugins +@dirrm %%DATADIR%%/icons/hicolor/scalable/places +@dirrm %%DATADIR%%/icons/hicolor/scalable/actions +@dirrm %%DATADIR%%/icons/hicolor/scalable +@dirrm %%DATADIR%%/icons/hicolor/32x32/places +@dirrm %%DATADIR%%/icons/hicolor/32x32/actions +@dirrm %%DATADIR%%/icons/hicolor/32x32 +@dirrm %%DATADIR%%/icons/hicolor/22x22/places +@dirrm %%DATADIR%%/icons/hicolor/22x22/actions +@dirrm %%DATADIR%%/icons/hicolor/22x22 +@dirrm %%DATADIR%%/icons/hicolor/16x16/status +@dirrm %%DATADIR%%/icons/hicolor/16x16/places +@dirrm %%DATADIR%%/icons/hicolor/16x16/actions +@dirrm %%DATADIR%%/icons/hicolor/16x16 +@dirrm %%DATADIR%%/icons/hicolor +@dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%% +@dirrm share/omf/rhythmbox +@dirrm share/gnome/help/rhythmbox/zh_CN/figures +@dirrm share/gnome/help/rhythmbox/zh_CN +@dirrm share/gnome/help/rhythmbox/uk/figures +@dirrm share/gnome/help/rhythmbox/uk +@dirrm share/gnome/help/rhythmbox/sv/figures +@dirrm share/gnome/help/rhythmbox/sv +@dirrm share/gnome/help/rhythmbox/sl/figures +@dirrm share/gnome/help/rhythmbox/sl +@dirrm share/gnome/help/rhythmbox/ru/figures +@dirrm share/gnome/help/rhythmbox/ru +@dirrm share/gnome/help/rhythmbox/ro/figures +@dirrm share/gnome/help/rhythmbox/ro +@dirrm share/gnome/help/rhythmbox/pt/figures +@dirrm share/gnome/help/rhythmbox/pt +@dirrm share/gnome/help/rhythmbox/oc/figures +@dirrm share/gnome/help/rhythmbox/oc +@dirrm share/gnome/help/rhythmbox/ja/figures +@dirrm share/gnome/help/rhythmbox/ja +@dirrm share/gnome/help/rhythmbox/it/figures +@dirrm share/gnome/help/rhythmbox/it +@dirrm share/gnome/help/rhythmbox/gl/figures +@dirrm share/gnome/help/rhythmbox/gl +@dirrm share/gnome/help/rhythmbox/fr/figures +@dirrm share/gnome/help/rhythmbox/fr +@dirrm share/gnome/help/rhythmbox/eu/figures +@dirrm share/gnome/help/rhythmbox/eu +@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/de/figures +@dirrm share/gnome/help/rhythmbox/de +@dirrm share/gnome/help/rhythmbox/da/figures +@dirrm share/gnome/help/rhythmbox/da +@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 +@dirrmtry share/applications +%%VISUAL%%@dirrm lib/rhythmbox/plugins/visualizer +%%PYTHON%%@dirrm lib/rhythmbox/plugins/sendto +%%PYTHON%%@dirrm lib/rhythmbox/plugins/replaygain +%%PYTHON%%@dirrm lib/rhythmbox/plugins/rbzeitgeist +%%LIRC%%@dirrm lib/rhythmbox/plugins/rblirc +%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb +%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console +@dirrm lib/rhythmbox/plugins/power-manager +%%NOTIFY%%@dirrm lib/rhythmbox/plugins/notification +%%MTP%%@dirrm lib/rhythmbox/plugins/mtpdevice +@dirrm lib/rhythmbox/plugins/mpris +@dirrm lib/rhythmbox/plugins/mmkeys +%%PYTHON%%@dirrm lib/rhythmbox/plugins/lyrics +@dirrm lib/rhythmbox/plugins/iradio +%%IPOD%%@dirrm lib/rhythmbox/plugins/ipod +%%PYTHON%%@dirrm lib/rhythmbox/plugins/im-status +@dirrm lib/rhythmbox/plugins/generic-player +@dirrm lib/rhythmbox/plugins/fmradio +@dirrm lib/rhythmbox/plugins/dbus-media-server +%%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 +@dirrm include/rhythmbox/widgets +@dirrm include/rhythmbox/sources +@dirrm include/rhythmbox/shell +@dirrm include/rhythmbox/rhythmdb +@dirrm include/rhythmbox/podcast +@dirrm include/rhythmbox/plugins +@dirrm include/rhythmbox/metadata +@dirrm include/rhythmbox/lib/libmediaplayerid +@dirrm include/rhythmbox/lib +@dirrm include/rhythmbox/backends +@dirrm include/rhythmbox +@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/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia +@dirrmtry share/locale/bn_IN/LC_MESSAGES +@dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as diff --git a/audio/rhythmbox3/Makefile b/audio/rhythmbox3/Makefile deleted file mode 100644 index f1273e940..000000000 --- a/audio/rhythmbox3/Makefile +++ /dev/null @@ -1,156 +0,0 @@ -# Created by: Joe Marcus Clarke -# $FreeBSD$ -# $MCom: ports/trunk/audio/rhythmbox3/Makefile 18610 2013-06-30 16:33:05Z marcus $ - -PORTNAME= rhythmbox -PORTVERSION= 2.90.1.1 -PORTREVISION= 1 -CATEGORIES= audio gnome -#MASTER_SITES= GNOME -MASTER_SITES= LOCAL/kwm -PKGNAMESUFFIX= 3 -DIST_SUBDIR= gnome3 - -MAINTAINER= marcus@FreeBSD.org -COMMENT= Audio player for GNOME - -BUILD_DEPENDS= ${LOCALBASE}/include/linux/videodev2.h:${PORTSDIR}/multimedia/v4l_compat -LIB_DEPENDS= libmusicbrainz3.so:${PORTSDIR}/audio/libmusicbrainz3 \ - libtotem-plparser.so:${PORTSDIR}/multimedia/totem-pl-parser \ - libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib \ - libpeas-1.0.so:${PORTSDIR}/devel/libpeas \ - libjson-glib-1.0.so:${PORTSDIR}/devel/json-glib \ - libsoup-gnome-2.4.so:${PORTSDIR}/devel/libsoup-gnome \ - libgnome-media-profiles-3.0.so:${PORTSDIR}/multimedia/libgnome-media-profiles \ - libbrasero-media3.so:${PORTSDIR}/sysutils/brasero3 - -CONFLICTS= rhythmbox-0.[0-9]* - -USE_BZIP2= yes -USES= gettext gmake pathfix pkgconfig -INSTALLS_OMF= yes -USE_XORG= ice xproto -USE_GNOME= intlhack gnomeprefix gtk30 introspection:build -WANT_GNOME= yes -USE_GSTREAMER= flac mp3 jpeg cdparanoia vorbis -USE_AUTOTOOLS= libtool -CONFIGURE_ARGS= --disable-vala -INSTALLS_ICONS= yes -INSTALLS_OMF= yes -USE_LDCONFIG= yes -CPPFLAGS+= -I${LOCALBASE}/include -LDFLAGS+= -L${LOCALBASE}/lib - -GLIB_SCHEMAS= org.gnome.rhythmbox.gschema.xml - -OPTIONS_DEFINE= IPOD FAAD NOTIFY PYTHON LIRC MTP WEBKIT ITMS_PLUGIN -OPTIONS_DEFAULT=NOTIFY PYTHON -IPOD_DESC= iPod support -ITMS_PLUGIN_DESC=iTunes browser plugin -WEBKIT_DESC= HTML view support -#DAAP "Enable iTunes music sharing" off \ -#VISUAL "Enable clutter visualizer plugin" on \ - -MAN1= rhythmbox-client.1 rhythmbox.1 - -.include - -.if ${PORT_OPTIONS:MFAAD} -USE_GSTREAMER+= faad -.endif - -.if ${PORT_OPTIONS:MFAAD} -LIB_DEPENDS+= liblirc_client.so:${PORTSDIR}/comms/lirc -PLIST_SUB+= LIRC="" -CONFIGURE_ARGS+=--enable-lirc -.else -CONFIGURE_ARGS+=--disable-lirc -PLIST_SUB+= LIRC="@comment " -.endif - -.if ${PORT_OPTIONS:MMTP} -LIB_DEPENDS+= libmtp.so:${PORTSDIR}/audio/libmtp \ - libhal.so:${PORTSDIR}/sysutils/hal -PLIST_SUB+= MTP="" -CONFIGURE_ARGS+=--with-mtp -.else -CONFIGURE_ARGS+=--without-mtp -PLIST_SUB+= MTP="@comment " -.endif - -#.if defined(WITH_DAAP) -# needs http://www.flyn.org/projects/libdmapsharing/ -#CONFIGURE_ARGS+=--enable-daap --with-mdns=avahi -#LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ -# gnome-keyring.0:${PORTSDIR}/security/libgnome-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 ${PORT_OPTIONS:MNOTIFY} -LIB_DEPENDS+= libnotify.so:${PORTSDIR}/devel/libnotify -PLIST_SUB+= NOTIFY="" -.else -CONFIGURE_ARGS+=--disable-libnotify -PLIST_SUB+= NOTIFY="@comment " -.endif - -.if ${PORT_OPTIONS:MPYTHON} -USE_PYTHON= yes -USE_GSTREAMER+= python -CONFIGURE_ARGS+=--enable-python -PLIST_SUB+= PYTHON="" -.else -CONFIGURE_ARGS+=--disable-python -PLIST_SUB+= PYTHON="@comment " -.endif - -.if ${PORT_OPTIONS:MIPOD} -LIB_DEPENDS+= libgpod.so:${PORTSDIR}/audio/libgpod -CONFIGURE_ARGS+=--with-ipod -PLIST_SUB+= IPOD="" -.else -CONFIGURE_ARGS+=--without-ipod -PLIST_SUB+= IPOD="@comment " -.endif - -.if ${PORT_OPTIONS:MITMS_PLUGIN} -# see if we can run this plugin from mozilla .. -USE_WEBPLUGINS= webkit-gtk3 -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 - -.if ${PORT_OPTIONS:MWEBKIT} -LIB_DEPENDS+= libwebkitgtk-3.0.so:${PORTSDIR}/www/webkit-gtk3 -CONFIGURE_ARGS+=--with-webkit -PLIST_SUB+= WEBKIT="" -.else -CONFIGURE_ARGS+=--without-webkit -PLIST_SUB+= WEBKIT="@comment " -.endif - -#.if defined(WITH_VISUAL) -#LIB_DEPENDS+= mx-1.0.2:${PORTSDIR}/x11-toolkits/mx \ -# clutter-gtk-1.0.0:${PORTSDIR}/graphics/clutter-gtk3 \ -# clutter-gst-1.0.0:${PORTSDIR}/multimedia/clutter-gst -#CONFIGURE_ARGS+=--enable-visualizer -#PLIST_SUB+= VISUAL="" -#.else -CONFIGURE_ARGS+=--enable-visualizer=no -PLIST_SUB+= VISUAL="@comment " -#.endif - -.include diff --git a/audio/rhythmbox3/distinfo b/audio/rhythmbox3/distinfo deleted file mode 100644 index be6bba89e..000000000 --- a/audio/rhythmbox3/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -SHA256 (gnome3/rhythmbox-2.90.1.1.tar.bz2) = 187fe6f60cf9991d0dd2a8b55671356ed2b5399f998aadeb323adf3bf4a2ec05 -SIZE (gnome3/rhythmbox-2.90.1.1.tar.bz2) = 11181310 diff --git a/audio/rhythmbox3/files/patch-configure b/audio/rhythmbox3/files/patch-configure deleted file mode 100644 index 53ec68b22..000000000 --- a/audio/rhythmbox3/files/patch-configure +++ /dev/null @@ -1,11 +0,0 @@ ---- configure.orig 2011-04-23 19:57:24.000000000 +0200 -+++ configure 2011-04-23 20:27:33.000000000 +0200 -@@ -20194,7 +20194,7 @@ - fi - - --MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR:="\${libdir}/mozilla/plugins"}" -+MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR}" - - - if test x$enable_browser_plugin = xyes; then diff --git a/audio/rhythmbox3/pkg-descr b/audio/rhythmbox3/pkg-descr deleted file mode 100644 index 9c4ecf6ca..000000000 --- a/audio/rhythmbox3/pkg-descr +++ /dev/null @@ -1,5 +0,0 @@ -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/rhythmbox3/pkg-plist b/audio/rhythmbox3/pkg-plist deleted file mode 100644 index c2d4ba177..000000000 --- a/audio/rhythmbox3/pkg-plist +++ /dev/null @@ -1,857 +0,0 @@ -bin/rhythmbox -bin/rhythmbox-client -include/rhythmbox/backends/rb-encoder.h -include/rhythmbox/backends/rb-player-gst-data-tee.h -include/rhythmbox/backends/rb-player-gst-filter.h -include/rhythmbox/backends/rb-player-gst-tee.h -include/rhythmbox/backends/rb-player.h -include/rhythmbox/lib/libmediaplayerid/mediaplayerid.h -include/rhythmbox/lib/rb-builder-helpers.h -include/rhythmbox/lib/rb-debug.h -include/rhythmbox/lib/rb-file-helpers.h -include/rhythmbox/lib/rb-stock-icons.h -include/rhythmbox/lib/rb-string-value-map.h -include/rhythmbox/lib/rb-util.h -include/rhythmbox/metadata/rb-metadata.h -include/rhythmbox/plugins/rb-plugin-macros.h -include/rhythmbox/podcast/rb-podcast-entry-types.h -include/rhythmbox/podcast/rb-podcast-manager.h -include/rhythmbox/podcast/rb-podcast-parse.h -include/rhythmbox/rhythmdb/rb-refstring.h -include/rhythmbox/rhythmdb/rhythmdb-entry-type.h -include/rhythmbox/rhythmdb/rhythmdb-entry.h -include/rhythmbox/rhythmdb/rhythmdb-import-job.h -include/rhythmbox/rhythmdb/rhythmdb-property-model.h -include/rhythmbox/rhythmdb/rhythmdb-query-model.h -include/rhythmbox/rhythmdb/rhythmdb-query-result-list.h -include/rhythmbox/rhythmdb/rhythmdb-query-results.h -include/rhythmbox/rhythmdb/rhythmdb.h -include/rhythmbox/shell/rb-history.h -include/rhythmbox/shell/rb-play-order.h -include/rhythmbox/shell/rb-playlist-manager.h -include/rhythmbox/shell/rb-removable-media-manager.h -include/rhythmbox/shell/rb-shell-player.h -include/rhythmbox/shell/rb-shell-preferences.h -include/rhythmbox/shell/rb-shell.h -include/rhythmbox/shell/rb-track-transfer-batch.h -include/rhythmbox/shell/rb-track-transfer-queue.h -include/rhythmbox/sources/rb-auto-playlist-source.h -include/rhythmbox/sources/rb-browser-source.h -include/rhythmbox/sources/rb-display-page-group.h -include/rhythmbox/sources/rb-display-page-model.h -include/rhythmbox/sources/rb-display-page-tree.h -include/rhythmbox/sources/rb-display-page.h -include/rhythmbox/sources/rb-media-player-source.h -include/rhythmbox/sources/rb-playlist-source.h -include/rhythmbox/sources/rb-playlist-xml.h -include/rhythmbox/sources/rb-removable-media-source.h -include/rhythmbox/sources/rb-source-search-basic.h -include/rhythmbox/sources/rb-source-search.h -include/rhythmbox/sources/rb-source.h -include/rhythmbox/sources/rb-static-playlist-source.h -include/rhythmbox/sources/rb-streaming-source.h -include/rhythmbox/widgets/rb-alert-dialog.h -include/rhythmbox/widgets/rb-cell-renderer-pixbuf.h -include/rhythmbox/widgets/rb-cell-renderer-rating.h -include/rhythmbox/widgets/rb-dialog.h -include/rhythmbox/widgets/rb-entry-view.h -include/rhythmbox/widgets/rb-library-browser.h -include/rhythmbox/widgets/rb-property-view.h -include/rhythmbox/widgets/rb-rating.h -include/rhythmbox/widgets/rb-segmented-bar.h -include/rhythmbox/widgets/rb-song-info.h -include/rhythmbox/widgets/rb-uri-dialog.h -%%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/girepository-1.0/MPID-3.0.typelib -lib/girepository-1.0/RB-3.0.typelib -lib/librhythmbox-core.la -lib/librhythmbox-core.so -lib/librhythmbox-core.so.4 -%%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/EmbeddedCoverArtSearch.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyo -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LastFMCoverArtSearch.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/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/artdisplay.plugin -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.py -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.pyc -%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.pyo -lib/rhythmbox/plugins/audiocd/audiocd.plugin -lib/rhythmbox/plugins/audiocd/libaudiocd.la -lib/rhythmbox/plugins/audiocd/libaudiocd.so -lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.plugin -lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.la -lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so -lib/rhythmbox/plugins/cd-recorder/cd-recorder.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/LinksTab.py -%%PYTHON%%lib/rhythmbox/plugins/context/LinksTab.pyc -%%PYTHON%%lib/rhythmbox/plugins/context/LinksTab.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/context.plugin -%%PYTHON%%lib/rhythmbox/plugins/context/context.py -%%PYTHON%%lib/rhythmbox/plugins/context/context.pyc -%%PYTHON%%lib/rhythmbox/plugins/context/context.pyo -lib/rhythmbox/plugins/dbus-media-server/dbus-media-server.plugin -lib/rhythmbox/plugins/dbus-media-server/libdbus-media-server.la -lib/rhythmbox/plugins/dbus-media-server/libdbus-media-server.so -lib/rhythmbox/plugins/fmradio/fmradio.plugin -lib/rhythmbox/plugins/fmradio/libfmradio.la -lib/rhythmbox/plugins/fmradio/libfmradio.so -lib/rhythmbox/plugins/generic-player/generic-player.plugin -lib/rhythmbox/plugins/generic-player/libgeneric-player.la -lib/rhythmbox/plugins/generic-player/libgeneric-player.so -%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.plugin -%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.py -%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.pyc -%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.pyo -%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.plugin -%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.la -%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so -lib/rhythmbox/plugins/iradio/iradio.plugin -lib/rhythmbox/plugins/iradio/libiradio.la -lib/rhythmbox/plugins/iradio/libiradio.so -%%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/DarkLyricsParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/DarkLyricsParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/DarkLyricsParser.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/LyricsSites.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsSites.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsSites.pyo -%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/TerraParser.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/lyrics.plugin -%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.py -%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyc -%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.pyo -lib/rhythmbox/plugins/mmkeys/libmmkeys.la -lib/rhythmbox/plugins/mmkeys/libmmkeys.so -lib/rhythmbox/plugins/mmkeys/mmkeys.plugin -lib/rhythmbox/plugins/mpris/libmpris.la -lib/rhythmbox/plugins/mpris/libmpris.so -lib/rhythmbox/plugins/mpris/mpris.plugin -%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.la -%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so -%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.plugin -%%NOTIFY%%lib/rhythmbox/plugins/notification/libnotification.la -%%NOTIFY%%lib/rhythmbox/plugins/notification/libnotification.so -%%NOTIFY%%lib/rhythmbox/plugins/notification/notification.plugin -lib/rhythmbox/plugins/power-manager/libpower-manager.la -lib/rhythmbox/plugins/power-manager/libpower-manager.so -lib/rhythmbox/plugins/power-manager/power-manager.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.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/rb.plugin -%%PYTHON%%lib/rhythmbox/plugins/rb/rb.py -%%PYTHON%%lib/rhythmbox/plugins/rb/rb.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/rb.pyo -%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.py -%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyc -%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyo -%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.la -%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so -%%LIRC%%lib/rhythmbox/plugins/rblirc/lirc.plugin -%%LIRC%%lib/rhythmbox/plugins/rblirc/rhythmbox_lirc_default -%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.plugin -%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.py -%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.pyc -%%PYTHON%%lib/rhythmbox/plugins/rbzeitgeist/rbzeitgeist.pyo -%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.py -%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/config.pyo -%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.py -%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/player.pyo -%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.plugin -%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.py -%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.pyc -%%PYTHON%%lib/rhythmbox/plugins/replaygain/replaygain.pyo -%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.plugin -%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.py -%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.pyc -%%PYTHON%%lib/rhythmbox/plugins/sendto/sendto.pyo -%%VISUAL%%lib/rhythmbox/plugins/visualizer/libvisualizer.la -%%VISUAL%%lib/rhythmbox/plugins/visualizer/libvisualizer.so -%%VISUAL%%lib/rhythmbox/plugins/visualizer/visualizer.plugin -libdata/pkgconfig/rhythmbox.pc -libexec/rhythmbox-metadata -share/applications/rhythmbox-device.desktop -share/applications/rhythmbox.desktop -share/dbus-1/services/org.gnome.Rhythmbox3.service -share/gir-1.0/MPID-3.0.gir -share/gir-1.0/RB-3.0.gir -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/eu/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/eu/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/eu/figures/rb-notification-window.png -share/gnome/help/rhythmbox/eu/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/eu/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/eu/figures/rb-statusbar.png -share/gnome/help/rhythmbox/eu/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/eu/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/eu/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/eu/figures/rb-toolbar.png -share/gnome/help/rhythmbox/eu/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/eu/figures/rb-window-small.png -share/gnome/help/rhythmbox/eu/figures/rb-window.png -share/gnome/help/rhythmbox/eu/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/gl/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/gl/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/gl/figures/rb-notification-window.png -share/gnome/help/rhythmbox/gl/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/gl/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/gl/figures/rb-statusbar.png -share/gnome/help/rhythmbox/gl/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/gl/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/gl/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/gl/figures/rb-toolbar.png -share/gnome/help/rhythmbox/gl/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/gl/figures/rb-window-small.png -share/gnome/help/rhythmbox/gl/figures/rb-window.png -share/gnome/help/rhythmbox/gl/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/ja/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-window.png -share/gnome/help/rhythmbox/ja/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/ja/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/ja/figures/rb-statusbar.png -share/gnome/help/rhythmbox/ja/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/ja/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/ja/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/ja/figures/rb-toolbar.png -share/gnome/help/rhythmbox/ja/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/ja/figures/rb-window-small.png -share/gnome/help/rhythmbox/ja/figures/rb-window.png -share/gnome/help/rhythmbox/ja/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/pt/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/pt/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/pt/figures/rb-notification-window.png -share/gnome/help/rhythmbox/pt/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/pt/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/pt/figures/rb-statusbar.png -share/gnome/help/rhythmbox/pt/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/pt/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/pt/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/pt/figures/rb-toolbar.png -share/gnome/help/rhythmbox/pt/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/pt/figures/rb-window-small.png -share/gnome/help/rhythmbox/pt/figures/rb-window.png -share/gnome/help/rhythmbox/pt/rhythmbox.xml -share/gnome/help/rhythmbox/ro/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/ro/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/ro/figures/rb-notification-window.png -share/gnome/help/rhythmbox/ro/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/ro/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/ro/figures/rb-statusbar.png -share/gnome/help/rhythmbox/ro/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/ro/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/ro/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/ro/figures/rb-toolbar.png -share/gnome/help/rhythmbox/ro/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/ro/figures/rb-window-small.png -share/gnome/help/rhythmbox/ro/figures/rb-window.png -share/gnome/help/rhythmbox/ro/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/sl/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/sl/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/sl/figures/rb-notification-window.png -share/gnome/help/rhythmbox/sl/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/sl/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/sl/figures/rb-statusbar.png -share/gnome/help/rhythmbox/sl/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/sl/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/sl/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/sl/figures/rb-toolbar.png -share/gnome/help/rhythmbox/sl/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/sl/figures/rb-window-small.png -share/gnome/help/rhythmbox/sl/figures/rb-window.png -share/gnome/help/rhythmbox/sl/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/uk/figures/rb-iradio-main.png -share/gnome/help/rhythmbox/uk/figures/rb-notification-area-menu.png -share/gnome/help/rhythmbox/uk/figures/rb-notification-window.png -share/gnome/help/rhythmbox/uk/figures/rb-notification-zone.png -share/gnome/help/rhythmbox/uk/figures/rb-podcast-main.png -share/gnome/help/rhythmbox/uk/figures/rb-statusbar.png -share/gnome/help/rhythmbox/uk/figures/rb-toolbar-prevplaynext.png -share/gnome/help/rhythmbox/uk/figures/rb-toolbar-repeat.png -share/gnome/help/rhythmbox/uk/figures/rb-toolbar-shuffle.png -share/gnome/help/rhythmbox/uk/figures/rb-toolbar.png -share/gnome/help/rhythmbox/uk/figures/rb-volume-changer.png -share/gnome/help/rhythmbox/uk/figures/rb-window-small.png -share/gnome/help/rhythmbox/uk/figures/rb-window.png -share/gnome/help/rhythmbox/uk/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/24x24/places/music-library.png -share/icons/hicolor/256x256/apps/rhythmbox.png -share/icons/hicolor/32x32/apps/rhythmbox.png -share/icons/hicolor/48x48/apps/rhythmbox.png -share/icons/hicolor/scalable/apps/rhythmbox-symbolic.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/ca@valencia/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/eo/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/nn/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-eu.omf -share/omf/rhythmbox/rhythmbox-fr.omf -share/omf/rhythmbox/rhythmbox-gl.omf -share/omf/rhythmbox/rhythmbox-it.omf -share/omf/rhythmbox/rhythmbox-ja.omf -share/omf/rhythmbox/rhythmbox-oc.omf -share/omf/rhythmbox/rhythmbox-pt.omf -share/omf/rhythmbox/rhythmbox-ro.omf -share/omf/rhythmbox/rhythmbox-ru.omf -share/omf/rhythmbox/rhythmbox-sl.omf -share/omf/rhythmbox/rhythmbox-sv.omf -share/omf/rhythmbox/rhythmbox-uk.omf -share/omf/rhythmbox/rhythmbox-zh_CN.omf -%%DATADIR%%/create-playlist.ui -%%DATADIR%%/general-prefs.ui -%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-duplicate.png -%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-duplicate.svg -%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/audio-cd-new.svg -%%DATADIR%%/icons/hicolor/16x16/actions/internet-radio-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/media-eject.png -%%DATADIR%%/icons/hicolor/16x16/actions/playlist-automatic-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/playlist-new.png -%%DATADIR%%/icons/hicolor/16x16/actions/podcast-new.png -%%DATADIR%%/icons/hicolor/16x16/places/library-internet-radio.png -%%DATADIR%%/icons/hicolor/16x16/places/library-podcast.png -%%DATADIR%%/icons/hicolor/16x16/places/music-library.png -%%DATADIR%%/icons/hicolor/16x16/places/playlist-automatic.png -%%DATADIR%%/icons/hicolor/16x16/places/playlist.png -%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-no-star.png -%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-set-star.png -%%DATADIR%%/icons/hicolor/16x16/status/rhythmbox-unset-star.png -%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-duplicate.png -%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-duplicate.svg -%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/audio-cd-new.svg -%%DATADIR%%/icons/hicolor/22x22/actions/internet-radio-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/playlist-automatic-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/playlist-new.png -%%DATADIR%%/icons/hicolor/22x22/actions/podcast-new.png -%%DATADIR%%/icons/hicolor/22x22/places/library-internet-radio.png -%%DATADIR%%/icons/hicolor/22x22/places/library-podcast.png -%%DATADIR%%/icons/hicolor/22x22/places/playlist-automatic.png -%%DATADIR%%/icons/hicolor/22x22/places/playlist.png -%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-duplicate.png -%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-duplicate.svg -%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/audio-cd-new.svg -%%DATADIR%%/icons/hicolor/32x32/actions/internet-radio-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/playlist-automatic-new.png -%%DATADIR%%/icons/hicolor/32x32/actions/playlist-new.png -%%DATADIR%%/icons/hicolor/32x32/places/library-internet-radio.png -%%DATADIR%%/icons/hicolor/32x32/places/playlist-automatic.png -%%DATADIR%%/icons/hicolor/32x32/places/playlist.png -%%DATADIR%%/icons/hicolor/scalable/actions/audio-cd-duplicate.svg -%%DATADIR%%/icons/hicolor/scalable/actions/audio-cd-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/internet-radio-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/playlist-automatic-new.svg -%%DATADIR%%/icons/hicolor/scalable/actions/playlist-new.svg -%%DATADIR%%/icons/hicolor/scalable/places/library-internet-radio.svg -%%DATADIR%%/icons/hicolor/scalable/places/playlist-automatic.svg -%%DATADIR%%/icons/hicolor/scalable/places/playlist.svg -%%DATADIR%%/library-prefs.ui -%%DATADIR%%/media-player-properties.ui -%%DATADIR%%/playback-prefs.ui -%%DATADIR%%/playlist-save.ui -%%DATADIR%%/playlists.xml -%%PYTHON%%%%DATADIR%%/plugins/artdisplay/lastfm_red_small.png -%%PYTHON%%%%DATADIR%%/plugins/artdisplay/rhythmbox-missing-artwork.svg -%%DATADIR%%/plugins/audiocd/album-info.ui -%%DATADIR%%/plugins/audiocd/audiocd-ui.xml -%%DATADIR%%/plugins/audiocd/multiple-album.ui -%%DATADIR%%/plugins/audioscrobbler/Last.fm-icon.png -%%DATADIR%%/plugins/audioscrobbler/Libre.fm-icon.png -%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-preferences.ui -%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-profile-ui.xml -%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-profile.ui -%%DATADIR%%/plugins/audioscrobbler/audioscrobbler-radio-ui.xml -%%PYTHON%%%%DATADIR%%/plugins/context/img/Allmusic16x16.png -%%PYTHON%%%%DATADIR%%/plugins/context/img/Discogs16x16.png -%%PYTHON%%%%DATADIR%%/plugins/context/img/Wikipedia16x16.png -%%PYTHON%%%%DATADIR%%/plugins/context/img/lastfm.png -%%PYTHON%%%%DATADIR%%/plugins/context/img/spinner.gif -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/album-tmpl.html -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/artist-tmpl.html -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/links-tmpl.html -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/loading.html -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/lyrics-tmpl.html -%%PYTHON%%%%DATADIR%%/plugins/context/tmpl/main.css -%%DATADIR%%/plugins/fmradio/fmradio-ui.xml -%%DATADIR%%/plugins/generic-player/generic-player-info.ui -%%DATADIR%%/plugins/generic-player/generic-player-ui.xml -%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-info.ui -%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-init.ui -%%IPOD%%%%DATADIR%%/plugins/ipod/ipod-ui.xml -%%DATADIR%%/plugins/iradio/iradio-initial.xspf -%%DATADIR%%/plugins/iradio/iradio-ui.xml -%%PYTHON%%%%DATADIR%%/plugins/lyrics/lyrics-prefs.ui -%%LIRC%%%%DATADIR%%/plugins/rblirc/rhythmbox_lirc_default -%%DATADIR%%/plugins/iradio/station-properties.ui -%%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-info.ui -%%MTP%%%%DATADIR%%/plugins/mtpdevice/mtp-ui.xml -%%PYTHON%%%%DATADIR%%/plugins/replaygain/replaygain-prefs.ui -%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-active.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-disabled.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-focus.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/button-hover.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/button.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/visualizer-box.png -%%VISUAL%%%%DATADIR%%/plugins/visualizer/visualizer.css -%%DATADIR%%/podcast-feed-properties.ui -%%DATADIR%%/podcast-prefs.ui -%%DATADIR%%/podcast-properties.ui -%%DATADIR%%/rhythmbox-ui.xml -%%DATADIR%%/rhythmbox.gep -%%DATADIR%%/song-info-multiple.ui -%%DATADIR%%/song-info.ui -%%DATADIR%%/sync-dialog.ui -%%DATADIR%%/sync-state.ui -%%DATADIR%%/uri-new.ui -%%LIRC%%%%DATADIR%%/plugins/rblirc -%%VISUAL%%@dirrm %%DATADIR%%/plugins/visualizer -%%PYTHON%%@dirrm %%DATADIR%%/plugins/replaygain -%%MTP%%@dirrm %%DATADIR%%/plugins/mtpdevice -%%PYTHON%%@dirrm %%DATADIR%%/plugins/lyrics -@dirrm %%DATADIR%%/plugins/iradio -%%IPOD%%@dirrm %%DATADIR%%/plugins/ipod -@dirrm %%DATADIR%%/plugins/generic-player -@dirrm %%DATADIR%%/plugins/fmradio -%%PYTHON%%@dirrm %%DATADIR%%/plugins/context/tmpl -%%PYTHON%%@dirrm %%DATADIR%%/plugins/context/img -%%PYTHON%%@dirrm %%DATADIR%%/plugins/context -@dirrm %%DATADIR%%/plugins/audioscrobbler -@dirrm %%DATADIR%%/plugins/audiocd -%%PYTHON%%@dirrm %%DATADIR%%/plugins/artdisplay -@dirrm %%DATADIR%%/plugins -@dirrm %%DATADIR%%/icons/hicolor/scalable/places -@dirrm %%DATADIR%%/icons/hicolor/scalable/actions -@dirrm %%DATADIR%%/icons/hicolor/scalable -@dirrm %%DATADIR%%/icons/hicolor/32x32/places -@dirrm %%DATADIR%%/icons/hicolor/32x32/actions -@dirrm %%DATADIR%%/icons/hicolor/32x32 -@dirrm %%DATADIR%%/icons/hicolor/22x22/places -@dirrm %%DATADIR%%/icons/hicolor/22x22/actions -@dirrm %%DATADIR%%/icons/hicolor/22x22 -@dirrm %%DATADIR%%/icons/hicolor/16x16/status -@dirrm %%DATADIR%%/icons/hicolor/16x16/places -@dirrm %%DATADIR%%/icons/hicolor/16x16/actions -@dirrm %%DATADIR%%/icons/hicolor/16x16 -@dirrm %%DATADIR%%/icons/hicolor -@dirrm %%DATADIR%%/icons -@dirrm %%DATADIR%% -@dirrm share/omf/rhythmbox -@dirrm share/gnome/help/rhythmbox/zh_CN/figures -@dirrm share/gnome/help/rhythmbox/zh_CN -@dirrm share/gnome/help/rhythmbox/uk/figures -@dirrm share/gnome/help/rhythmbox/uk -@dirrm share/gnome/help/rhythmbox/sv/figures -@dirrm share/gnome/help/rhythmbox/sv -@dirrm share/gnome/help/rhythmbox/sl/figures -@dirrm share/gnome/help/rhythmbox/sl -@dirrm share/gnome/help/rhythmbox/ru/figures -@dirrm share/gnome/help/rhythmbox/ru -@dirrm share/gnome/help/rhythmbox/ro/figures -@dirrm share/gnome/help/rhythmbox/ro -@dirrm share/gnome/help/rhythmbox/pt/figures -@dirrm share/gnome/help/rhythmbox/pt -@dirrm share/gnome/help/rhythmbox/oc/figures -@dirrm share/gnome/help/rhythmbox/oc -@dirrm share/gnome/help/rhythmbox/ja/figures -@dirrm share/gnome/help/rhythmbox/ja -@dirrm share/gnome/help/rhythmbox/it/figures -@dirrm share/gnome/help/rhythmbox/it -@dirrm share/gnome/help/rhythmbox/gl/figures -@dirrm share/gnome/help/rhythmbox/gl -@dirrm share/gnome/help/rhythmbox/fr/figures -@dirrm share/gnome/help/rhythmbox/fr -@dirrm share/gnome/help/rhythmbox/eu/figures -@dirrm share/gnome/help/rhythmbox/eu -@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/de/figures -@dirrm share/gnome/help/rhythmbox/de -@dirrm share/gnome/help/rhythmbox/da/figures -@dirrm share/gnome/help/rhythmbox/da -@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 -@dirrmtry share/applications -%%VISUAL%%@dirrm lib/rhythmbox/plugins/visualizer -%%PYTHON%%@dirrm lib/rhythmbox/plugins/sendto -%%PYTHON%%@dirrm lib/rhythmbox/plugins/replaygain -%%PYTHON%%@dirrm lib/rhythmbox/plugins/rbzeitgeist -%%LIRC%%@dirrm lib/rhythmbox/plugins/rblirc -%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb -%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console -@dirrm lib/rhythmbox/plugins/power-manager -%%NOTIFY%%@dirrm lib/rhythmbox/plugins/notification -%%MTP%%@dirrm lib/rhythmbox/plugins/mtpdevice -@dirrm lib/rhythmbox/plugins/mpris -@dirrm lib/rhythmbox/plugins/mmkeys -%%PYTHON%%@dirrm lib/rhythmbox/plugins/lyrics -@dirrm lib/rhythmbox/plugins/iradio -%%IPOD%%@dirrm lib/rhythmbox/plugins/ipod -%%PYTHON%%@dirrm lib/rhythmbox/plugins/im-status -@dirrm lib/rhythmbox/plugins/generic-player -@dirrm lib/rhythmbox/plugins/fmradio -@dirrm lib/rhythmbox/plugins/dbus-media-server -%%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 -@dirrm include/rhythmbox/widgets -@dirrm include/rhythmbox/sources -@dirrm include/rhythmbox/shell -@dirrm include/rhythmbox/rhythmdb -@dirrm include/rhythmbox/podcast -@dirrm include/rhythmbox/plugins -@dirrm include/rhythmbox/metadata -@dirrm include/rhythmbox/lib/libmediaplayerid -@dirrm include/rhythmbox/lib -@dirrm include/rhythmbox/backends -@dirrm include/rhythmbox -@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/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as -- cgit v1.2.3