aboutsummaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/banshee/Makefile53
-rw-r--r--multimedia/banshee/distinfo5
-rw-r--r--multimedia/banshee/files/patch-libbanshee_banshee-player-pipeline.c13
-rw-r--r--multimedia/banshee/files/patch-src_Extensions_Banshee.YouTube_Banshee.YouTube.Gui_YouTubeTile.cs17
-rw-r--r--multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs19
-rw-r--r--multimedia/banshee/pkg-plist948
-rw-r--r--multimedia/moonlight/Makefile2
-rw-r--r--multimedia/moonlight/distinfo3
8 files changed, 661 insertions, 399 deletions
diff --git a/multimedia/banshee/Makefile b/multimedia/banshee/Makefile
index b33546a7e1c6..6840d215d833 100644
--- a/multimedia/banshee/Makefile
+++ b/multimedia/banshee/Makefile
@@ -6,15 +6,16 @@
#
PORTNAME= banshee
-PORTVERSION= 1.6.1
+PORTVERSION= 2.0.1
PORTEPOCH= 1
CATEGORIES= multimedia audio
MASTER_SITES= http://download.banshee.fm/${PORTNAME}/stable/${PORTVERSION}/
-DISTNAME= ${PORTNAME}-1-${PORTVERSION}
MAINTAINER= mono@FreeBSD.org
COMMENT= Music management and playback for gnome
+IGNORE= Unstable release. Freeses after a few minutes.
+
# Could do without bash, but it's brought in by gnome anyway.
BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/XML/Parser.pm:${PORTSDIR}/textproc/p5-XML-Parser \
bash:${PORTSDIR}/shells/bash
@@ -25,14 +26,15 @@ LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/mono.pc:${PORTSDIR}/lang/mono \
${LOCALBASE}/libdata/pkgconfig/ndesk-dbus-glib-1.0.pc:${PORTSDIR}/devel/ndesk-dbus-glib \
${LOCALBASE}/libdata/pkgconfig/taglib-sharp.pc:${PORTSDIR}/audio/taglib-sharp \
${LOCALBASE}/libdata/pkgconfig/mono-zeroconf.pc:${PORTSDIR}/net/mono-zeroconf \
- ${LOCALBASE}/libdata/pkgconfig/mono-addins.pc:${PORTSDIR}/devel/mono-addins
+ ${LOCALBASE}/libdata/pkgconfig/mono-addins.pc:${PORTSDIR}/devel/mono-addins \
+ ${LOCALBASE}/libdata/pkgconfig/notify-sharp.pc:${PORTSDIR}/devel/notify-sharp
OPTIONS= DOCS "Install documentation" on \
BOO "Enable Boo support" off \
BPMDETECT "Enable BPM detection" on \
MTP "Enable MTP support" on \
+ APPLEDEV "Enable Apple device DAP" off \
IPOD "Enable iPod support" on \
- WEBKIT "Enable Wikipedia support" on \
YOUTUBE "Enable Youtube support" on
USE_BZIP2= yes
@@ -41,14 +43,20 @@ USE_PERL5_BUILD=yes
GNU_CONFIGURE= yes
USE_GNOME= gnomehack gtksharp20 gnomesharp20
USE_GSTREAMER= cdparanoia
-USE_GETTEXT= yes
-USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}-1
+USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME:C/-.*//}
USE_XORG= xrandr xxf86vm
USE_SQLITE= yes
INSTALLS_ICONS= yes
CONFIGURE_TARGET= --build=${ARCH}-portbld-freebsd${OSREL}
-CONFIGURE_ARGS+= --with-vendor-build-id=FreeBSD\ BSD\#\ Project \
- --disable-gapless-playback
+CONFIGURE_ARGS+= --with-vendor-build-id=FreeBSD\ BSD\#\ Project
+
+.if !defined(WITHOUT_NLS)
+USE_GETTEXT= yes
+PLIST_SUB+= NLS=""
+.else
+CONFIGURE_ARGS+=--disable-nls
+PLIST_SUB+= NLS="@comment "
+.endif
# Need absolute path for build/icon-install-theme.
INSTALL= /usr/bin/install
@@ -56,8 +64,18 @@ INSTALL= /usr/bin/install
.include <bsd.port.pre.mk>
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
+.if exists(${LOCALBASE}/libdata/pkgconfig/gio-sharp-2.0.pc)
+PLIST_SUB+= HAS_GIO=""
+.else
+PLIST_SUB+= HAS_GIO="@comment "
+.endif
+
.if defined(WITHOUT_DOCS) || defined(NOPORTDOCS)
CONFIGURE_ARGS+= --disable-docs
+PLIST_SUB+= OPT_DOCS="@comment "
+.else
+CONFIGURE_ARGS+= --enable-docs
+PLIST_SUB+= OPT_DOCS=""
.endif
.if !defined(WITHOUT_BPMDETECT)
@@ -74,6 +92,16 @@ CONFIGURE_ARGS+=--disable-boo
PLIST_SUB+= OPT_BOO="@comment "
.endif
+.if !defined(WITHOUT_APPLEDEV)
+CONFIGURE_ARGS+=--enable-appledevice
+LIB_PC_DEPENDS+=${LOCALBASE}/libdata/pkgconfig/libgpodsharp.pc:${PORTSDIR}/audio/libgpod
+BROKEN= Missing dependency
+PLIST_SUB+= APPLEDEV=""
+.else
+CONFIGURE_ARGS+=--disable-appledevice
+PLIST_SUB+= APPLEDEV="@comment "
+.endif
+
.if !defined(WITHOUT_IPOD)
CONFIGURE_ARGS+=--enable-ipod
LIB_PC_DEPENDS+=${LOCALBASE}/libdata/pkgconfig/ipod-sharp-ui.pc:${PORTSDIR}/audio/ipod-sharp
@@ -92,15 +120,6 @@ CONFIGURE_ARGS+=--disable-mtp
PLIST_SUB+= OPT_MTP="@comment "
.endif
-.if !defined(WITHOUT_WEBKIT)
-CONFIGURE_ARGS+=--enable-webkit
-LIB_PC_DEPENDS+=${LOCALBASE}/libdata/pkgconfig/webkit-sharp-1.0.pc:${PORTSDIR}/www/webkit-sharp
-PLIST_SUB+= OPT_WEBKIT=""
-.else
-CONFIGURE_ARGS+=--disable-webkit
-PLIST_SUB+= OPT_WEBKIT="@comment "
-.endif
-
.if !defined(WITHOUT_YOUTUBE)
CONFIGURE_ARGS+=--enable-youtube
LIB_PC_DEPENDS+=${LOCALBASE}/libdata/pkgconfig/gdata-sharp-youtube.pc:${PORTSDIR}/devel/google-gdata
diff --git a/multimedia/banshee/distinfo b/multimedia/banshee/distinfo
index b1e2cc8195c0..41416ba77a15 100644
--- a/multimedia/banshee/distinfo
+++ b/multimedia/banshee/distinfo
@@ -1,3 +1,2 @@
-MD5 (banshee-1-1.6.1.tar.bz2) = c3456dfa052d9a323f68d3763212c23d
-SHA256 (banshee-1-1.6.1.tar.bz2) = ff7f79a8b86a819cffe0ff88aa9f8ab9ea3e2fcc540f3c6e82bf150a505cacd0
-SIZE (banshee-1-1.6.1.tar.bz2) = 3171776
+SHA256 (banshee-2.0.1.tar.bz2) = 9812820c3c6eca523ed58873bb8c911f287ffce7c2925110511cbf6f5fde9c74
+SIZE (banshee-2.0.1.tar.bz2) = 3635807
diff --git a/multimedia/banshee/files/patch-libbanshee_banshee-player-pipeline.c b/multimedia/banshee/files/patch-libbanshee_banshee-player-pipeline.c
deleted file mode 100644
index ec5d75df771f..000000000000
--- a/multimedia/banshee/files/patch-libbanshee_banshee-player-pipeline.c
+++ /dev/null
@@ -1,13 +0,0 @@
-
-$FreeBSD$
-
---- libbanshee/banshee-player-pipeline.c.orig
-+++ libbanshee/banshee-player-pipeline.c
-@@ -236,6 +236,7 @@
-
- static void bp_volume_changed_callback (GstElement *playbin, GParamSpec *spec, BansheePlayer *player)
- {
-+ return;
- g_return_if_fail (IS_BANSHEE_PLAYER (player));
- g_return_if_fail (GST_IS_ELEMENT (playbin));
-
diff --git a/multimedia/banshee/files/patch-src_Extensions_Banshee.YouTube_Banshee.YouTube.Gui_YouTubeTile.cs b/multimedia/banshee/files/patch-src_Extensions_Banshee.YouTube_Banshee.YouTube.Gui_YouTubeTile.cs
deleted file mode 100644
index 983d157cab0f..000000000000
--- a/multimedia/banshee/files/patch-src_Extensions_Banshee.YouTube_Banshee.YouTube.Gui_YouTubeTile.cs
+++ /dev/null
@@ -1,17 +0,0 @@
-
-$FreeBSD$
-
-Unbreak Youtube extension for streaming files from withing Banshee 1.6.1.
-Taken from the git repository.
-
---- src/Extensions/Banshee.YouTube/Banshee.YouTube.Gui/YouTubeTile.cs.orig
-+++ src/Extensions/Banshee.YouTube/Banshee.YouTube.Gui/YouTubeTile.cs
-@@ -146,7 +146,7 @@
- return null;
- }
-
-- Regex regex = new Regex ("'SWF_ARGS'.*\"t\": \"([^\"]+)\"");
-+ Regex regex = new Regex ("swfHTML = .*&t=([^&]+)&");
- Match match = regex.Match (watch_page_contents);
-
- if (!match.Success) {
diff --git a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs b/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs
index 530035aab0ca..02c09fefe6b7 100644
--- a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs
+++ b/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs
@@ -3,16 +3,19 @@ $FreeBSD$
--- src/Libraries/MusicBrainz/MusicBrainz/LocalDisc.cs.orig
+++ src/Libraries/MusicBrainz/MusicBrainz/LocalDisc.cs
-@@ -131,7 +131,11 @@
- try {
+@@ -133,11 +133,11 @@
switch (Environment.OSVersion.Platform){
case PlatformID.Unix:
-- return new DiscLinux (device);
-+ try {
-+ return new DiscLinux (device);
-+ } catch {
-+ return new DiscFreeBSD (device);
-+ }
+ // TODO can we actually detect the environment?
+- //try {
++ try {
+ return new DiscLinux (device);
+- //} catch {
+- // return new DiscFreeBSD (device);
+- //}
++ } catch {
++ return new DiscFreeBSD (device);
++ }
//case PlatformID.Win32NT:
//return new DiscWin32NT (device);
default:
diff --git a/multimedia/banshee/pkg-plist b/multimedia/banshee/pkg-plist
index 37f1a65d1ec8..893c9e6a8a75 100644
--- a/multimedia/banshee/pkg-plist
+++ b/multimedia/banshee/pkg-plist
@@ -1,353 +1,625 @@
-bin/banshee-1
+bin/bamz
+bin/banshee
bin/muinshee
-lib/banshee-1/Backends/Banshee.GStreamer.dll
-lib/banshee-1/Backends/Banshee.GStreamer.dll.config
-lib/banshee-1/Backends/Banshee.GStreamer.dll.mdb
-lib/banshee-1/Backends/Banshee.Gnome.dll
-lib/banshee-1/Backends/Banshee.Gnome.dll.mdb
-lib/banshee-1/Backends/Banshee.Hal.dll
-lib/banshee-1/Backends/Banshee.Hal.dll.mdb
-lib/banshee-1/Backends/Banshee.NowPlaying.X11.dll
-lib/banshee-1/Backends/Banshee.NowPlaying.X11.dll.mdb
-lib/banshee-1/Backends/Banshee.Unix.dll
-lib/banshee-1/Backends/Banshee.Unix.dll.config
-lib/banshee-1/Backends/Banshee.Unix.dll.mdb
-lib/banshee-1/Backends/libbnpx11.a
-lib/banshee-1/Backends/libbnpx11.la
-lib/banshee-1/Backends/libbnpx11.so
-lib/banshee-1/Banshee.CollectionIndexer.dll
-lib/banshee-1/Banshee.CollectionIndexer.dll.mdb
-lib/banshee-1/Banshee.Core.dll
-lib/banshee-1/Banshee.Core.dll.config
-lib/banshee-1/Banshee.Core.dll.mdb
-lib/banshee-1/Banshee.Services.addins
-lib/banshee-1/Banshee.Services.dll
-lib/banshee-1/Banshee.Services.dll.mdb
-lib/banshee-1/Banshee.ThickClient.dll
-lib/banshee-1/Banshee.ThickClient.dll.mdb
-lib/banshee-1/Banshee.Widgets.dll
-lib/banshee-1/Banshee.Widgets.dll.config
-lib/banshee-1/Banshee.Widgets.dll.mdb
-lib/banshee-1/Banshee.exe
-lib/banshee-1/Banshee.exe.config
-lib/banshee-1/Banshee.exe.mdb
-lib/banshee-1/Beroe.exe
-lib/banshee-1/Beroe.exe.mdb
-lib/banshee-1/Extensions/Banshee.AudioCd.dll
-lib/banshee-1/Extensions/Banshee.AudioCd.dll.mdb
-lib/banshee-1/Extensions/Banshee.Audiobook.dll
-lib/banshee-1/Extensions/Banshee.Audiobook.dll.mdb
-%%OPT_BOO%%lib/banshee-1/Extensions/Banshee.BooScript.dll
-%%OPT_BOO%%lib/banshee-1/Extensions/Banshee.BooScript.dll.mdb
-lib/banshee-1/Extensions/Banshee.Bookmarks.dll
-lib/banshee-1/Extensions/Banshee.Bookmarks.dll.mdb
-lib/banshee-1/Extensions/Banshee.Bpm.dll
-lib/banshee-1/Extensions/Banshee.Bpm.dll.mdb
-lib/banshee-1/Extensions/Banshee.CoverArt.dll
-lib/banshee-1/Extensions/Banshee.CoverArt.dll.mdb
-lib/banshee-1/Extensions/Banshee.Daap.dll
-lib/banshee-1/Extensions/Banshee.Daap.dll.mdb
-%%OPT_IPOD%%lib/banshee-1/Extensions/Banshee.Dap.Ipod.dll
-%%OPT_IPOD%%lib/banshee-1/Extensions/Banshee.Dap.Ipod.dll.mdb
-lib/banshee-1/Extensions/Banshee.Dap.MassStorage.dll
-lib/banshee-1/Extensions/Banshee.Dap.MassStorage.dll.mdb
-%%OPT_MTP%%lib/banshee-1/Extensions/Banshee.Dap.Mtp.dll
-%%OPT_MTP%%lib/banshee-1/Extensions/Banshee.Dap.Mtp.dll.mdb
-lib/banshee-1/Extensions/Banshee.Dap.dll
-lib/banshee-1/Extensions/Banshee.Dap.dll.mdb
-lib/banshee-1/Extensions/Banshee.Emusic.dll
-lib/banshee-1/Extensions/Banshee.Emusic.dll.mdb
-lib/banshee-1/Extensions/Banshee.FileSystemQueue.dll
-lib/banshee-1/Extensions/Banshee.FileSystemQueue.dll.mdb
-lib/banshee-1/Extensions/Banshee.InternetArchive.dll
-lib/banshee-1/Extensions/Banshee.InternetArchive.dll.mdb
-lib/banshee-1/Extensions/Banshee.InternetRadio.dll
-lib/banshee-1/Extensions/Banshee.InternetRadio.dll.mdb
-lib/banshee-1/Extensions/Banshee.Lastfm.dll
-lib/banshee-1/Extensions/Banshee.Lastfm.dll.mdb
-lib/banshee-1/Extensions/Banshee.LibraryWatcher.dll
-lib/banshee-1/Extensions/Banshee.LibraryWatcher.dll.mdb
-lib/banshee-1/Extensions/Banshee.MiniMode.dll
-lib/banshee-1/Extensions/Banshee.MiniMode.dll.mdb
-lib/banshee-1/Extensions/Banshee.MultimediaKeys.dll
-lib/banshee-1/Extensions/Banshee.MultimediaKeys.dll.mdb
-lib/banshee-1/Extensions/Banshee.NotificationArea.dll
-lib/banshee-1/Extensions/Banshee.NotificationArea.dll.config
-lib/banshee-1/Extensions/Banshee.NotificationArea.dll.mdb
-lib/banshee-1/Extensions/Banshee.NowPlaying.dll
-lib/banshee-1/Extensions/Banshee.NowPlaying.dll.mdb
-lib/banshee-1/Extensions/Banshee.PlayQueue.dll
-lib/banshee-1/Extensions/Banshee.PlayQueue.dll.mdb
-lib/banshee-1/Extensions/Banshee.PlayerMigration.dll
-lib/banshee-1/Extensions/Banshee.PlayerMigration.dll.mdb
-lib/banshee-1/Extensions/Banshee.Podcasting.dll
-lib/banshee-1/Extensions/Banshee.Podcasting.dll.mdb
-%%OPT_WEBKIT%%lib/banshee-1/Extensions/Banshee.Wikipedia.dll
-%%OPT_WEBKIT%%lib/banshee-1/Extensions/Banshee.Wikipedia.dll.mdb
-%%OPT_YOUTUBE%%lib/banshee-1/Extensions/Banshee.YouTube.dll
-%%OPT_YOUTUBE%%lib/banshee-1/Extensions/Banshee.YouTube.dll.mdb
-%%OPT_IPOD%%lib/banshee-1/Extensions/ipod-sharp-ui.dll
-%%OPT_IPOD%%lib/banshee-1/Extensions/ipod-sharp-ui.dll.mdb
-%%OPT_IPOD%%lib/banshee-1/Extensions/ipod-sharp.dll
-%%OPT_IPOD%%lib/banshee-1/Extensions/ipod-sharp.dll.mdb
-lib/banshee-1/Halie.exe
-lib/banshee-1/Halie.exe.mdb
-lib/banshee-1/Hyena.Gui.dll
-lib/banshee-1/Hyena.Gui.dll.config
-lib/banshee-1/Hyena.Gui.dll.mdb
-lib/banshee-1/Hyena.dll
-lib/banshee-1/Hyena.dll.mdb
-lib/banshee-1/Lastfm.Gui.dll
-lib/banshee-1/Lastfm.Gui.dll.mdb
-lib/banshee-1/Lastfm.dll
-lib/banshee-1/Lastfm.dll.mdb
-lib/banshee-1/Migo.dll
-lib/banshee-1/Migo.dll.mdb
-lib/banshee-1/Mono.Data.Sqlite.dll
-lib/banshee-1/Mono.Data.Sqlite.dll.mdb
-lib/banshee-1/Mono.Media.dll
-lib/banshee-1/Mono.Media.dll.mdb
-%%OPT_MTP%%lib/banshee-1/Mtp.dll
-%%OPT_MTP%%lib/banshee-1/Mtp.dll.config
-%%OPT_MTP%%lib/banshee-1/Mtp.dll.mdb
-lib/banshee-1/Muinshee.exe
-lib/banshee-1/Muinshee.exe.mdb
-lib/banshee-1/MusicBrainz.dll
-lib/banshee-1/MusicBrainz.dll.mdb
-lib/banshee-1/Nereid.exe
-lib/banshee-1/Nereid.exe.mdb
-lib/banshee-1/gconf-schema-extractor.exe
-lib/banshee-1/gstreamer-0.10/libgstequalizer.a
-lib/banshee-1/gstreamer-0.10/libgstequalizer.la
-lib/banshee-1/gstreamer-0.10/libgstequalizer.so
-lib/banshee-1/libbanshee.a
-lib/banshee-1/libbanshee.la
-lib/banshee-1/libbanshee.so
+lib/banshee/Backends/Banshee.GStreamer.dll
+lib/banshee/Backends/Banshee.GStreamer.dll.config
+lib/banshee/Backends/Banshee.GStreamer.dll.mdb
+%%HAS_GIO%%lib/banshee/Backends/Banshee.Gio.dll
+%%HAS_GIO%%lib/banshee/Backends/Banshee.Gio.dll.mdb
+lib/banshee/Backends/Banshee.Gnome.dll
+lib/banshee/Backends/Banshee.Gnome.dll.mdb
+lib/banshee/Backends/Banshee.Hal.dll
+lib/banshee/Backends/Banshee.Hal.dll.mdb
+lib/banshee/Backends/Banshee.NowPlaying.X11.dll
+lib/banshee/Backends/Banshee.NowPlaying.X11.dll.mdb
+lib/banshee/Backends/Banshee.Unix.dll
+lib/banshee/Backends/Banshee.Unix.dll.config
+lib/banshee/Backends/Banshee.Unix.dll.mdb
+lib/banshee/Backends/libbnpx11.a
+lib/banshee/Backends/libbnpx11.la
+lib/banshee/Backends/libbnpx11.so
+lib/banshee/Banshee.CollectionIndexer.dll
+lib/banshee/Banshee.CollectionIndexer.dll.mdb
+lib/banshee/Banshee.Core.dll
+lib/banshee/Banshee.Core.dll.config
+lib/banshee/Banshee.Core.dll.mdb
+lib/banshee/Banshee.Services.addins
+lib/banshee/Banshee.Services.dll
+lib/banshee/Banshee.Services.dll.config
+lib/banshee/Banshee.Services.dll.mdb
+lib/banshee/Banshee.ThickClient.dll
+lib/banshee/Banshee.ThickClient.dll.mdb
+lib/banshee/Banshee.WebBrowser.dll
+lib/banshee/Banshee.WebBrowser.dll.mdb
+lib/banshee/Banshee.Widgets.dll
+lib/banshee/Banshee.Widgets.dll.config
+lib/banshee/Banshee.Widgets.dll.mdb
+lib/banshee/Banshee.exe
+lib/banshee/Banshee.exe.config
+lib/banshee/Banshee.exe.mdb
+lib/banshee/Beroe.exe
+lib/banshee/Beroe.exe.mdb
+lib/banshee/Extensions/Banshee.AmazonMp3.exe
+lib/banshee/Extensions/Banshee.AmazonMp3.exe.mdb
+lib/banshee/Extensions/Banshee.AmazonMp3.Store.dll
+lib/banshee/Extensions/Banshee.AmazonMp3.Store.dll.mdb
+lib/banshee/Extensions/Banshee.AudioCd.dll
+lib/banshee/Extensions/Banshee.AudioCd.dll.mdb
+lib/banshee/Extensions/Banshee.Audiobook.dll
+lib/banshee/Extensions/Banshee.Audiobook.dll.mdb
+%%OPT_BOO%%lib/banshee/Extensions/Banshee.BooScript.dll
+%%OPT_BOO%%lib/banshee/Extensions/Banshee.BooScript.dll.mdb
+lib/banshee/Extensions/Banshee.Bpm.dll
+lib/banshee/Extensions/Banshee.Bpm.dll.mdb
+lib/banshee/Extensions/Banshee.CoverArt.dll
+lib/banshee/Extensions/Banshee.CoverArt.dll.mdb
+lib/banshee/Extensions/Banshee.Daap.dll
+lib/banshee/Extensions/Banshee.Daap.dll.mdb
+%%OPT_IPOD%%lib/banshee/Extensions/Banshee.Dap.Ipod.dll
+%%OPT_IPOD%%lib/banshee/Extensions/Banshee.Dap.Ipod.dll.mdb
+lib/banshee/Extensions/Banshee.Dap.MassStorage.dll
+lib/banshee/Extensions/Banshee.Dap.MassStorage.dll.mdb
+%%OPT_MTP%%lib/banshee/Extensions/Banshee.Dap.Mtp.dll
+%%OPT_MTP%%lib/banshee/Extensions/Banshee.Dap.Mtp.dll.mdb
+lib/banshee/Extensions/Banshee.Dap.dll
+lib/banshee/Extensions/Banshee.Dap.dll.mdb
+lib/banshee/Extensions/Banshee.Emusic.dll
+lib/banshee/Extensions/Banshee.Emusic.dll.mdb
+lib/banshee/Extensions/Banshee.FileSystemQueue.dll
+lib/banshee/Extensions/Banshee.FileSystemQueue.dll.mdb
+lib/banshee/Extensions/Banshee.Fixup.dll
+lib/banshee/Extensions/Banshee.Fixup.dll.mdb
+lib/banshee/Extensions/Banshee.InternetArchive.dll
+lib/banshee/Extensions/Banshee.InternetArchive.dll.mdb
+lib/banshee/Extensions/Banshee.InternetRadio.dll
+lib/banshee/Extensions/Banshee.InternetRadio.dll.mdb
+lib/banshee/Extensions/Banshee.Lastfm.dll
+lib/banshee/Extensions/Banshee.Lastfm.dll.mdb
+lib/banshee/Extensions/Banshee.LastfmStreaming.dll
+lib/banshee/Extensions/Banshee.LastfmStreaming.dll.mdb
+lib/banshee/Extensions/Banshee.LibraryWatcher.dll
+lib/banshee/Extensions/Banshee.LibraryWatcher.dll.mdb
+lib/banshee/Extensions/Banshee.MiniMode.dll
+lib/banshee/Extensions/Banshee.MiniMode.dll.mdb
+lib/banshee/Extensions/Banshee.MiroGuide.dll
+lib/banshee/Extensions/Banshee.MiroGuide.dll.mdb
+lib/banshee/Extensions/Banshee.Mpris.dll
+lib/banshee/Extensions/Banshee.Mpris.dll.mdb
+lib/banshee/Extensions/Banshee.MultimediaKeys.dll
+lib/banshee/Extensions/Banshee.MultimediaKeys.dll.mdb
+lib/banshee/Extensions/Banshee.NotificationArea.dll
+lib/banshee/Extensions/Banshee.NotificationArea.dll.config
+lib/banshee/Extensions/Banshee.NotificationArea.dll.mdb
+lib/banshee/Extensions/Banshee.NowPlaying.dll
+lib/banshee/Extensions/Banshee.NowPlaying.dll.mdb
+lib/banshee/Extensions/Banshee.PlayQueue.dll
+lib/banshee/Extensions/Banshee.PlayQueue.dll.mdb
+lib/banshee/Extensions/Banshee.PlayerMigration.dll
+lib/banshee/Extensions/Banshee.PlayerMigration.dll.mdb
+lib/banshee/Extensions/Banshee.Podcasting.dll
+lib/banshee/Extensions/Banshee.Podcasting.dll.mdb
+lib/banshee/Extensions/Banshee.Wikipedia.dll
+lib/banshee/Extensions/Banshee.Wikipedia.dll.mdb
+%%OPT_YOUTUBE%%lib/banshee/Extensions/Banshee.YouTube.dll
+%%OPT_YOUTUBE%%lib/banshee/Extensions/Banshee.YouTube.dll.mdb
+%%OPT_IPOD%%lib/banshee/Extensions/ipod-sharp-ui.dll
+%%OPT_IPOD%%lib/banshee/Extensions/ipod-sharp-ui.dll.mdb
+%%OPT_IPOD%%lib/banshee/Extensions/ipod-sharp.dll
+%%OPT_IPOD%%lib/banshee/Extensions/ipod-sharp.dll.mdb
+lib/banshee/Halie.exe
+lib/banshee/Halie.exe.mdb
+lib/banshee/Hyena.Data.Sqlite.dll
+lib/banshee/Hyena.Data.Sqlite.dll.mdb
+lib/banshee/Hyena.Gui.dll
+lib/banshee/Hyena.Gui.dll.config
+lib/banshee/Hyena.Gui.dll.mdb
+lib/banshee/Hyena.dll
+lib/banshee/Hyena.dll.config
+lib/banshee/Hyena.dll.mdb
+lib/banshee/Lastfm.Gui.dll
+lib/banshee/Lastfm.Gui.dll.mdb
+lib/banshee/Lastfm.dll
+lib/banshee/Lastfm.dll.mdb
+lib/banshee/Migo.dll
+lib/banshee/Migo.dll.mdb
+lib/banshee/Mono.Media.dll
+lib/banshee/Mono.Media.dll.mdb
+%%OPT_MTP%%lib/banshee/Mtp.dll
+%%OPT_MTP%%lib/banshee/Mtp.dll.config
+%%OPT_MTP%%lib/banshee/Mtp.dll.mdb
+lib/banshee/Muinshee.exe
+lib/banshee/Muinshee.exe.mdb
+lib/banshee/MusicBrainz.dll
+lib/banshee/MusicBrainz.dll.mdb
+lib/banshee/Nereid.exe
+lib/banshee/Nereid.exe.mdb
+lib/banshee/gconf-schema-extractor.exe
+lib/banshee/gstreamer-0.10/libgstequalizer.a
+lib/banshee/gstreamer-0.10/libgstequalizer.la
+lib/banshee/gstreamer-0.10/libgstequalizer.so
+lib/banshee/libbanshee.a
+lib/banshee/libbanshee.la
+lib/banshee/libbanshee.so
+lib/banshee/libossifer.a
+lib/banshee/libossifer.la
+lib/banshee/libossifer.so
%%PORTDOCS%%lib/monodoc/sources/banshee-docs.source
%%PORTDOCS%%lib/monodoc/sources/banshee-docs.tree
%%PORTDOCS%%lib/monodoc/sources/banshee-docs.zip
%%PORTDOCS%%lib/monodoc/sources/hyena-docs.source
%%PORTDOCS%%lib/monodoc/sources/hyena-docs.tree
%%PORTDOCS%%lib/monodoc/sources/hyena-docs.zip
-libdata/pkgconfig/banshee-1-collection-indexer.pc
-libdata/pkgconfig/banshee-1-core.pc
-libdata/pkgconfig/banshee-1-hyena-gui.pc
-libdata/pkgconfig/banshee-1-hyena.pc
-libdata/pkgconfig/banshee-1-lastfm-gui.pc
-libdata/pkgconfig/banshee-1-lastfm.pc
-libdata/pkgconfig/banshee-1-mono-media.pc
-libdata/pkgconfig/banshee-1-musicbrainz.pc
-libdata/pkgconfig/banshee-1-nowplaying.pc
-libdata/pkgconfig/banshee-1-services.pc
-libdata/pkgconfig/banshee-1-thickclient.pc
-share/applications/banshee-1-audiocd.desktop
-share/applications/banshee-1-media-player.desktop
-share/applications/banshee-1.desktop
-share/banshee-1/audio-profiles/aac-novell.xml
-share/banshee-1/audio-profiles/base.xml
-share/banshee-1/audio-profiles/flac.xml
-share/banshee-1/audio-profiles/mp3-lame.xml
-share/banshee-1/audio-profiles/mp3-xing.xml
-share/banshee-1/audio-profiles/vorbis.xml
-share/banshee-1/audio-profiles/wav.xml
-share/banshee-1/audio-profiles/wavpack.xml
-share/banshee-1/audio-profiles/wma.xml
-share/banshee-1/icons/hicolor/128x128/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/128x128/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/128x128/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/16x16/actions/media-import-audio-cd.png
-share/banshee-1/icons/hicolor/16x16/actions/media-repeat-all.png
-share/banshee-1/icons/hicolor/16x16/actions/media-repeat-none.png
-share/banshee-1/icons/hicolor/16x16/actions/media-repeat-single.png
-share/banshee-1/icons/hicolor/16x16/actions/media-write-cd.png
-share/banshee-1/icons/hicolor/16x16/categories/amazon-mp3-source.png
-share/banshee-1/icons/hicolor/16x16/categories/audiobook.png
-share/banshee-1/icons/hicolor/16x16/categories/podcast.png
-share/banshee-1/icons/hicolor/16x16/categories/source-playlist.png
-share/banshee-1/icons/hicolor/16x16/categories/source-smart-playlist.png
-share/banshee-1/icons/hicolor/16x16/categories/wikipedia.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-U2-color.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-U2-monochrome.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-mini-blue.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-mini-gold.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-mini-green.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-mini-pink.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-mini-silver.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-nano-black.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-nano-white.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-shuffle.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-standard-color.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-standard-monochrome.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-video-black.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/16x16/devices/multimedia-player-ipod-video-white.png
-share/banshee-1/icons/hicolor/16x16/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/16x16/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/16x16/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/16x16/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/16x16/emblems/creative-commons-by.png
-share/banshee-1/icons/hicolor/16x16/emblems/creative-commons-nc.png
-share/banshee-1/icons/hicolor/16x16/emblems/creative-commons-nd.png
-share/banshee-1/icons/hicolor/16x16/emblems/creative-commons-pd.png
-share/banshee-1/icons/hicolor/16x16/emblems/creative-commons-sa.png
-share/banshee-1/icons/hicolor/16x16/status/podcast-new.png
-share/banshee-1/icons/hicolor/22x22/actions/encode.png
-share/banshee-1/icons/hicolor/22x22/actions/media-import-audio-cd.png
-share/banshee-1/icons/hicolor/22x22/actions/media-write-cd.png
-share/banshee-1/icons/hicolor/22x22/categories/amazon-mp3-source.png
-share/banshee-1/icons/hicolor/22x22/categories/audiobook.png
-share/banshee-1/icons/hicolor/22x22/categories/internet-archive.png
-share/banshee-1/icons/hicolor/22x22/categories/lastfm-audioscrobbler.png
-share/banshee-1/icons/hicolor/22x22/categories/lastfm-neighbour.png
-share/banshee-1/icons/hicolor/22x22/categories/lastfm-personal.png
-share/banshee-1/icons/hicolor/22x22/categories/lastfm-recommended.png
-share/banshee-1/icons/hicolor/22x22/categories/lastfm-tag.png
-share/banshee-1/icons/hicolor/22x22/categories/podcast.png
-share/banshee-1/icons/hicolor/22x22/categories/radio.png
-share/banshee-1/icons/hicolor/22x22/categories/source-playlist.png
-share/banshee-1/icons/hicolor/22x22/categories/source-smart-playlist.png
-share/banshee-1/icons/hicolor/22x22/categories/wikipedia.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-U2-color.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-U2-monochrome.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-mini-blue.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-mini-gold.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-mini-green.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-mini-pink.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-mini-silver.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-nano-black.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-nano-white.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-shuffle.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-standard-color.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-standard-monochrome.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-video-black.png
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/22x22/devices/multimedia-player-ipod-video-white.png
-share/banshee-1/icons/hicolor/22x22/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/22x22/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/22x22/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/22x22/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/24x24/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/24x24/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/24x24/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/24x24/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/256x256/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/256x256/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/32x32/actions/media-write-cd.png
-share/banshee-1/icons/hicolor/32x32/categories/wikipedia.png
-share/banshee-1/icons/hicolor/32x32/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/32x32/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/32x32/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/32x32/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/48x48/actions/media-write-cd.png
-share/banshee-1/icons/hicolor/48x48/categories/audiobook.png
-share/banshee-1/icons/hicolor/48x48/categories/podcast.png
-share/banshee-1/icons/hicolor/48x48/categories/radio.png
-share/banshee-1/icons/hicolor/48x48/categories/wikipedia.png
-share/banshee-1/icons/hicolor/48x48/devices/phone-google-nexus-one.png
-share/banshee-1/icons/hicolor/48x48/devices/phone-htc-g1-white.png
-share/banshee-1/icons/hicolor/48x48/devices/phone-nokia-n900.png
-share/banshee-1/icons/hicolor/48x48/devices/phone-palm-pre.png
-share/banshee-1/icons/hicolor/scalable/categories/audiobook.svg
-share/banshee-1/icons/hicolor/scalable/categories/radio.svg
-share/banshee-1/icons/hicolor/scalable/categories/wikipedia.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-U2-color.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-U2-monochrome.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-mini-blue.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-mini-gold.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-mini-green.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-mini-pink.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-mini-silver.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-nano-black.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-nano-white.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-shuffle.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-standard-color.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-standard-monochrome.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-video-black.svg
-%%OPT_IPOD%%share/banshee-1/icons/hicolor/scalable/devices/multimedia-player-ipod-video-white.svg
-share/banshee-1/icons/hicolor/scalable/devices/phone-nokia-n900.svg
-share/banshee-1/icons/hicolor/scalable/devices/phone-palm-pre.svg
+libdata/pkgconfig/banshee-collection-indexer.pc
+libdata/pkgconfig/banshee-core.pc
+libdata/pkgconfig/banshee-hyena-data-sqlite.pc
+libdata/pkgconfig/banshee-hyena-gui.pc
+libdata/pkgconfig/banshee-hyena.pc
+libdata/pkgconfig/banshee-lastfm-gui.pc
+libdata/pkgconfig/banshee-lastfm.pc
+libdata/pkgconfig/banshee-mono-media.pc
+libdata/pkgconfig/banshee-musicbrainz.pc
+libdata/pkgconfig/banshee-nowplaying.pc
+libdata/pkgconfig/banshee-services.pc
+libdata/pkgconfig/banshee-thickclient.pc
+libdata/pkgconfig/banshee-webbrowser.pc
+share/applications/banshee-audiocd.desktop
+share/applications/banshee-media-player.desktop
+share/applications/banshee.desktop
+share/banshee/audio-profiles/aac-novell.xml
+share/banshee/audio-profiles/base.xml
+share/banshee/audio-profiles/flac.xml
+share/banshee/audio-profiles/mp3-lame.xml
+share/banshee/audio-profiles/mp3-xing.xml
+share/banshee/audio-profiles/vorbis.xml
+share/banshee/audio-profiles/wav.xml
+share/banshee/audio-profiles/wavpack.xml
+share/banshee/audio-profiles/wma.xml
+share/banshee/icons/hicolor/128x128/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/128x128/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/128x128/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/16x16/actions/media-import-audio-cd.png
+share/banshee/icons/hicolor/16x16/actions/media-repeat-all.png
+share/banshee/icons/hicolor/16x16/actions/media-repeat-none.png
+share/banshee/icons/hicolor/16x16/actions/media-repeat-single.png
+share/banshee/icons/hicolor/16x16/actions/media-write-cd.png
+share/banshee/icons/hicolor/16x16/categories/amazon-mp3-source.png
+share/banshee/icons/hicolor/16x16/categories/amazon-mp3-store-source.png
+share/banshee/icons/hicolor/16x16/categories/audiobook.png
+share/banshee/icons/hicolor/16x16/categories/internet-archive.png
+share/banshee/icons/hicolor/16x16/categories/lastfm-audioscrobbler.png
+share/banshee/icons/hicolor/16x16/categories/lastfm-neighbour.png
+share/banshee/icons/hicolor/16x16/categories/lastfm-personal.png
+share/banshee/icons/hicolor/16x16/categories/lastfm-recommended.png
+share/banshee/icons/hicolor/16x16/categories/lastfm-tag.png
+share/banshee/icons/hicolor/16x16/categories/miro-guide-source.png
+share/banshee/icons/hicolor/16x16/categories/podcast.png
+share/banshee/icons/hicolor/16x16/categories/radio.png
+share/banshee/icons/hicolor/16x16/categories/source-playlist.png
+share/banshee/icons/hicolor/16x16/categories/source-smart-playlist.png
+share/banshee/icons/hicolor/16x16/categories/wikipedia.png
+share/banshee/icons/hicolor/16x16/categories/youtube.png
+share/banshee/icons/hicolor/16x16/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/16x16/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/16x16/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/16x16/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/16x16/emblems/creative-commons-by.png
+share/banshee/icons/hicolor/16x16/emblems/creative-commons-nc.png
+share/banshee/icons/hicolor/16x16/emblems/creative-commons-nd.png
+share/banshee/icons/hicolor/16x16/emblems/creative-commons-pd.png
+share/banshee/icons/hicolor/16x16/emblems/creative-commons-sa.png
+share/banshee/icons/hicolor/16x16/status/podcast-new.png
+share/banshee/icons/hicolor/22x22/actions/encode.png
+share/banshee/icons/hicolor/22x22/actions/media-import-audio-cd.png
+share/banshee/icons/hicolor/22x22/actions/media-write-cd.png
+share/banshee/icons/hicolor/22x22/categories/amazon-mp3-source.png
+share/banshee/icons/hicolor/22x22/categories/amazon-mp3-store-source.png
+share/banshee/icons/hicolor/22x22/categories/audiobook.png
+share/banshee/icons/hicolor/22x22/categories/internet-archive.png
+share/banshee/icons/hicolor/22x22/categories/lastfm-audioscrobbler.png
+share/banshee/icons/hicolor/22x22/categories/lastfm-neighbour.png
+share/banshee/icons/hicolor/22x22/categories/lastfm-personal.png
+share/banshee/icons/hicolor/22x22/categories/lastfm-recommended.png
+share/banshee/icons/hicolor/22x22/categories/lastfm-tag.png
+share/banshee/icons/hicolor/22x22/categories/miro-guide-source.png
+share/banshee/icons/hicolor/22x22/categories/podcast.png
+share/banshee/icons/hicolor/22x22/categories/radio.png
+share/banshee/icons/hicolor/22x22/categories/source-playlist.png
+share/banshee/icons/hicolor/22x22/categories/source-smart-playlist.png
+share/banshee/icons/hicolor/22x22/categories/wikipedia.png
+share/banshee/icons/hicolor/22x22/categories/youtube.png
+share/banshee/icons/hicolor/22x22/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/22x22/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/22x22/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/22x22/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/24x24/categories/miro-guide-source.png
+share/banshee/icons/hicolor/24x24/categories/youtube.png
+share/banshee/icons/hicolor/24x24/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/24x24/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/24x24/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/24x24/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/256x256/categories/audiobook.png
+share/banshee/icons/hicolor/256x256/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/256x256/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/32x32/actions/media-write-cd.png
+share/banshee/icons/hicolor/32x32/categories/miro-guide-source.png
+share/banshee/icons/hicolor/32x32/categories/wikipedia.png
+share/banshee/icons/hicolor/32x32/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/32x32/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/32x32/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/32x32/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/48x48/actions/media-write-cd.png
+share/banshee/icons/hicolor/48x48/categories/audiobook.png
+share/banshee/icons/hicolor/48x48/categories/miro-guide-source.png
+share/banshee/icons/hicolor/48x48/categories/podcast.png
+share/banshee/icons/hicolor/48x48/categories/radio.png
+share/banshee/icons/hicolor/48x48/categories/wikipedia.png
+share/banshee/icons/hicolor/48x48/devices/phone-google-nexus-one.png
+share/banshee/icons/hicolor/48x48/devices/phone-htc-g1-white.png
+share/banshee/icons/hicolor/48x48/devices/phone-nokia-n900.png
+share/banshee/icons/hicolor/48x48/devices/phone-palm-pre.png
+share/banshee/icons/hicolor/scalable/categories/miro-guide-source.svg
+share/banshee/icons/hicolor/scalable/categories/radio.svg
+share/banshee/icons/hicolor/scalable/categories/wikipedia.svg
+share/banshee/icons/hicolor/scalable/devices/phone-nokia-n900.svg
share/dbus-1/services/org.bansheeproject.Banshee.service
share/dbus-1/services/org.bansheeproject.CollectionIndexer.service
+share/gnome/help/banshee/C/add-podcast.page
+share/gnome/help/banshee/C/add-radio.page
+share/gnome/help/banshee/C/advanced.page
+share/gnome/help/banshee/C/amazon.page
+share/gnome/help/banshee/C/emusic.page
+share/gnome/help/banshee/C/extensions.page
+share/gnome/help/banshee/C/import.page
+share/gnome/help/banshee/C/index.page
+share/gnome/help/banshee/C/introduction.page
+share/gnome/help/banshee/C/itunes-import.page
+share/gnome/help/banshee/C/keyboardshortcuts.page
+share/gnome/help/banshee/C/lastfm.page
+share/gnome/help/banshee/C/legal.xml
+share/gnome/help/banshee/C/manage-coverart.page
+share/gnome/help/banshee/C/manage-playlists.page
+share/gnome/help/banshee/C/manage-tags.page
+share/gnome/help/banshee/C/play-queue.page
+share/gnome/help/banshee/C/play.page
+share/gnome/help/banshee/C/rb-import.page
+share/gnome/help/banshee/C/search.page
+share/gnome/help/banshee/C/sort.page
+share/gnome/help/banshee/C/sync.page
+share/gnome/help/banshee/C/ui.page
+share/gnome/help/banshee/ca/add-podcast.page
+share/gnome/help/banshee/ca/add-radio.page
+share/gnome/help/banshee/ca/advanced.page
+share/gnome/help/banshee/ca/amazon.page
+share/gnome/help/banshee/ca/emusic.page
+share/gnome/help/banshee/ca/extensions.page
+share/gnome/help/banshee/ca/import.page
+share/gnome/help/banshee/ca/index.page
+share/gnome/help/banshee/ca/introduction.page
+share/gnome/help/banshee/ca/itunes-import.page
+share/gnome/help/banshee/ca/keyboardshortcuts.page
+share/gnome/help/banshee/ca/lastfm.page
+share/gnome/help/banshee/ca/legal.xml
+share/gnome/help/banshee/ca/manage-coverart.page
+share/gnome/help/banshee/ca/manage-playlists.page
+share/gnome/help/banshee/ca/manage-tags.page
+share/gnome/help/banshee/ca/play-queue.page
+share/gnome/help/banshee/ca/play.page
+share/gnome/help/banshee/ca/rb-import.page
+share/gnome/help/banshee/ca/search.page
+share/gnome/help/banshee/ca/sort.page
+share/gnome/help/banshee/ca/sync.page
+share/gnome/help/banshee/ca/ui.page
+share/gnome/help/banshee/da/add-podcast.page
+share/gnome/help/banshee/da/add-radio.page
+share/gnome/help/banshee/da/advanced.page
+share/gnome/help/banshee/da/amazon.page
+share/gnome/help/banshee/da/emusic.page
+share/gnome/help/banshee/da/extensions.page
+share/gnome/help/banshee/da/import.page
+share/gnome/help/banshee/da/index.page
+share/gnome/help/banshee/da/introduction.page
+share/gnome/help/banshee/da/itunes-import.page
+share/gnome/help/banshee/da/keyboardshortcuts.page
+share/gnome/help/banshee/da/lastfm.page
+share/gnome/help/banshee/da/legal.xml
+share/gnome/help/banshee/da/manage-coverart.page
+share/gnome/help/banshee/da/manage-playlists.page
+share/gnome/help/banshee/da/manage-tags.page
+share/gnome/help/banshee/da/play-queue.page
+share/gnome/help/banshee/da/play.page
+share/gnome/help/banshee/da/rb-import.page
+share/gnome/help/banshee/da/search.page
+share/gnome/help/banshee/da/sort.page
+share/gnome/help/banshee/da/sync.page
+share/gnome/help/banshee/da/ui.page
+share/gnome/help/banshee/de/add-podcast.page
+share/gnome/help/banshee/de/add-radio.page
+share/gnome/help/banshee/de/advanced.page
+share/gnome/help/banshee/de/amazon.page
+share/gnome/help/banshee/de/emusic.page
+share/gnome/help/banshee/de/extensions.page
+share/gnome/help/banshee/de/import.page
+share/gnome/help/banshee/de/index.page
+share/gnome/help/banshee/de/introduction.page
+share/gnome/help/banshee/de/itunes-import.page
+share/gnome/help/banshee/de/keyboardshortcuts.page
+share/gnome/help/banshee/de/lastfm.page
+share/gnome/help/banshee/de/legal.xml
+share/gnome/help/banshee/de/manage-coverart.page
+share/gnome/help/banshee/de/manage-playlists.page
+share/gnome/help/banshee/de/manage-tags.page
+share/gnome/help/banshee/de/play-queue.page
+share/gnome/help/banshee/de/play.page
+share/gnome/help/banshee/de/rb-import.page
+share/gnome/help/banshee/de/search.page
+share/gnome/help/banshee/de/sort.page
+share/gnome/help/banshee/de/sync.page
+share/gnome/help/banshee/de/ui.page
+share/gnome/help/banshee/el/add-podcast.page
+share/gnome/help/banshee/el/add-radio.page
+share/gnome/help/banshee/el/advanced.page
+share/gnome/help/banshee/el/amazon.page
+share/gnome/help/banshee/el/emusic.page
+share/gnome/help/banshee/el/extensions.page
+share/gnome/help/banshee/el/import.page
+share/gnome/help/banshee/el/index.page
+share/gnome/help/banshee/el/introduction.page
+share/gnome/help/banshee/el/itunes-import.page
+share/gnome/help/banshee/el/keyboardshortcuts.page
+share/gnome/help/banshee/el/lastfm.page
+share/gnome/help/banshee/el/legal.xml
+share/gnome/help/banshee/el/manage-coverart.page
+share/gnome/help/banshee/el/manage-playlists.page
+share/gnome/help/banshee/el/manage-tags.page
+share/gnome/help/banshee/el/play-queue.page
+share/gnome/help/banshee/el/play.page
+share/gnome/help/banshee/el/rb-import.page
+share/gnome/help/banshee/el/search.page
+share/gnome/help/banshee/el/sort.page
+share/gnome/help/banshee/el/sync.page
+share/gnome/help/banshee/el/ui.page
+share/gnome/help/banshee/es/add-podcast.page
+share/gnome/help/banshee/es/add-radio.page
+share/gnome/help/banshee/es/advanced.page
+share/gnome/help/banshee/es/amazon.page
+share/gnome/help/banshee/es/emusic.page
+share/gnome/help/banshee/es/extensions.page
+share/gnome/help/banshee/es/import.page
+share/gnome/help/banshee/es/index.page
+share/gnome/help/banshee/es/introduction.page
+share/gnome/help/banshee/es/itunes-import.page
+share/gnome/help/banshee/es/keyboardshortcuts.page
+share/gnome/help/banshee/es/lastfm.page
+share/gnome/help/banshee/es/legal.xml
+share/gnome/help/banshee/es/manage-coverart.page
+share/gnome/help/banshee/es/manage-playlists.page
+share/gnome/help/banshee/es/manage-tags.page
+share/gnome/help/banshee/es/play-queue.page
+share/gnome/help/banshee/es/play.page
+share/gnome/help/banshee/es/rb-import.page
+share/gnome/help/banshee/es/search.page
+share/gnome/help/banshee/es/sort.page
+share/gnome/help/banshee/es/sync.page
+share/gnome/help/banshee/es/ui.page
+share/gnome/help/banshee/fr/add-podcast.page
+share/gnome/help/banshee/fr/add-radio.page
+share/gnome/help/banshee/fr/advanced.page
+share/gnome/help/banshee/fr/amazon.page
+share/gnome/help/banshee/fr/emusic.page
+share/gnome/help/banshee/fr/extensions.page
+share/gnome/help/banshee/fr/import.page
+share/gnome/help/banshee/fr/index.page
+share/gnome/help/banshee/fr/introduction.page
+share/gnome/help/banshee/fr/itunes-import.page
+share/gnome/help/banshee/fr/keyboardshortcuts.page
+share/gnome/help/banshee/fr/lastfm.page
+share/gnome/help/banshee/fr/legal.xml
+share/gnome/help/banshee/fr/manage-coverart.page
+share/gnome/help/banshee/fr/manage-playlists.page
+share/gnome/help/banshee/fr/manage-tags.page
+share/gnome/help/banshee/fr/play-queue.page
+share/gnome/help/banshee/fr/play.page
+share/gnome/help/banshee/fr/rb-import.page
+share/gnome/help/banshee/fr/search.page
+share/gnome/help/banshee/fr/sort.page
+share/gnome/help/banshee/fr/sync.page
+share/gnome/help/banshee/fr/ui.page
+share/gnome/help/banshee/gl/add-podcast.page
+share/gnome/help/banshee/gl/add-radio.page
+share/gnome/help/banshee/gl/advanced.page
+share/gnome/help/banshee/gl/amazon.page
+share/gnome/help/banshee/gl/emusic.page
+share/gnome/help/banshee/gl/extensions.page
+share/gnome/help/banshee/gl/import.page
+share/gnome/help/banshee/gl/index.page
+share/gnome/help/banshee/gl/introduction.page
+share/gnome/help/banshee/gl/itunes-import.page
+share/gnome/help/banshee/gl/keyboardshortcuts.page
+share/gnome/help/banshee/gl/lastfm.page
+share/gnome/help/banshee/gl/legal.xml
+share/gnome/help/banshee/gl/manage-coverart.page
+share/gnome/help/banshee/gl/manage-playlists.page
+share/gnome/help/banshee/gl/manage-tags.page
+share/gnome/help/banshee/gl/play-queue.page
+share/gnome/help/banshee/gl/play.page
+share/gnome/help/banshee/gl/rb-import.page
+share/gnome/help/banshee/gl/search.page
+share/gnome/help/banshee/gl/sort.page
+share/gnome/help/banshee/gl/sync.page
+share/gnome/help/banshee/gl/ui.page
+share/gnome/help/banshee/hu/add-podcast.page
+share/gnome/help/banshee/hu/add-radio.page
+share/gnome/help/banshee/hu/advanced.page
+share/gnome/help/banshee/hu/amazon.page
+share/gnome/help/banshee/hu/emusic.page
+share/gnome/help/banshee/hu/extensions.page
+share/gnome/help/banshee/hu/import.page
+share/gnome/help/banshee/hu/index.page
+share/gnome/help/banshee/hu/introduction.page
+share/gnome/help/banshee/hu/itunes-import.page
+share/gnome/help/banshee/hu/keyboardshortcuts.page
+share/gnome/help/banshee/hu/lastfm.page
+share/gnome/help/banshee/hu/legal.xml
+share/gnome/help/banshee/hu/manage-coverart.page
+share/gnome/help/banshee/hu/manage-playlists.page
+share/gnome/help/banshee/hu/manage-tags.page
+share/gnome/help/banshee/hu/play-queue.page
+share/gnome/help/banshee/hu/play.page
+share/gnome/help/banshee/hu/rb-import.page
+share/gnome/help/banshee/hu/search.page
+share/gnome/help/banshee/hu/sort.page
+share/gnome/help/banshee/hu/sync.page
+share/gnome/help/banshee/hu/ui.page
+share/gnome/help/banshee/ja/add-podcast.page
+share/gnome/help/banshee/ja/add-radio.page
+share/gnome/help/banshee/ja/advanced.page
+share/gnome/help/banshee/ja/amazon.page
+share/gnome/help/banshee/ja/emusic.page
+share/gnome/help/banshee/ja/extensions.page
+share/gnome/help/banshee/ja/import.page
+share/gnome/help/banshee/ja/index.page
+share/gnome/help/banshee/ja/introduction.page
+share/gnome/help/banshee/ja/itunes-import.page
+share/gnome/help/banshee/ja/keyboardshortcuts.page
+share/gnome/help/banshee/ja/lastfm.page
+share/gnome/help/banshee/ja/legal.xml
+share/gnome/help/banshee/ja/manage-coverart.page
+share/gnome/help/banshee/ja/manage-playlists.page
+share/gnome/help/banshee/ja/manage-tags.page
+share/gnome/help/banshee/ja/play-queue.page
+share/gnome/help/banshee/ja/play.page
+share/gnome/help/banshee/ja/rb-import.page
+share/gnome/help/banshee/ja/search.page
+share/gnome/help/banshee/ja/sort.page
+share/gnome/help/banshee/ja/sync.page
+share/gnome/help/banshee/ja/ui.page
+share/gnome/help/banshee/sl/add-podcast.page
+share/gnome/help/banshee/sl/add-radio.page
+share/gnome/help/banshee/sl/advanced.page
+share/gnome/help/banshee/sl/amazon.page
+share/gnome/help/banshee/sl/emusic.page
+share/gnome/help/banshee/sl/extensions.page
+share/gnome/help/banshee/sl/import.page
+share/gnome/help/banshee/sl/index.page
+share/gnome/help/banshee/sl/introduction.page
+share/gnome/help/banshee/sl/itunes-import.page
+share/gnome/help/banshee/sl/keyboardshortcuts.page
+share/gnome/help/banshee/sl/lastfm.page
+share/gnome/help/banshee/sl/legal.xml
+share/gnome/help/banshee/sl/manage-coverart.page
+share/gnome/help/banshee/sl/manage-playlists.page
+share/gnome/help/banshee/sl/manage-tags.page
+share/gnome/help/banshee/sl/play-queue.page
+share/gnome/help/banshee/sl/play.page
+share/gnome/help/banshee/sl/rb-import.page
+share/gnome/help/banshee/sl/search.page
+share/gnome/help/banshee/sl/sort.page
+share/gnome/help/banshee/sl/sync.page
+share/gnome/help/banshee/sl/ui.page
share/icons/hicolor/16x16/apps/media-player-banshee.png
share/icons/hicolor/192x192/apps/media-player-banshee.png
share/icons/hicolor/22x22/apps/media-player-banshee.png
share/icons/hicolor/24x24/apps/media-player-banshee.png
share/icons/hicolor/32x32/apps/media-player-banshee.png
share/icons/hicolor/48x48/apps/media-player-banshee.png
-share/locale/ar/LC_MESSAGES/banshee-1.mo
-share/locale/be@latin/LC_MESSAGES/banshee-1.mo
-share/locale/bg/LC_MESSAGES/banshee-1.mo
-share/locale/br/LC_MESSAGES/banshee-1.mo
-share/locale/ca/LC_MESSAGES/banshee-1.mo
-share/locale/cs/LC_MESSAGES/banshee-1.mo
-share/locale/da/LC_MESSAGES/banshee-1.mo
-share/locale/de/LC_MESSAGES/banshee-1.mo
-share/locale/dz/LC_MESSAGES/banshee-1.mo
-share/locale/en_CA/LC_MESSAGES/banshee-1.mo
-share/locale/en_GB/LC_MESSAGES/banshee-1.mo
-share/locale/es/LC_MESSAGES/banshee-1.mo
-share/locale/eu/LC_MESSAGES/banshee-1.mo
-share/locale/fi/LC_MESSAGES/banshee-1.mo
-share/locale/fr/LC_MESSAGES/banshee-1.mo
-share/locale/gl/LC_MESSAGES/banshee-1.mo
-share/locale/gu/LC_MESSAGES/banshee-1.mo
-share/locale/he/LC_MESSAGES/banshee-1.mo
-share/locale/hu/LC_MESSAGES/banshee-1.mo
-share/locale/it/LC_MESSAGES/banshee-1.mo
-share/locale/ja/LC_MESSAGES/banshee-1.mo
-share/locale/ko/LC_MESSAGES/banshee-1.mo
-share/locale/ky/LC_MESSAGES/banshee-1.mo
-share/locale/lt/LC_MESSAGES/banshee-1.mo
-share/locale/lv/LC_MESSAGES/banshee-1.mo
-share/locale/mk/LC_MESSAGES/banshee-1.mo
-share/locale/nb/LC_MESSAGES/banshee-1.mo
-share/locale/nl/LC_MESSAGES/banshee-1.mo
-share/locale/oc/LC_MESSAGES/banshee-1.mo
-share/locale/pa/LC_MESSAGES/banshee-1.mo
-share/locale/pl/LC_MESSAGES/banshee-1.mo
-share/locale/pt/LC_MESSAGES/banshee-1.mo
-share/locale/pt_BR/LC_MESSAGES/banshee-1.mo
-share/locale/ru/LC_MESSAGES/banshee-1.mo
-share/locale/sl/LC_MESSAGES/banshee-1.mo
-share/locale/sr/LC_MESSAGES/banshee-1.mo
-share/locale/sr@latin/LC_MESSAGES/banshee-1.mo
-share/locale/sv/LC_MESSAGES/banshee-1.mo
-share/locale/th/LC_MESSAGES/banshee-1.mo
-share/locale/uk/LC_MESSAGES/banshee-1.mo
-share/locale/vi/LC_MESSAGES/banshee-1.mo
-share/locale/zh_CN/LC_MESSAGES/banshee-1.mo
-share/locale/zh_HK/LC_MESSAGES/banshee-1.mo
-share/locale/zh_TW/LC_MESSAGES/banshee-1.mo
-@dirrm share/banshee-1/icons/hicolor/scalable/devices
-@dirrm share/banshee-1/icons/hicolor/scalable/categories
-@dirrm share/banshee-1/icons/hicolor/scalable
-@dirrm share/banshee-1/icons/hicolor/48x48/devices
-@dirrm share/banshee-1/icons/hicolor/48x48/categories
-@dirrm share/banshee-1/icons/hicolor/48x48/actions
-@dirrm share/banshee-1/icons/hicolor/48x48
-@dirrm share/banshee-1/icons/hicolor/32x32/devices
-@dirrm share/banshee-1/icons/hicolor/32x32/categories
-@dirrm share/banshee-1/icons/hicolor/32x32/actions
-@dirrm share/banshee-1/icons/hicolor/32x32
-@dirrm share/banshee-1/icons/hicolor/256x256/devices
-@dirrm share/banshee-1/icons/hicolor/256x256
-@dirrm share/banshee-1/icons/hicolor/24x24/devices
-@dirrm share/banshee-1/icons/hicolor/24x24
-@dirrm share/banshee-1/icons/hicolor/22x22/devices
-@dirrm share/banshee-1/icons/hicolor/22x22/categories
-@dirrm share/banshee-1/icons/hicolor/22x22/actions
-@dirrm share/banshee-1/icons/hicolor/22x22
-@dirrm share/banshee-1/icons/hicolor/16x16/status
-@dirrm share/banshee-1/icons/hicolor/16x16/emblems
-@dirrm share/banshee-1/icons/hicolor/16x16/devices
-@dirrm share/banshee-1/icons/hicolor/16x16/categories
-@dirrm share/banshee-1/icons/hicolor/16x16/actions
-@dirrm share/banshee-1/icons/hicolor/16x16
-@dirrm share/banshee-1/icons/hicolor/128x128/devices
-@dirrm share/banshee-1/icons/hicolor/128x128
-@dirrm share/banshee-1/icons/hicolor
-@dirrm share/banshee-1/icons
-@dirrm share/banshee-1/audio-profiles
-@dirrm share/banshee-1
-@dirrm lib/banshee-1/gstreamer-0.10
-@dirrm lib/banshee-1/Extensions
-@dirrm lib/banshee-1/Backends
-@dirrm lib/banshee-1
+share/locale/ar/LC_MESSAGES/banshee.mo
+share/locale/ast/LC_MESSAGES/banshee.mo
+share/locale/be@latin/LC_MESSAGES/banshee.mo
+share/locale/bg/LC_MESSAGES/banshee.mo
+share/locale/br/LC_MESSAGES/banshee.mo
+share/locale/ca/LC_MESSAGES/banshee.mo
+share/locale/ca@valencia/LC_MESSAGES/banshee.mo
+share/locale/cs/LC_MESSAGES/banshee.mo
+share/locale/da/LC_MESSAGES/banshee.mo
+share/locale/de/LC_MESSAGES/banshee.mo
+share/locale/dz/LC_MESSAGES/banshee.mo
+share/locale/el/LC_MESSAGES/banshee.mo
+share/locale/en_CA/LC_MESSAGES/banshee.mo
+share/locale/en_GB/LC_MESSAGES/banshee.mo
+share/locale/eo/LC_MESSAGES/banshee.mo
+share/locale/es/LC_MESSAGES/banshee.mo
+share/locale/eu/LC_MESSAGES/banshee.mo
+share/locale/fi/LC_MESSAGES/banshee.mo
+share/locale/fr/LC_MESSAGES/banshee.mo
+share/locale/gl/LC_MESSAGES/banshee.mo
+share/locale/gu/LC_MESSAGES/banshee.mo
+share/locale/he/LC_MESSAGES/banshee.mo
+share/locale/hu/LC_MESSAGES/banshee.mo
+share/locale/id/LC_MESSAGES/banshee.mo
+share/locale/it/LC_MESSAGES/banshee.mo
+share/locale/ja/LC_MESSAGES/banshee.mo
+share/locale/ko/LC_MESSAGES/banshee.mo
+share/locale/ky/LC_MESSAGES/banshee.mo
+share/locale/lt/LC_MESSAGES/banshee.mo
+share/locale/lv/LC_MESSAGES/banshee.mo
+share/locale/mk/LC_MESSAGES/banshee.mo
+share/locale/nb/LC_MESSAGES/banshee.mo
+share/locale/nl/LC_MESSAGES/banshee.mo
+share/locale/oc/LC_MESSAGES/banshee.mo
+share/locale/pa/LC_MESSAGES/banshee.mo
+share/locale/pl/LC_MESSAGES/banshee.mo
+share/locale/pt/LC_MESSAGES/banshee.mo
+share/locale/pt_BR/LC_MESSAGES/banshee.mo
+share/locale/ro/LC_MESSAGES/banshee.mo
+share/locale/ru/LC_MESSAGES/banshee.mo
+share/locale/sl/LC_MESSAGES/banshee.mo
+share/locale/sr/LC_MESSAGES/banshee.mo
+share/locale/sr@latin/LC_MESSAGES/banshee.mo
+share/locale/sv/LC_MESSAGES/banshee.mo
+share/locale/th/LC_MESSAGES/banshee.mo
+share/locale/tr/LC_MESSAGES/banshee.mo
+share/locale/uk/LC_MESSAGES/banshee.mo
+share/locale/vi/LC_MESSAGES/banshee.mo
+share/locale/zh_CN/LC_MESSAGES/banshee.mo
+share/locale/zh_HK/LC_MESSAGES/banshee.mo
+share/locale/zh_TW/LC_MESSAGES/banshee.mo
+share/mime/packages/banshee-amz.xml
+@dirrm share/gnome/help/banshee/sl
+@dirrm share/gnome/help/banshee/ja
+@dirrm share/gnome/help/banshee/hu
+@dirrm share/gnome/help/banshee/gl
+@dirrm share/gnome/help/banshee/fr
+@dirrm share/gnome/help/banshee/es
+@dirrm share/gnome/help/banshee/el
+@dirrm share/gnome/help/banshee/de
+@dirrm share/gnome/help/banshee/da
+@dirrm share/gnome/help/banshee/ca
+@dirrm share/gnome/help/banshee/C
+@dirrm share/gnome/help/banshee
+@dirrm share/banshee/icons/hicolor/scalable/devices
+@dirrm share/banshee/icons/hicolor/scalable/categories
+@dirrm share/banshee/icons/hicolor/scalable
+@dirrm share/banshee/icons/hicolor/48x48/devices
+@dirrm share/banshee/icons/hicolor/48x48/categories
+@dirrm share/banshee/icons/hicolor/48x48/actions
+@dirrm share/banshee/icons/hicolor/48x48
+@dirrm share/banshee/icons/hicolor/32x32/devices
+@dirrm share/banshee/icons/hicolor/32x32/categories
+@dirrm share/banshee/icons/hicolor/32x32/actions
+@dirrm share/banshee/icons/hicolor/32x32
+@dirrm share/banshee/icons/hicolor/256x256/devices
+@dirrm share/banshee/icons/hicolor/256x256/categories
+@dirrm share/banshee/icons/hicolor/256x256
+@dirrm share/banshee/icons/hicolor/24x24/devices
+@dirrm share/banshee/icons/hicolor/24x24/categories
+@dirrm share/banshee/icons/hicolor/24x24
+@dirrm share/banshee/icons/hicolor/22x22/devices
+@dirrm share/banshee/icons/hicolor/22x22/categories
+@dirrm share/banshee/icons/hicolor/22x22/actions
+@dirrm share/banshee/icons/hicolor/22x22
+@dirrm share/banshee/icons/hicolor/16x16/status
+@dirrm share/banshee/icons/hicolor/16x16/emblems
+@dirrm share/banshee/icons/hicolor/16x16/devices
+@dirrm share/banshee/icons/hicolor/16x16/categories
+@dirrm share/banshee/icons/hicolor/16x16/actions
+@dirrm share/banshee/icons/hicolor/16x16
+@dirrm share/banshee/icons/hicolor/128x128/devices
+@dirrm share/banshee/icons/hicolor/128x128
+@dirrm share/banshee/icons/hicolor
+@dirrm share/banshee/icons
+@dirrm share/banshee/audio-profiles
+@dirrm share/banshee
+@dirrm lib/banshee/gstreamer-0.10
+@dirrm lib/banshee/Extensions
+@dirrm lib/banshee/Backends
+@dirrm lib/banshee
diff --git a/multimedia/moonlight/Makefile b/multimedia/moonlight/Makefile
index e437ca43a93f..8d202182aed8 100644
--- a/multimedia/moonlight/Makefile
+++ b/multimedia/moonlight/Makefile
@@ -17,6 +17,8 @@ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} \
MAINTAINER= mono@FreeBSD.org
COMMENT= OpenSource Implementation of Silverlight
+BROKEN= Basically does not work
+
BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash
LIB_DEPENDS= avcodec.1:${PORTSDIR}/multimedia/ffmpeg \
execinfo.1:${PORTSDIR}/devel/libexecinfo
diff --git a/multimedia/moonlight/distinfo b/multimedia/moonlight/distinfo
index 66b281621d4b..dcb97f7842aa 100644
--- a/multimedia/moonlight/distinfo
+++ b/multimedia/moonlight/distinfo
@@ -1,9 +1,6 @@
-MD5 (moonlight-2.2.tar.bz2) = 073d428dc6fe5aefab747b36144d12fc
SHA256 (moonlight-2.2.tar.bz2) = 599619b00b242f4dd3c678309e8461fc10c8dfce5d2594613052233bd90f3a98
SIZE (moonlight-2.2.tar.bz2) = 8157240
-MD5 (mono-2.6.1.tar.bz2) = 63976f28eed3741b2a396dcf21877b0e
SHA256 (mono-2.6.1.tar.bz2) = 545661bf4573330247c7db533fe124484fcc8ddf14dcd95232f2af61d6229442
SIZE (mono-2.6.1.tar.bz2) = 27618610
-MD5 (mono-basic-2.6.tar.bz2) = 225104257d7831f0f1c330269c26023e
SHA256 (mono-basic-2.6.tar.bz2) = 1491256de6bc793e0d4e2f5cf382cdd3b431edf34e9c56cd79b0771278f114c6
SIZE (mono-basic-2.6.tar.bz2) = 1211592