From 01cad24c7657e2cd4b56b380b7dd3c2b93454dda Mon Sep 17 00:00:00 2001 From: kwm Date: Sun, 19 Jul 2009 08:54:53 +0000 Subject: Chase brasero lib bump. git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12465 df743ca5-7f9a-e211-a948-0013205c9059 --- audio/rhythmbox/Makefile | 139 +++++ audio/rhythmbox/distinfo | 3 + audio/rhythmbox/files/patch-configure | 11 + .../files/patch-plugins_daap_rb-daap-src.c | 26 + .../files/patch-podcast_rb-podcast-parse.h | 10 + audio/rhythmbox/pkg-descr | 5 + audio/rhythmbox/pkg-plist | 677 +++++++++++++++++++++ audio/sound-juicer/Makefile | 51 ++ audio/sound-juicer/distinfo | 3 + audio/sound-juicer/pkg-descr | 5 + audio/sound-juicer/pkg-plist | 230 +++++++ 11 files changed, 1160 insertions(+) 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/files/patch-plugins_daap_rb-daap-src.c create mode 100644 audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h create mode 100644 audio/rhythmbox/pkg-descr create mode 100644 audio/rhythmbox/pkg-plist create mode 100644 audio/sound-juicer/Makefile create mode 100644 audio/sound-juicer/distinfo create mode 100644 audio/sound-juicer/pkg-descr create mode 100644 audio/sound-juicer/pkg-plist diff --git a/audio/rhythmbox/Makefile b/audio/rhythmbox/Makefile new file mode 100644 index 000000000..92f3d81b5 --- /dev/null +++ b/audio/rhythmbox/Makefile @@ -0,0 +1,139 @@ +# New ports collection makefile for: rhythmbox +# Date created: 17 August 2003 +# Whom: Joe Marcus Clarke +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= rhythmbox +PORTVERSION= 0.12.3 +PORTREVISION= 1 +CATEGORIES= audio gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= marcus@FreeBSD.org +COMMENT= Audio player for GNOME + +LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ + musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ + id3tag.0:${PORTSDIR}/audio/libid3tag \ + totem-plparser.12:${PORTSDIR}/multimedia/totem-pl-parser \ + dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ + sexy.2:${PORTSDIR}/x11-toolkits/libsexy \ + soup-2.4.1:${PORTSDIR}/devel/libsoup \ + gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ + brasero-media.2:${PORTSDIR}/sysutils/brasero + +USE_BZIP2= yes +USE_GETTEXT= yes +INSTALLS_OMF= yes +USE_GMAKE= yes +USE_GNOME= gnomehack intlhack gnomeprefix gtk20 nautilus2 +WANT_GNOME= yes +USE_GSTREAMER= flac mp3 gnomevfs gconf jpeg +USE_AUTOTOOLS= libtool:22 +CONFIGURE_ARGS= --disable-vala --with-libbrasero-media \ + --without-libnautilus-burn +INSTALLS_ICONS= yes +USE_LDCONFIG= yes +CONFIGURE_ENV= LIBS="-lm" \ + LDFLAGS="-L${LOCALBASE}/lib" \ + CPPFLAGS="-I${LOCALBASE}/include" + +GCONF_SCHEMAS= rhythmbox.schemas + +OPTIONS= DAAP "Enable iTunes music sharing" off \ + IPOD "Enable iPod support" on \ + FAAD "Enable FAAD decoder support" off \ + NOTIFY "Enable libnotify support" on \ + VORBIS "Enable Ogg/Vorbis support" on \ + LIRC "Enable Infrared syncing support" off \ + MTP "Enable MS Media Transfer Protocol support" off \ + ITMS_PLUGIN "Enable iTunes browser plugin" on + +.include + +.if !defined(WITHOUT_VORBIS) +USE_GSTREAMER+= vorbis +.else +CONFIGURE_ARGS+= --disable-vorbis --disable-vorbistest +.endif + +.if defined(WITH_FAAD) +USE_GSTREAMER+= faad +.endif + +.if defined(WITH_LIRC) +LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc +PLIST_SUB+= LIRC="" +CONFIGURE_ARGS+=--enable-lirc +.else +CONFIGURE_ARGS+=--disable-lirc +PLIST_SUB+= LIRC="@comment " +.endif + +.if defined(WITH_MTP) +LIB_DEPENDS+= mtp.8:${PORTSDIR}/audio/libmtp +PLIST_SUB+= MTP="" +CONFIGURE_ARGS+= --with-mtp +.else +CONFIGURE_ARGS+= --without-mtp +PLIST_SUB+= MTP="@comment " +.endif + +.if defined(WITH_DAAP) +CONFIGURE_ARGS+= --enable-daap --with-mdns=avahi +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app \ + gnome-keyring:${PORTSDIR}/security/gnome-keyring +PLIST_SUB+= DAAP="" +.else +.if exists(${LOCALBASE}/lib/libavahi-client.a) +LIB_DEPENDS+= avahi-client:${PORTSDIR}/net/avahi-app +.endif +CONFIGURE_ARGS+= --disable-daap +PLIST_SUB+= DAAP="@comment " +.endif + +.if !defined(WITHOUT_NOTIFY) +LIB_DEPENDS+= notify.1:${PORTSDIR}/devel/libnotify +RUN_DEPENDS+= ${LOCALBASE}/libexec/notification-daemon:${PORTSDIR}/deskutils/notification-daemon +.else +CONFIGURE_ARGS+= --disable-libnotify +.endif + +.if exists(${LOCALBASE}/libdata/pkgconfig/gst-python-0.10.pc) +USE_PYTHON= yes +.include "${PORTSDIR}/Mk/bsd.python.mk" +USE_GSTREAMER+= python +CONFIGURE_ARGS+=--enable-python +PLIST_SUB+= PYTHON="" +.else +CONFIGURE_ARGS+=--disable-python +PLIST_SUB+= PYTHON="@comment " +.endif + +.if !defined(WITHOUT_IPOD) +LIB_DEPENDS+= gpod.3:${PORTSDIR}/audio/libgpod +CONFIGURE_ARGS+=--with-ipod +PLIST_SUB+= IPOD="" +.else +CONFIGURE_ARGS+=--without-ipod +PLIST_SUB+= IPOD="@comment " +.endif + +.if !defined(WITHOUT_ITMS_PLUGIN) +USE_WEBPLUGINS= gecko18 +WEBPLUGINS_FILES=librhythmbox-itms-detection-plugin.so +.include "${PORTSDIR}/www/firefox/Makefile.webplugins" + +CONFIGURE_ARGS+=--enable-browser-plugin +CONFIGURE_ENV+= MOZILLA_PLUGINDIR=${WEBPLUGINS_DIR} +PLIST_SUB+= ITMS_PLUGIN="" +.else +CONFIGURE_ARGS+=--disable-browser-plugin +PLIST_SUB+= ITMS_PLUGIN="@comment " +.endif + +.include diff --git a/audio/rhythmbox/distinfo b/audio/rhythmbox/distinfo new file mode 100644 index 000000000..76c293295 --- /dev/null +++ b/audio/rhythmbox/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/rhythmbox-0.12.3.tar.bz2) = 4a28e79184f1a9737ac2e719a1478105 +SHA256 (gnome2/rhythmbox-0.12.3.tar.bz2) = 7069442a13d94424bf1916c600c5dbb320190a9c3a03f65c4770fc96558ac305 +SIZE (gnome2/rhythmbox-0.12.3.tar.bz2) = 4999529 diff --git a/audio/rhythmbox/files/patch-configure b/audio/rhythmbox/files/patch-configure new file mode 100644 index 000000000..9e512187f --- /dev/null +++ b/audio/rhythmbox/files/patch-configure @@ -0,0 +1,11 @@ +--- configure.orig 2009-03-21 13:56:32.000000000 -0400 ++++ configure 2009-03-21 13:57:17.000000000 -0400 +@@ -20763,7 +20763,7 @@ else + fi + + +-MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR:="\${libdir}/mozilla/plugins"}" ++MOZILLA_PLUGINDIR="${MOZILLA_PLUGINDIR}" + + + if test x$enable_browser_plugin = xyes; then diff --git a/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c b/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c new file mode 100644 index 000000000..4d9bb5178 --- /dev/null +++ b/audio/rhythmbox/files/patch-plugins_daap_rb-daap-src.c @@ -0,0 +1,26 @@ +--- plugins/daap/rb-daap-src.c.orig Fri Jan 27 21:11:13 2006 ++++ plugins/daap/rb-daap-src.c Thu Feb 2 02:07:48 2006 +@@ -34,6 +34,7 @@ + #include + #include + #include ++#include + #include + + #include +@@ -435,7 +436,14 @@ rb_daap_src_write (RBDAAPSrc *src, const + size_t bytes_written = 0; + + while (bytes_written < count) { +- ssize_t wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); ++ ssize_t wrote; ++#ifdef MSG_NOSIGNAL ++ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, MSG_NOSIGNAL); ++#else ++ signal (SIGPIPE, SIG_IGN); ++ wrote = send (src->sock_fd, buf + bytes_written, count - bytes_written, 0); ++ signal (SIGPIPE, SIG_DFL); ++#endif + + if (wrote < 0) { + GST_WARNING ("error while writing: %s", g_strerror (errno)); diff --git a/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h new file mode 100644 index 000000000..2208b3205 --- /dev/null +++ b/audio/rhythmbox/files/patch-podcast_rb-podcast-parse.h @@ -0,0 +1,10 @@ +--- podcast/rb-podcast-parse.h.orig Mon Nov 28 13:51:28 2005 ++++ podcast/rb-podcast-parse.h Mon Nov 28 13:51:05 2005 +@@ -22,6 +22,7 @@ + #ifndef RB_PODCAST_PARSE_H + #define RB_PODCAST_PARSE_H + ++#include + #include + + typedef struct 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..318a78a99 --- /dev/null +++ b/audio/rhythmbox/pkg-plist @@ -0,0 +1,677 @@ +bin/rhythmbox +bin/rhythmbox-client +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.a +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.la +%%ITMS_PLUGIN%%%%WEBPLUGINS_DIR%%/librhythmbox-itms-detection-plugin.so +lib/librhythmbox-core.la +lib/librhythmbox-core.so +lib/librhythmbox-core.so.0 +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/AmazonCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/CoverArtDatabase.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/EmbeddedCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/LocalCoverArtSearchGIO.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/PodcastCoverArtSearch.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/artdisplay.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/artdisplay/rhythmbox-missing-artwork.svg +lib/rhythmbox/plugins/audiocd/album-info.ui +lib/rhythmbox/plugins/audiocd/audiocd-ui.xml +lib/rhythmbox/plugins/audiocd/audiocd.rb-plugin +lib/rhythmbox/plugins/audiocd/libaudiocd.la +lib/rhythmbox/plugins/audiocd/libaudiocd.so +lib/rhythmbox/plugins/audiocd/multiple-album.ui +lib/rhythmbox/plugins/audioscrobbler/as-icon.png +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-prefs.ui +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler-ui.xml +lib/rhythmbox/plugins/audioscrobbler/audioscrobbler.rb-plugin +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.la +lib/rhythmbox/plugins/audioscrobbler/libaudioscrobbler.so +lib/rhythmbox/plugins/cd-recorder/cd-recorder.rb-plugin +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.la +lib/rhythmbox/plugins/cd-recorder/libcd-recorder.so +%%DAAP%%lib/rhythmbox/plugins/daap/daap-prefs.ui +%%DAAP%%lib/rhythmbox/plugins/daap/daap-ui.xml +%%DAAP%%lib/rhythmbox/plugins/daap/daap.rb-plugin +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.la +%%DAAP%%lib/rhythmbox/plugins/daap/libdaap.so +%%DAAP%%lib/rhythmbox/plugins/daap/rb-daap-glue.h +lib/rhythmbox/plugins/generic-player/generic-player-ui.xml +lib/rhythmbox/plugins/generic-player/generic-player.rb-plugin +lib/rhythmbox/plugins/generic-player/libgeneric-player.la +lib/rhythmbox/plugins/generic-player/libgeneric-player.so +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/im-status/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/im-status/im-status.rb-plugin +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-info.ui +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-init.ui +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod-ui.xml +%%IPOD%%lib/rhythmbox/plugins/ipod/ipod.rb-plugin +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.la +%%IPOD%%lib/rhythmbox/plugins/ipod/libipod.so +lib/rhythmbox/plugins/iradio/iradio-initial.pls +lib/rhythmbox/plugins/iradio/iradio-ui.xml +lib/rhythmbox/plugins/iradio/iradio.rb-plugin +lib/rhythmbox/plugins/iradio/libiradio.la +lib/rhythmbox/plugins/iradio/libiradio.so +lib/rhythmbox/plugins/iradio/station-properties.ui +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoConfigureDialog.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSaxHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/JamendoSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/jamendo/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-loading.ui +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo-prefs.ui +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo.png +%%PYTHON%%lib/rhythmbox/plugins/jamendo/jamendo_logo_medium.png +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.la +%%LIRC%%lib/rhythmbox/plugins/rblirc/librblirc.so +%%LIRC%%lib/rhythmbox/plugins/rblirc/lirc.rb-plugin +%%LIRC%%lib/rhythmbox/plugins/rblirc/rhythmbox_lirc_default +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/AstrawebParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LeoslyricsParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyrcParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricWikiParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsConfigureDialog.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/LyricsParse.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/WinampcnParser.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/lyrics/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics-prefs.ui +%%PYTHON%%lib/rhythmbox/plugins/lyrics/lyrics.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/BuyAlbumHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/MagnatuneSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/TrackListHandler.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/magnatune/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-loading.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-prefs.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune-purchase.ui +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_small.png +%%PYTHON%%lib/rhythmbox/plugins/magnatune/magnatune_logo_color_tiny.png +lib/rhythmbox/plugins/mmkeys/libmmkeys.la +lib/rhythmbox/plugins/mmkeys/libmmkeys.so +lib/rhythmbox/plugins/mmkeys/mmkeys.rb-plugin +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.la +%%MTP%%lib/rhythmbox/plugins/mtpdevice/libmtpdevice.so +%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtp-ui.xml +%%MTP%%lib/rhythmbox/plugins/mtpdevice/mtpdevice.rb-plugin +lib/rhythmbox/plugins/power-manager/libpower-manager.la +lib/rhythmbox/plugins/power-manager/libpower-manager.so +lib/rhythmbox/plugins/power-manager/power-manager.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.py +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyc +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.pyo +%%PYTHON%%lib/rhythmbox/plugins/python-console/pythonconsole.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.py +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/Coroutine.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.py +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/Loader.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.py +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyc +%%PYTHON%%lib/rhythmbox/plugins/rb/stringmatch.pyo +lib/rhythmbox/plugins/status-icon/libstatus-icon.la +lib/rhythmbox/plugins/status-icon/libstatus-icon.so +lib/rhythmbox/plugins/status-icon/status-icon-preferences.ui +lib/rhythmbox/plugins/status-icon/status-icon-ui.xml +lib/rhythmbox/plugins/status-icon/status-icon.rb-plugin +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaPlayer.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/MediaStore.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/UpnpSource.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.py +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyc +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/__init__.pyo +%%PYTHON%%lib/rhythmbox/plugins/upnp_coherence/coherence.rb-plugin +lib/rhythmbox/plugins/visualizer/libvisualizer.la +lib/rhythmbox/plugins/visualizer/libvisualizer.so +lib/rhythmbox/plugins/visualizer/rb-visualizer-glue.h +lib/rhythmbox/plugins/visualizer/visualizer-controls.ui +lib/rhythmbox/plugins/visualizer/visualizer-ui.xml +lib/rhythmbox/plugins/visualizer/visualizer.rb-plugin +libexec/rhythmbox-metadata +share/applications/rhythmbox.desktop +share/dbus-1/services/org.gnome.Rhythmbox.service +%%DOCSDIR%%/RBAutoPlaylistSource.html +%%DOCSDIR%%/RBBrowserSource.html +%%DOCSDIR%%/RBCellRendererPixbuf.html +%%DOCSDIR%%/RBCellRendererRating.html +%%DOCSDIR%%/RBEncoder.html +%%DOCSDIR%%/RBEntryView.html +%%DOCSDIR%%/RBHistory.html +%%DOCSDIR%%/RBImportErrorsSource.html +%%DOCSDIR%%/RBLibraryBrowser.html +%%DOCSDIR%%/RBLibrarySource.html +%%DOCSDIR%%/RBMetaData.html +%%DOCSDIR%%/RBMissingFilesSource.html +%%DOCSDIR%%/RBPlayOrder.html +%%DOCSDIR%%/RBPlayQueueSource.html +%%DOCSDIR%%/RBPlayer.html +%%DOCSDIR%%/RBPlayerGstDataTee.html +%%DOCSDIR%%/RBPlayerGstFilter.html +%%DOCSDIR%%/RBPlayerGstTee.html +%%DOCSDIR%%/RBPlaylistManager.html +%%DOCSDIR%%/RBPlaylistSource.html +%%DOCSDIR%%/RBPropertyView.html +%%DOCSDIR%%/RBQueryCreator.html +%%DOCSDIR%%/RBRandomPlayOrder.html +%%DOCSDIR%%/RBRating.html +%%DOCSDIR%%/RBRemovableMediaManager.html +%%DOCSDIR%%/RBSearchEntry.html +%%DOCSDIR%%/RBShellClipboard.html +%%DOCSDIR%%/RBShellPlayer.html +%%DOCSDIR%%/RBShellPreferences.html +%%DOCSDIR%%/RBSongInfo.html +%%DOCSDIR%%/RBSource.html +%%DOCSDIR%%/RBSourceHeader.html +%%DOCSDIR%%/RBSourceList.html +%%DOCSDIR%%/RBSourceListModel.html +%%DOCSDIR%%/RBStatusbar.html +%%DOCSDIR%%/RBStringValueMap.html +%%DOCSDIR%%/RBURIDialog.html +%%DOCSDIR%%/RhythmDB.html +%%DOCSDIR%%/RhythmDBImportJob.html +%%DOCSDIR%%/RhythmDBPropertyModel.html +%%DOCSDIR%%/RhythmDBQueryResults.html +%%DOCSDIR%%/ch01.html +%%DOCSDIR%%/ch02.html +%%DOCSDIR%%/ch03.html +%%DOCSDIR%%/ch04.html +%%DOCSDIR%%/ch05.html +%%DOCSDIR%%/ch06.html +%%DOCSDIR%%/ch07.html +%%DOCSDIR%%/home.png +%%DOCSDIR%%/index.html +%%DOCSDIR%%/index.sgml +%%DOCSDIR%%/left.png +%%DOCSDIR%%/rhythmbox-RBPodcastSource.html +%%DOCSDIR%%/rhythmbox-RBSourceGroup.html +%%DOCSDIR%%/rhythmbox-eel-gconf-extensions.html +%%DOCSDIR%%/rhythmbox-rb-async-queue-watch.html +%%DOCSDIR%%/rhythmbox-rb-builder-helpers.html +%%DOCSDIR%%/rhythmbox-rb-debug.html +%%DOCSDIR%%/rhythmbox-rb-dialog.html +%%DOCSDIR%%/rhythmbox-rb-file-helpers.html +%%DOCSDIR%%/rhythmbox-rb-header.html +%%DOCSDIR%%/rhythmbox-rb-rating-helper.html +%%DOCSDIR%%/rhythmbox-rb-removable-media-source.html +%%DOCSDIR%%/rhythmbox-rb-shell.html +%%DOCSDIR%%/rhythmbox-rb-static-playlist-source.html +%%DOCSDIR%%/rhythmbox-rb-streaming-source.html +%%DOCSDIR%%/rhythmbox-rb-tree-dnd.html +%%DOCSDIR%%/rhythmbox-rb-util.html +%%DOCSDIR%%/rhythmbox-rhythmdb-query-model.html +%%DOCSDIR%%/rhythmbox-rhythmdb-tree.html +%%DOCSDIR%%/rhythmbox.devhelp +%%DOCSDIR%%/rhythmbox.devhelp2 +%%DOCSDIR%%/right.png +%%DOCSDIR%%/style.css +%%DOCSDIR%%/up.png +share/gnome/help/rhythmbox/C/fdl-appendix.xml +share/gnome/help/rhythmbox/C/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/C/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/C/figures/rb-notification-window.png +share/gnome/help/rhythmbox/C/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/C/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/C/figures/rb-statusbar.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/C/figures/rb-toolbar.png +share/gnome/help/rhythmbox/C/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/C/figures/rb-window-small.png +share/gnome/help/rhythmbox/C/figures/rb-window.png +share/gnome/help/rhythmbox/C/legal.xml +share/gnome/help/rhythmbox/C/rhythmbox.xml +share/gnome/help/rhythmbox/cs/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-window.png +share/gnome/help/rhythmbox/cs/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/cs/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/cs/figures/rb-statusbar.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/cs/figures/rb-toolbar.png +share/gnome/help/rhythmbox/cs/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/cs/figures/rb-window-small.png +share/gnome/help/rhythmbox/cs/figures/rb-window.png +share/gnome/help/rhythmbox/cs/rhythmbox.xml +share/gnome/help/rhythmbox/da/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/da/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/da/figures/rb-notification-window.png +share/gnome/help/rhythmbox/da/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/da/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/da/figures/rb-statusbar.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/da/figures/rb-toolbar.png +share/gnome/help/rhythmbox/da/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/da/figures/rb-window-small.png +share/gnome/help/rhythmbox/da/figures/rb-window.png +share/gnome/help/rhythmbox/da/rhythmbox.xml +share/gnome/help/rhythmbox/de/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/de/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/de/figures/rb-notification-window.png +share/gnome/help/rhythmbox/de/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/de/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/de/figures/rb-statusbar.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/de/figures/rb-toolbar.png +share/gnome/help/rhythmbox/de/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/de/figures/rb-window-small.png +share/gnome/help/rhythmbox/de/figures/rb-window.png +share/gnome/help/rhythmbox/de/rhythmbox.xml +share/gnome/help/rhythmbox/el/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/el/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/el/figures/rb-notification-window.png +share/gnome/help/rhythmbox/el/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/el/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/el/figures/rb-statusbar.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/el/figures/rb-toolbar.png +share/gnome/help/rhythmbox/el/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/el/figures/rb-window-small.png +share/gnome/help/rhythmbox/el/figures/rb-window.png +share/gnome/help/rhythmbox/el/rhythmbox.xml +share/gnome/help/rhythmbox/es/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/es/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/es/figures/rb-notification-window.png +share/gnome/help/rhythmbox/es/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/es/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/es/figures/rb-statusbar.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/es/figures/rb-toolbar.png +share/gnome/help/rhythmbox/es/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/es/figures/rb-window-small.png +share/gnome/help/rhythmbox/es/figures/rb-window.png +share/gnome/help/rhythmbox/es/rhythmbox.xml +share/gnome/help/rhythmbox/fr/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-window.png +share/gnome/help/rhythmbox/fr/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/fr/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/fr/figures/rb-statusbar.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/fr/figures/rb-toolbar.png +share/gnome/help/rhythmbox/fr/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/fr/figures/rb-window-small.png +share/gnome/help/rhythmbox/fr/figures/rb-window.png +share/gnome/help/rhythmbox/fr/rhythmbox.xml +share/gnome/help/rhythmbox/it/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/it/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/it/figures/rb-notification-window.png +share/gnome/help/rhythmbox/it/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/it/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/it/figures/rb-statusbar.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/it/figures/rb-toolbar.png +share/gnome/help/rhythmbox/it/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/it/figures/rb-window-small.png +share/gnome/help/rhythmbox/it/figures/rb-window.png +share/gnome/help/rhythmbox/it/rhythmbox.xml +share/gnome/help/rhythmbox/oc/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-window.png +share/gnome/help/rhythmbox/oc/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/oc/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/oc/figures/rb-statusbar.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/oc/figures/rb-toolbar.png +share/gnome/help/rhythmbox/oc/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/oc/figures/rb-window-small.png +share/gnome/help/rhythmbox/oc/figures/rb-window.png +share/gnome/help/rhythmbox/oc/rhythmbox.xml +share/gnome/help/rhythmbox/ru/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-window.png +share/gnome/help/rhythmbox/ru/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/ru/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/ru/figures/rb-statusbar.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/ru/figures/rb-toolbar.png +share/gnome/help/rhythmbox/ru/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/ru/figures/rb-window-small.png +share/gnome/help/rhythmbox/ru/figures/rb-window.png +share/gnome/help/rhythmbox/ru/rhythmbox.xml +share/gnome/help/rhythmbox/sv/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-window.png +share/gnome/help/rhythmbox/sv/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/sv/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/sv/figures/rb-statusbar.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/sv/figures/rb-toolbar.png +share/gnome/help/rhythmbox/sv/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/sv/figures/rb-window-small.png +share/gnome/help/rhythmbox/sv/figures/rb-window.png +share/gnome/help/rhythmbox/sv/rhythmbox.xml +share/gnome/help/rhythmbox/zh_CN/figures/rb-iradio-main.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-area-menu.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-window.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-notification-zone.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-podcast-main.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-statusbar.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-prevplaynext.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-repeat.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar-shuffle.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-toolbar.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-volume-changer.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-window-small.png +share/gnome/help/rhythmbox/zh_CN/figures/rb-window.png +share/gnome/help/rhythmbox/zh_CN/rhythmbox.xml +share/icons/hicolor/16x16/apps/rhythmbox.png +share/icons/hicolor/22x22/apps/rhythmbox.png +share/icons/hicolor/24x24/apps/rhythmbox.png +share/icons/hicolor/32x32/apps/rhythmbox.png +share/icons/hicolor/48x48/apps/rhythmbox.png +share/icons/hicolor/scalable/apps/rhythmbox.svg +share/locale/af/LC_MESSAGES/rhythmbox.mo +share/locale/am/LC_MESSAGES/rhythmbox.mo +share/locale/ar/LC_MESSAGES/rhythmbox.mo +share/locale/as/LC_MESSAGES/rhythmbox.mo +share/locale/az/LC_MESSAGES/rhythmbox.mo +share/locale/be/LC_MESSAGES/rhythmbox.mo +share/locale/be@latin/LC_MESSAGES/rhythmbox.mo +share/locale/bg/LC_MESSAGES/rhythmbox.mo +share/locale/ca/LC_MESSAGES/rhythmbox.mo +share/locale/cs/LC_MESSAGES/rhythmbox.mo +share/locale/cy/LC_MESSAGES/rhythmbox.mo +share/locale/da/LC_MESSAGES/rhythmbox.mo +share/locale/de/LC_MESSAGES/rhythmbox.mo +share/locale/dz/LC_MESSAGES/rhythmbox.mo +share/locale/el/LC_MESSAGES/rhythmbox.mo +share/locale/en_CA/LC_MESSAGES/rhythmbox.mo +share/locale/en_GB/LC_MESSAGES/rhythmbox.mo +share/locale/es/LC_MESSAGES/rhythmbox.mo +share/locale/et/LC_MESSAGES/rhythmbox.mo +share/locale/eu/LC_MESSAGES/rhythmbox.mo +share/locale/fi/LC_MESSAGES/rhythmbox.mo +share/locale/fr/LC_MESSAGES/rhythmbox.mo +share/locale/ga/LC_MESSAGES/rhythmbox.mo +share/locale/gl/LC_MESSAGES/rhythmbox.mo +share/locale/gu/LC_MESSAGES/rhythmbox.mo +share/locale/he/LC_MESSAGES/rhythmbox.mo +share/locale/hi/LC_MESSAGES/rhythmbox.mo +share/locale/hr/LC_MESSAGES/rhythmbox.mo +share/locale/hu/LC_MESSAGES/rhythmbox.mo +share/locale/id/LC_MESSAGES/rhythmbox.mo +share/locale/is/LC_MESSAGES/rhythmbox.mo +share/locale/it/LC_MESSAGES/rhythmbox.mo +share/locale/ja/LC_MESSAGES/rhythmbox.mo +share/locale/kn/LC_MESSAGES/rhythmbox.mo +share/locale/ko/LC_MESSAGES/rhythmbox.mo +share/locale/lt/LC_MESSAGES/rhythmbox.mo +share/locale/lv/LC_MESSAGES/rhythmbox.mo +share/locale/mk/LC_MESSAGES/rhythmbox.mo +share/locale/ml/LC_MESSAGES/rhythmbox.mo +share/locale/mn/LC_MESSAGES/rhythmbox.mo +share/locale/mr/LC_MESSAGES/rhythmbox.mo +share/locale/ms/LC_MESSAGES/rhythmbox.mo +share/locale/nb/LC_MESSAGES/rhythmbox.mo +share/locale/ne/LC_MESSAGES/rhythmbox.mo +share/locale/nl/LC_MESSAGES/rhythmbox.mo +share/locale/oc/LC_MESSAGES/rhythmbox.mo +share/locale/or/LC_MESSAGES/rhythmbox.mo +share/locale/pa/LC_MESSAGES/rhythmbox.mo +share/locale/pl/LC_MESSAGES/rhythmbox.mo +share/locale/ps/LC_MESSAGES/rhythmbox.mo +share/locale/pt/LC_MESSAGES/rhythmbox.mo +share/locale/pt_BR/LC_MESSAGES/rhythmbox.mo +share/locale/ro/LC_MESSAGES/rhythmbox.mo +share/locale/ru/LC_MESSAGES/rhythmbox.mo +share/locale/rw/LC_MESSAGES/rhythmbox.mo +share/locale/sk/LC_MESSAGES/rhythmbox.mo +share/locale/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/th/LC_MESSAGES/rhythmbox.mo +share/locale/tr/LC_MESSAGES/rhythmbox.mo +share/locale/uk/LC_MESSAGES/rhythmbox.mo +share/locale/vi/LC_MESSAGES/rhythmbox.mo +share/locale/zh_CN/LC_MESSAGES/rhythmbox.mo +share/locale/zh_HK/LC_MESSAGES/rhythmbox.mo +share/locale/zh_TW/LC_MESSAGES/rhythmbox.mo +share/omf/rhythmbox/rhythmbox-C.omf +share/omf/rhythmbox/rhythmbox-cs.omf +share/omf/rhythmbox/rhythmbox-da.omf +share/omf/rhythmbox/rhythmbox-de.omf +share/omf/rhythmbox/rhythmbox-el.omf +share/omf/rhythmbox/rhythmbox-es.omf +share/omf/rhythmbox/rhythmbox-fr.omf +share/omf/rhythmbox/rhythmbox-it.omf +share/omf/rhythmbox/rhythmbox-oc.omf +share/omf/rhythmbox/rhythmbox-ru.omf +share/omf/rhythmbox/rhythmbox-sv.omf +share/omf/rhythmbox/rhythmbox-zh_CN.omf +share/rhythmbox/create-playlist.ui +share/rhythmbox/general-prefs.ui +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/16x16/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/16x16/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/16x16/actions/media-eject.png +share/rhythmbox/icons/hicolor/16x16/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/16x16/actions/playlist-new.png +share/rhythmbox/icons/hicolor/16x16/actions/podcast-new.png +share/rhythmbox/icons/hicolor/16x16/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/16x16/places/library-podcast.png +share/rhythmbox/icons/hicolor/16x16/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/16x16/places/playlist.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-no-star.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-set-star.png +share/rhythmbox/icons/hicolor/16x16/status/rhythmbox-unset-star.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/22x22/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/22x22/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/22x22/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/22x22/actions/playlist-new.png +share/rhythmbox/icons/hicolor/22x22/actions/podcast-new.png +share/rhythmbox/icons/hicolor/22x22/actions/visualization.png +share/rhythmbox/icons/hicolor/22x22/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/22x22/places/library-podcast.png +share/rhythmbox/icons/hicolor/22x22/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/22x22/places/playlist.png +%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/jamendo.png +%%PYTHON%%share/rhythmbox/icons/hicolor/24x24/places/magnatune.png +share/rhythmbox/icons/hicolor/22x22/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.png +share/rhythmbox/icons/hicolor/32x32/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/32x32/actions/internet-radio-new.png +share/rhythmbox/icons/hicolor/32x32/actions/playlist-automatic-new.png +share/rhythmbox/icons/hicolor/32x32/actions/playlist-new.png +share/rhythmbox/icons/hicolor/32x32/places/library-internet-radio.png +share/rhythmbox/icons/hicolor/32x32/places/playlist-automatic.png +share/rhythmbox/icons/hicolor/32x32/places/playlist.png +share/rhythmbox/icons/hicolor/32x32/status/rhythmbox-notplaying.png +share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-duplicate.svg +share/rhythmbox/icons/hicolor/scalable/actions/audio-cd-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/internet-radio-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/playlist-automatic-new.svg +share/rhythmbox/icons/hicolor/scalable/actions/playlist-new.svg +share/rhythmbox/icons/hicolor/scalable/places/library-internet-radio.svg +share/rhythmbox/icons/hicolor/scalable/places/playlist-automatic.svg +share/rhythmbox/icons/hicolor/scalable/places/playlist.svg +share/rhythmbox/icons/hicolor/scalable/status/rhythmbox-notplaying.svg +share/rhythmbox/library-prefs.ui +share/rhythmbox/playback-prefs.ui +share/rhythmbox/playlist-save.ui +share/rhythmbox/playlists.xml +share/rhythmbox/plugins.ui +share/rhythmbox/podcast-feed-properties.ui +share/rhythmbox/podcast-prefs.ui +share/rhythmbox/podcast-properties.ui +share/rhythmbox/rhythmbox-ui.xml +share/rhythmbox/song-info-multiple.ui +share/rhythmbox/song-info.ui +share/rhythmbox/uri-new.ui +@dirrm share/rhythmbox/icons/hicolor/scalable/status +@dirrm share/rhythmbox/icons/hicolor/scalable/places +@dirrm share/rhythmbox/icons/hicolor/scalable/actions +@dirrm share/rhythmbox/icons/hicolor/scalable +@dirrm share/rhythmbox/icons/hicolor/32x32/status +@dirrm share/rhythmbox/icons/hicolor/32x32/places +@dirrm share/rhythmbox/icons/hicolor/32x32/actions +@dirrm share/rhythmbox/icons/hicolor/32x32 +%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24/places +%%PYTHON%%@dirrm share/rhythmbox/icons/hicolor/24x24 +@dirrm share/rhythmbox/icons/hicolor/22x22/status +@dirrm share/rhythmbox/icons/hicolor/22x22/places +@dirrm share/rhythmbox/icons/hicolor/22x22/actions +@dirrm share/rhythmbox/icons/hicolor/22x22 +@dirrm share/rhythmbox/icons/hicolor/16x16/status +@dirrm share/rhythmbox/icons/hicolor/16x16/places +@dirrm share/rhythmbox/icons/hicolor/16x16/actions +@dirrm share/rhythmbox/icons/hicolor/16x16 +@dirrm share/rhythmbox/icons/hicolor +@dirrm share/rhythmbox/icons/ +@dirrm share/rhythmbox +@dirrm share/omf/rhythmbox +@dirrm share/gnome/help/rhythmbox/zh_CN/figures +@dirrm share/gnome/help/rhythmbox/zh_CN +@dirrm share/gnome/help/rhythmbox/sv/figures +@dirrm share/gnome/help/rhythmbox/sv +@dirrm share/gnome/help/rhythmbox/ru/figures +@dirrm share/gnome/help/rhythmbox/ru +@dirrm share/gnome/help/rhythmbox/oc/figures +@dirrm share/gnome/help/rhythmbox/oc +@dirrm share/gnome/help/rhythmbox/it/figures +@dirrm share/gnome/help/rhythmbox/it +@dirrm share/gnome/help/rhythmbox/fr/figures +@dirrm share/gnome/help/rhythmbox/fr +@dirrm share/gnome/help/rhythmbox/es/figures +@dirrm share/gnome/help/rhythmbox/es +@dirrm share/gnome/help/rhythmbox/el/figures +@dirrm share/gnome/help/rhythmbox/el +@dirrm share/gnome/help/rhythmbox/da/figures +@dirrm share/gnome/help/rhythmbox/da +@dirrm share/gnome/help/rhythmbox/de/figures +@dirrm share/gnome/help/rhythmbox/de +@dirrm share/gnome/help/rhythmbox/cs/figures +@dirrm share/gnome/help/rhythmbox/cs +@dirrm share/gnome/help/rhythmbox/C/figures +@dirrm share/gnome/help/rhythmbox/C +@dirrm share/gnome/help/rhythmbox +@dirrm %%DOCSDIR%% +@dirrm lib/rhythmbox/plugins/visualizer +%%PYTHON%%@dirrm lib/rhythmbox/plugins/upnp_coherence +@dirrm lib/rhythmbox/plugins/status-icon +%%PYTHON%%@dirrm lib/rhythmbox/plugins/rb +%%PYTHON%%@dirrm lib/rhythmbox/plugins/python-console +@dirrm lib/rhythmbox/plugins/power-manager +@dirrm lib/rhythmbox/plugins/mmkeys +%%PYTHON%%@dirrm lib/rhythmbox/plugins/magnatune +%%PYTHON%%@dirrm lib/rhythmbox/plugins/lyrics +%%LIRC%%@dirrm lib/rhythmbox/plugins/lirc +%%PYTHON%%@dirrm lib/rhythmbox/plugins/jamendo +@dirrm lib/rhythmbox/plugins/iradio +%%IPOD%%@dirrm lib/rhythmbox/plugins/ipod +%%PYTHON%%@dirrm lib/rhythmbox/plugins/im-status +@dirrm lib/rhythmbox/plugins/generic-player +%%DAAP%%@dirrm lib/rhythmbox/plugins/daap +@dirrm lib/rhythmbox/plugins/cd-recorder +@dirrm lib/rhythmbox/plugins/audioscrobbler +@dirrm lib/rhythmbox/plugins/audiocd +%%PYTHON%%@dirrm lib/rhythmbox/plugins/artdisplay +@dirrm lib/rhythmbox/plugins +@dirrm lib/rhythmbox +%%ITMS_PLUGIN%%@dirrmtry %%WEBPLUGINS_DIR%% +@dirrmtry share/applications +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/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/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/be@latin/LC_MESSAGES +@dirrmtry share/locale/be@latin +@dirrmtry share/locale/as/LC_MESSAGES +@dirrmtry share/locale/as diff --git a/audio/sound-juicer/Makefile b/audio/sound-juicer/Makefile new file mode 100644 index 000000000..3d865c4dc --- /dev/null +++ b/audio/sound-juicer/Makefile @@ -0,0 +1,51 @@ +# New ports collection makefile for: soundjuicer +# Date created: 20 Jan 2004 +# Whom: Alexander Nedotsukov +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= sound-juicer +PORTVERSION= 2.26.1 +PORTREVISION= 1 +CATEGORIES= audio gnome +MASTER_SITES= GNOME +DIST_SUBDIR= gnome2 + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Clean, mean and lean CD ripper for GNOME2 + +LIB_DEPENDS= musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ + musicbrainz3.6:${PORTSDIR}/audio/libmusicbrainz3 \ + gnome-media-profiles.0:${PORTSDIR}/audio/gnome-media \ + cdio.8:${PORTSDIR}/sysutils/libcdio \ + tag.6:${PORTSDIR}/audio/taglib \ + canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ + dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \ + brasero-media.2:${PORTSDIR}/sysutils/brasero + +USE_BZIP2= yes +USE_GETTEXT= yes +USE_GMAKE= yes +INSTALLS_OMF= yes +USE_GNOME= gnomehack intlhack gnomeprefix gconf2 libglade2 gnomedocutils +USE_GSTREAMER= cdparanoia vorbis flac gconf good gio +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-ignore-missing-cd +INSTALLS_ICONS= yes +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +MAN1= sound-juicer.1 +GCONF_SCHEMAS= sound-juicer.schemas + +post-patch: + @${REINPLACE_CMD} -e 's|^\(SUBDIRS = .*\)tests\(.*\)|\1\2|' \ + ${WRKSRC}/Makefile.in + @${REINPLACE_CMD} -e 's|" == "|" = "|g' ${WRKSRC}/configure + +post-install: + @-update-desktop-database + +.include diff --git a/audio/sound-juicer/distinfo b/audio/sound-juicer/distinfo new file mode 100644 index 000000000..7c4e36f21 --- /dev/null +++ b/audio/sound-juicer/distinfo @@ -0,0 +1,3 @@ +MD5 (gnome2/sound-juicer-2.26.1.tar.bz2) = 68d085cb577af88553f2dcaf3a0fc2a1 +SHA256 (gnome2/sound-juicer-2.26.1.tar.bz2) = 5e6220158270b5f76e6a9f74f597837b41000c695e4ae81254dd945024c0c9e5 +SIZE (gnome2/sound-juicer-2.26.1.tar.bz2) = 1993986 diff --git a/audio/sound-juicer/pkg-descr b/audio/sound-juicer/pkg-descr new file mode 100644 index 000000000..ec4721433 --- /dev/null +++ b/audio/sound-juicer/pkg-descr @@ -0,0 +1,5 @@ +Sound Juicer is a clean, mean and lean CD ripper for GNOME2. +It provides a clean interface and simple preferences, aiming +to do The Right Thing and What You Mean all of the time. + +WWW: http://www.burtonini.com/blog/computers/sound-juicer/ diff --git a/audio/sound-juicer/pkg-plist b/audio/sound-juicer/pkg-plist new file mode 100644 index 000000000..14faef6de --- /dev/null +++ b/audio/sound-juicer/pkg-plist @@ -0,0 +1,230 @@ +bin/sound-juicer +share/applications/sound-juicer.desktop +share/gnome/help/sound-juicer/C/figures/prefs.png +share/gnome/help/sound-juicer/C/figures/startup.png +share/gnome/help/sound-juicer/C/legal.xml +share/gnome/help/sound-juicer/C/sound-juicer.xml +share/gnome/help/sound-juicer/ar/figures/prefs.png +share/gnome/help/sound-juicer/ar/figures/startup.png +share/gnome/help/sound-juicer/ar/legal.xml +share/gnome/help/sound-juicer/ar/sound-juicer.xml +share/gnome/help/sound-juicer/ca/figures/prefs.png +share/gnome/help/sound-juicer/ca/figures/startup.png +share/gnome/help/sound-juicer/ca/legal.xml +share/gnome/help/sound-juicer/ca/sound-juicer.xml +share/gnome/help/sound-juicer/de/figures/prefs.png +share/gnome/help/sound-juicer/de/figures/startup.png +share/gnome/help/sound-juicer/de/legal.xml +share/gnome/help/sound-juicer/de/sound-juicer.xml +share/gnome/help/sound-juicer/el/figures/prefs.png +share/gnome/help/sound-juicer/el/figures/startup.png +share/gnome/help/sound-juicer/el/legal.xml +share/gnome/help/sound-juicer/el/sound-juicer.xml +share/gnome/help/sound-juicer/en_GB/figures/prefs.png +share/gnome/help/sound-juicer/en_GB/figures/startup.png +share/gnome/help/sound-juicer/en_GB/legal.xml +share/gnome/help/sound-juicer/en_GB/sound-juicer.xml +share/gnome/help/sound-juicer/es/figures/prefs.png +share/gnome/help/sound-juicer/es/figures/startup.png +share/gnome/help/sound-juicer/es/legal.xml +share/gnome/help/sound-juicer/es/sound-juicer.xml +share/gnome/help/sound-juicer/eu/figures/prefs.png +share/gnome/help/sound-juicer/eu/figures/startup.png +share/gnome/help/sound-juicer/eu/legal.xml +share/gnome/help/sound-juicer/eu/sound-juicer.xml +share/gnome/help/sound-juicer/fr/figures/prefs.png +share/gnome/help/sound-juicer/fr/figures/startup.png +share/gnome/help/sound-juicer/fr/legal.xml +share/gnome/help/sound-juicer/fr/sound-juicer.xml +share/gnome/help/sound-juicer/nl/figures/prefs.png +share/gnome/help/sound-juicer/nl/figures/startup.png +share/gnome/help/sound-juicer/nl/legal.xml +share/gnome/help/sound-juicer/nl/sound-juicer.xml +share/gnome/help/sound-juicer/oc/figures/prefs.png +share/gnome/help/sound-juicer/oc/figures/startup.png +share/gnome/help/sound-juicer/oc/legal.xml +share/gnome/help/sound-juicer/oc/sound-juicer.xml +share/gnome/help/sound-juicer/pl/figures/prefs.png +share/gnome/help/sound-juicer/pl/figures/startup.png +share/gnome/help/sound-juicer/pl/legal.xml +share/gnome/help/sound-juicer/pl/sound-juicer.xml +share/gnome/help/sound-juicer/pt_BR/figures/prefs.png +share/gnome/help/sound-juicer/pt_BR/figures/startup.png +share/gnome/help/sound-juicer/pt_BR/legal.xml +share/gnome/help/sound-juicer/pt_BR/sound-juicer.xml +share/gnome/help/sound-juicer/ru/figures/prefs.png +share/gnome/help/sound-juicer/ru/figures/startup.png +share/gnome/help/sound-juicer/ru/legal.xml +share/gnome/help/sound-juicer/ru/sound-juicer.xml +share/gnome/help/sound-juicer/sv/figures/prefs.png +share/gnome/help/sound-juicer/sv/figures/startup.png +share/gnome/help/sound-juicer/sv/legal.xml +share/gnome/help/sound-juicer/sv/sound-juicer.xml +share/gnome/help/sound-juicer/uk/figures/prefs.png +share/gnome/help/sound-juicer/uk/figures/startup.png +share/gnome/help/sound-juicer/uk/legal.xml +share/gnome/help/sound-juicer/uk/sound-juicer.xml +share/icons/hicolor/16x16/apps/sound-juicer.png +share/icons/hicolor/22x22/apps/sound-juicer.png +share/icons/hicolor/24x24/apps/sound-juicer.png +share/icons/hicolor/32x32/apps/sound-juicer.png +share/icons/hicolor/48x48/apps/sound-juicer.png +share/icons/hicolor/scalable/apps/sound-juicer.svg +share/locale/ar/LC_MESSAGES/sound-juicer.mo +share/locale/as/LC_MESSAGES/sound-juicer.mo +share/locale/az/LC_MESSAGES/sound-juicer.mo +share/locale/be/LC_MESSAGES/sound-juicer.mo +share/locale/be@latin/LC_MESSAGES/sound-juicer.mo +share/locale/bg/LC_MESSAGES/sound-juicer.mo +share/locale/bn/LC_MESSAGES/sound-juicer.mo +share/locale/bn_IN/LC_MESSAGES/sound-juicer.mo +share/locale/br/LC_MESSAGES/sound-juicer.mo +share/locale/ca/LC_MESSAGES/sound-juicer.mo +share/locale/cs/LC_MESSAGES/sound-juicer.mo +share/locale/cy/LC_MESSAGES/sound-juicer.mo +share/locale/da/LC_MESSAGES/sound-juicer.mo +share/locale/de/LC_MESSAGES/sound-juicer.mo +share/locale/dz/LC_MESSAGES/sound-juicer.mo +share/locale/el/LC_MESSAGES/sound-juicer.mo +share/locale/en_CA/LC_MESSAGES/sound-juicer.mo +share/locale/en_GB/LC_MESSAGES/sound-juicer.mo +share/locale/es/LC_MESSAGES/sound-juicer.mo +share/locale/et/LC_MESSAGES/sound-juicer.mo +share/locale/eu/LC_MESSAGES/sound-juicer.mo +share/locale/fa/LC_MESSAGES/sound-juicer.mo +share/locale/fi/LC_MESSAGES/sound-juicer.mo +share/locale/fr/LC_MESSAGES/sound-juicer.mo +share/locale/gl/LC_MESSAGES/sound-juicer.mo +share/locale/gu/LC_MESSAGES/sound-juicer.mo +share/locale/he/LC_MESSAGES/sound-juicer.mo +share/locale/hi/LC_MESSAGES/sound-juicer.mo +share/locale/hr/LC_MESSAGES/sound-juicer.mo +share/locale/hu/LC_MESSAGES/sound-juicer.mo +share/locale/id/LC_MESSAGES/sound-juicer.mo +share/locale/it/LC_MESSAGES/sound-juicer.mo +share/locale/ja/LC_MESSAGES/sound-juicer.mo +share/locale/ka/LC_MESSAGES/sound-juicer.mo +share/locale/kn/LC_MESSAGES/sound-juicer.mo +share/locale/ko/LC_MESSAGES/sound-juicer.mo +share/locale/ku/LC_MESSAGES/sound-juicer.mo +share/locale/lt/LC_MESSAGES/sound-juicer.mo +share/locale/lv/LC_MESSAGES/sound-juicer.mo +share/locale/mk/LC_MESSAGES/sound-juicer.mo +share/locale/ml/LC_MESSAGES/sound-juicer.mo +share/locale/mn/LC_MESSAGES/sound-juicer.mo +share/locale/mr/LC_MESSAGES/sound-juicer.mo +share/locale/ms/LC_MESSAGES/sound-juicer.mo +share/locale/nb/LC_MESSAGES/sound-juicer.mo +share/locale/ne/LC_MESSAGES/sound-juicer.mo +share/locale/nl/LC_MESSAGES/sound-juicer.mo +share/locale/nn/LC_MESSAGES/sound-juicer.mo +share/locale/oc/LC_MESSAGES/sound-juicer.mo +share/locale/or/LC_MESSAGES/sound-juicer.mo +share/locale/pa/LC_MESSAGES/sound-juicer.mo +share/locale/pl/LC_MESSAGES/sound-juicer.mo +share/locale/pt/LC_MESSAGES/sound-juicer.mo +share/locale/pt_BR/LC_MESSAGES/sound-juicer.mo +share/locale/ro/LC_MESSAGES/sound-juicer.mo +share/locale/ru/LC_MESSAGES/sound-juicer.mo +share/locale/rw/LC_MESSAGES/sound-juicer.mo +share/locale/si/LC_MESSAGES/sound-juicer.mo +share/locale/sk/LC_MESSAGES/sound-juicer.mo +share/locale/sl/LC_MESSAGES/sound-juicer.mo +share/locale/sq/LC_MESSAGES/sound-juicer.mo +share/locale/sr/LC_MESSAGES/sound-juicer.mo +share/locale/sr@latin/LC_MESSAGES/sound-juicer.mo +share/locale/sv/LC_MESSAGES/sound-juicer.mo +share/locale/ta/LC_MESSAGES/sound-juicer.mo +share/locale/te/LC_MESSAGES/sound-juicer.mo +share/locale/th/LC_MESSAGES/sound-juicer.mo +share/locale/tr/LC_MESSAGES/sound-juicer.mo +share/locale/ug/LC_MESSAGES/sound-juicer.mo +share/locale/uk/LC_MESSAGES/sound-juicer.mo +share/locale/vi/LC_MESSAGES/sound-juicer.mo +share/locale/xh/LC_MESSAGES/sound-juicer.mo +share/locale/zh_CN/LC_MESSAGES/sound-juicer.mo +share/locale/zh_HK/LC_MESSAGES/sound-juicer.mo +share/locale/zh_TW/LC_MESSAGES/sound-juicer.mo +share/omf/sound-juicer/sound-juicer-C.omf +share/omf/sound-juicer/sound-juicer-ar.omf +share/omf/sound-juicer/sound-juicer-ca.omf +share/omf/sound-juicer/sound-juicer-de.omf +share/omf/sound-juicer/sound-juicer-el.omf +share/omf/sound-juicer/sound-juicer-en_GB.omf +share/omf/sound-juicer/sound-juicer-es.omf +share/omf/sound-juicer/sound-juicer-eu.omf +share/omf/sound-juicer/sound-juicer-fr.omf +share/omf/sound-juicer/sound-juicer-nl.omf +share/omf/sound-juicer/sound-juicer-oc.omf +share/omf/sound-juicer/sound-juicer-pl.omf +share/omf/sound-juicer/sound-juicer-pt_BR.omf +share/omf/sound-juicer/sound-juicer-ru.omf +share/omf/sound-juicer/sound-juicer-sv.omf +share/omf/sound-juicer/sound-juicer-uk.omf +%%DATADIR%%/sound-juicer.glade +@dirrm %%DATADIR%% +@dirrm share/omf/sound-juicer +@dirrm share/gnome/help/sound-juicer/uk/figures +@dirrm share/gnome/help/sound-juicer/uk +@dirrm share/gnome/help/sound-juicer/sv/figures +@dirrm share/gnome/help/sound-juicer/sv +@dirrm share/gnome/help/sound-juicer/ru/figures +@dirrm share/gnome/help/sound-juicer/ru +@dirrm share/gnome/help/sound-juicer/pt_BR/figures +@dirrm share/gnome/help/sound-juicer/pt_BR +@dirrm share/gnome/help/sound-juicer/pl/figures +@dirrm share/gnome/help/sound-juicer/pl +@dirrm share/gnome/help/sound-juicer/oc/figures +@dirrm share/gnome/help/sound-juicer/oc +@dirrm share/gnome/help/sound-juicer/nl/figures +@dirrm share/gnome/help/sound-juicer/nl +@dirrm share/gnome/help/sound-juicer/fr/figures +@dirrm share/gnome/help/sound-juicer/fr +@dirrm share/gnome/help/sound-juicer/eu/figures +@dirrm share/gnome/help/sound-juicer/eu +@dirrm share/gnome/help/sound-juicer/es/figures +@dirrm share/gnome/help/sound-juicer/es +@dirrm share/gnome/help/sound-juicer/en_GB/figures +@dirrm share/gnome/help/sound-juicer/en_GB +@dirrm share/gnome/help/sound-juicer/el/figures +@dirrm share/gnome/help/sound-juicer/el +@dirrm share/gnome/help/sound-juicer/de/figures +@dirrm share/gnome/help/sound-juicer/de +@dirrm share/gnome/help/sound-juicer/ca/figures +@dirrm share/gnome/help/sound-juicer/ca +@dirrm share/gnome/help/sound-juicer/ar/figures +@dirrm share/gnome/help/sound-juicer/ar +@dirrm share/gnome/help/sound-juicer/C/figures +@dirrm share/gnome/help/sound-juicer/C +@dirrm share/gnome/help/sound-juicer +@dirrmtry share/applications +@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/xh/LC_MESSAGES +@dirrmtry share/locale/xh +@dirrmtry share/locale/ug/LC_MESSAGES +@dirrmtry share/locale/ug +@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/si/LC_MESSAGES +@dirrmtry share/locale/si +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/ku/LC_MESSAGES +@dirrmtry share/locale/ku +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@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