diff options
8 files changed, 293 insertions, 342 deletions
diff --git a/multimedia/banshee/Makefile b/multimedia/banshee/Makefile index 66e2ab146d69..019a54368b0f 100644 --- a/multimedia/banshee/Makefile +++ b/multimedia/banshee/Makefile @@ -6,25 +6,21 @@ # PORTNAME= banshee -PORTVERSION= 2.0.1 -PORTREVISION= 1 +PORTVERSION= 2.6.0 PORTEPOCH= 1 CATEGORIES= multimedia audio -MASTER_SITES= http://download.banshee.fm/${PORTNAME}/stable/${PORTVERSION}/ +MASTER_SITES= GNOME 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= p5-XML-Parser>=0:${PORTSDIR}/textproc/p5-XML-Parser \ bash:${PORTSDIR}/shells/bash RUN_DEPENDS= bash:${PORTSDIR}/shells/bash LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/mono.pc:${PORTSDIR}/lang/mono \ - ${LOCALBASE}/libdata/pkgconfig/ndesk-dbus-1.0.pc:${PORTSDIR}/devel/ndesk-dbus \ - ${LOCALBASE}/libdata/pkgconfig/ndesk-dbus-glib-1.0.pc:${PORTSDIR}/devel/ndesk-dbus-glib \ + ${LOCALBASE}/libdata/pkgconfig/dbus-sharp-glib-1.0.pc:${PORTSDIR}/devel/dbus-sharp-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 \ @@ -35,10 +31,9 @@ OPTIONS= DOCS "Install documentation" on \ BPMDETECT "Enable BPM detection" on \ MTP "Enable MTP support" on \ APPLEDEV "Enable Apple device DAP" off \ - IPOD "Enable iPod support" on \ YOUTUBE "Enable Youtube support" on -USE_BZIP2= yes +USE_XZ= yes USE_GMAKE= yes USE_PERL5_BUILD=yes GNU_CONFIGURE= yes @@ -103,18 +98,9 @@ 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 -PLIST_SUB+= OPT_IPOD="" -.else -CONFIGURE_ARGS+=--disable-ipod -PLIST_SUB+= OPT_IPOD="@comment " -.endif - .if !defined(WITHOUT_MTP) CONFIGURE_ARGS+=--enable-mtp -LIB_DEPENDS+= mtp.9:${PORTSDIR}/audio/libmtp +LIB_DEPENDS+= mtp:${PORTSDIR}/audio/libmtp PLIST_SUB+= OPT_MTP="" .else CONFIGURE_ARGS+=--disable-mtp diff --git a/multimedia/banshee/distinfo b/multimedia/banshee/distinfo index 41416ba77a15..ab8298c3e228 100644 --- a/multimedia/banshee/distinfo +++ b/multimedia/banshee/distinfo @@ -1,2 +1,2 @@ -SHA256 (banshee-2.0.1.tar.bz2) = 9812820c3c6eca523ed58873bb8c911f287ffce7c2925110511cbf6f5fde9c74 -SIZE (banshee-2.0.1.tar.bz2) = 3635807 +SHA256 (banshee-2.6.0.tar.xz) = a47cc741f8ef2f81726ec4872e8179b17efa271c0c991e912e384fabf777394a +SIZE (banshee-2.6.0.tar.xz) = 3280112 diff --git a/multimedia/banshee/files/patch-src_Backends_Banshee.Gio_Makefile.in b/multimedia/banshee/files/patch-src_Backends_Banshee.Gio_Makefile.in new file mode 100644 index 000000000000..0c166d2fb817 --- /dev/null +++ b/multimedia/banshee/files/patch-src_Backends_Banshee.Gio_Makefile.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/Backends/Banshee.Gio/Makefile.in.orig ++++ src/Backends/Banshee.Gio/Makefile.in +@@ -946,7 +946,7 @@ + @ENABLE_GIO_TRUE@ cp $(srcdir)/$(notdir $@.config) $(top_builddir)/bin; \ + @ENABLE_GIO_TRUE@ fi; + @ENABLE_GIO_TRUE@ @if [ ! -z "$(EXTRA_BUNDLE)" ]; then \ +-@ENABLE_GIO_TRUE@ cp $(EXTRA_BUNDLE) $(top_builddir)/bin; \ ++@ENABLE_GIO_TRUE@ cp -f $(EXTRA_BUNDLE) $(top_builddir)/bin; \ + @ENABLE_GIO_TRUE@ fi; + + @ENABLE_GIO_TRUE@theme-icons: $(THEME_ICONS_SOURCE) diff --git a/multimedia/banshee/files/patch-src_Clients_Booter_banshee.linux.in b/multimedia/banshee/files/patch-src_Clients_Booter_banshee.linux.in new file mode 100644 index 000000000000..7257b8f250d6 --- /dev/null +++ b/multimedia/banshee/files/patch-src_Clients_Booter_banshee.linux.in @@ -0,0 +1,14 @@ + +$FreeBSD$ + +--- src/Clients/Booter/banshee.linux.in.orig ++++ src/Clients/Booter/banshee.linux.in +@@ -54,7 +54,7 @@ + fi + + # Finally - environment is set up, time to run our beloved +-exec_args="-a $BANSHEE_EXEC_NAME mono $MONO_OPTIONS $MONO_EXE $BANSHEE_DEBUG $BANSHEE_CLIENT" ++exec_args="-a $BANSHEE_EXEC_NAME mono --runtime=v4.0 $MONO_OPTIONS $MONO_EXE $BANSHEE_DEBUG $BANSHEE_CLIENT" + + if [ -z "$BANSHEE_REDIRECT_LOG" ]; then + exec $exec_args "$@" diff --git a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_Makefile.in b/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_Makefile.in deleted file mode 100644 index e1cabfda35ed..000000000000 --- a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_Makefile.in +++ /dev/null @@ -1,13 +0,0 @@ - -$FreeBSD$ - ---- src/Libraries/MusicBrainz/Makefile.in.orig -+++ src/Libraries/MusicBrainz/Makefile.in -@@ -347,6 +347,7 @@ - SOURCES = \ - MusicBrainz/Artist.cs \ - MusicBrainz/Disc.cs \ -+ MusicBrainz/DiscFreeBSD.cs \ - MusicBrainz/DiscLinux.cs \ - MusicBrainz/DiscWin32.cs \ - MusicBrainz/Event.cs \ diff --git a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_DiscFreeBSD.cs b/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_DiscFreeBSD.cs deleted file mode 100644 index 7c6464c12b28..000000000000 --- a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_DiscFreeBSD.cs +++ /dev/null @@ -1,140 +0,0 @@ - -$FreeBSD$ - ---- /dev/null -+++ src/Libraries/MusicBrainz/MusicBrainz/DiscFreeBSD.cs -@@ -0,0 +1,134 @@ -+// DiskFreeBSD.cs -+// -+// Copyright (c) 2009 Romain Tartière <romain@blogreen.org> -+// -+// Permission is hereby granted, free of charge, to any person obtaining a copy -+// of this software and associated documentation files (the "Software"), to deal -+// in the Software without restriction, including without limitation the rights -+// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -+// copies of the Software, and to permit persons to whom the Software is -+// furnished to do so, subject to the following conditions: -+// -+// The above copyright notice and this permission notice shall be included in -+// all copies or substantial portions of the Software. -+// -+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -+// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -+// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -+// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -+// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -+// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -+// THE SOFTWARE. -+ -+using System; -+using System.Runtime.InteropServices; -+ -+namespace MusicBrainz -+{ -+ internal sealed class DiscFreeBSD : LocalDisc -+ { -+ -+#region <fcntl.h> -+ const int O_RDONLY = 0x0000; // open for reading only -+ const int O_NONBLOCK = 0x0004; // no delay -+ -+ [DllImport ("libc.so.7", CharSet = CharSet.Auto, SetLastError = true)] -+ static extern int open (string path, int flags); -+#endregion -+ -+#region <unistd.h> -+ [DllImport ("libc.so.7", SetLastError = true)] -+ static extern int close (int d); -+#endregion -+ -+#region <sys/cdio.h> -+ struct msf_lba { -+ public int lba; // network byte order -+ }; -+ -+ [StructLayout (LayoutKind.Explicit)] -+ struct cd_toc_entry { -+ [FieldOffset (2)] -+ public byte track; -+ [FieldOffset (4)] -+ public msf_lba addr; -+ }; -+ -+ // Ioctls for the CD drive -+ -+ const byte CD_LBA_FORMAT = 1; -+ -+ struct ioc_toc_header { -+ public short len; -+ public byte starting_track; -+ public byte ending_track; -+ }; -+ const ulong CDIOREADTOCHEADER = 1074029316; -+ [DllImport ("libc.so.7", EntryPoint = "ioctl")] -+ static extern int cd_read_toc_header (int fd, ulong request, ref ioc_toc_header data); -+ static int cd_read_toc_header (int fd, ref ioc_toc_header data) -+ { -+ return cd_read_toc_header (fd, CDIOREADTOCHEADER, ref data); -+ } -+ -+ struct ioc_read_toc_entry { -+ public byte address_format; -+ public byte starting_track; -+ public ushort data_len; -+ public IntPtr data; // cd_toc_entry* -+ }; -+ const ulong CDIOREADTOCENTRYS = 3222299397; -+ [DllImport ("libc.so.7", EntryPoint = "ioctl")] -+ static extern int cd_read_toc_entrys (int fd, ulong request, ref ioc_read_toc_entry data); -+ static int cd_read_toc_entrys (int fd, ref ioc_read_toc_entry data) -+ { -+ return cd_read_toc_entrys (fd, CDIOREADTOCENTRYS, ref data); -+ } -+ -+#endregion -+ -+ internal DiscFreeBSD (string device) -+ { -+ int fd = open (device, O_RDONLY | O_NONBLOCK); -+ -+ if (fd < 0) throw new LocalDiscException (String.Format ("Cannot open device `{0}'", device)); -+ -+ try { -+ ioc_toc_header h = new ioc_toc_header (); -+ if (cd_read_toc_header (fd, ref h) < 0) throw new LocalDiscException ("Cannot read table of contents header"); -+ if (h.ending_track == 0) throw new LocalDiscException ("This disc has no tracks"); -+ -+ first_track = h.starting_track; -+ last_track = h.ending_track; -+ -+ int n = h.ending_track - h.starting_track + 1; -+ int len = (n + 1) * Marshal.SizeOf (typeof (cd_toc_entry)); -+ -+ ioc_read_toc_entry t = new ioc_read_toc_entry (); -+ t.address_format = CD_LBA_FORMAT; -+ t.starting_track = 0; -+ t.data_len = (ushort) len; -+ t.data = Marshal.AllocHGlobal (len); -+ try { -+ -+ if (cd_read_toc_entrys (fd, ref t) < 0) throw new LocalDiscException ("Cannot read table of contents entries"); -+ -+ for (int i = 0; i <= n; i++) { -+ ulong offset = (ulong) (i * Marshal.SizeOf (typeof (cd_toc_entry))); -+ cd_toc_entry e = (cd_toc_entry) Marshal.PtrToStructure ((IntPtr) ((ulong)t.data + offset), typeof (cd_toc_entry)); -+ track_offsets[first_track + i] = System.Net.IPAddress.NetworkToHostOrder (e.addr.lba) + 150; -+ } -+ // Move Leadout to the beginning. -+ track_offsets [0] = track_offsets [last_track + 1]; -+ track_offsets [last_track + 1] = 0; -+ } finally { -+ Marshal.FreeHGlobal (t.data); -+ } -+ } finally { -+ close (fd); -+ } -+ -+ Init (); -+ } -+ } -+} diff --git a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs b/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs deleted file mode 100644 index 02c09fefe6b7..000000000000 --- a/multimedia/banshee/files/patch-src_Libraries_MusicBrainz_MusicBrainz_LocalDisc.cs +++ /dev/null @@ -1,21 +0,0 @@ - -$FreeBSD$ - ---- src/Libraries/MusicBrainz/MusicBrainz/LocalDisc.cs.orig -+++ src/Libraries/MusicBrainz/MusicBrainz/LocalDisc.cs -@@ -133,11 +133,11 @@ - switch (Environment.OSVersion.Platform){ - case PlatformID.Unix: - // 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 893c9e6a8a75..c32645337337 100644 --- a/multimedia/banshee/pkg-plist +++ b/multimedia/banshee/pkg-plist @@ -4,17 +4,21 @@ bin/muinshee 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.Gio.dll +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/gio-sharp.dll +lib/banshee/Backends/gio-sharp.dll.config +lib/banshee/Backends/gio-sharp.dll.mdb +lib/banshee/Backends/gtk-sharp-beans.dll +lib/banshee/Backends/gtk-sharp-beans.dll.config +lib/banshee/Backends/gtk-sharp-beans.dll.mdb lib/banshee/Backends/libbnpx11.a lib/banshee/Backends/libbnpx11.la lib/banshee/Backends/libbnpx11.so @@ -39,12 +43,10 @@ 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.AmazonMp3.exe +lib/banshee/Extensions/Banshee.AmazonMp3.exe.mdb lib/banshee/Extensions/Banshee.Audiobook.dll lib/banshee/Extensions/Banshee.Audiobook.dll.mdb %%OPT_BOO%%lib/banshee/Extensions/Banshee.BooScript.dll @@ -55,14 +57,14 @@ 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.Store.dll +lib/banshee/Extensions/Banshee.Emusic.Store.dll.mdb lib/banshee/Extensions/Banshee.Emusic.dll lib/banshee/Extensions/Banshee.Emusic.dll.mdb lib/banshee/Extensions/Banshee.FileSystemQueue.dll @@ -92,6 +94,8 @@ 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.OpticalDisc.dll +lib/banshee/Extensions/Banshee.OpticalDisc.dll.mdb lib/banshee/Extensions/Banshee.PlayQueue.dll lib/banshee/Extensions/Banshee.PlayQueue.dll.mdb lib/banshee/Extensions/Banshee.PlayerMigration.dll @@ -102,10 +106,6 @@ 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 @@ -134,9 +134,6 @@ 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 @@ -165,102 +162,117 @@ 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 +%%DATADIR%%/audio-profiles/aac-novell.xml +%%DATADIR%%/audio-profiles/aac.xml +%%DATADIR%%/audio-profiles/base.xml +%%DATADIR%%/audio-profiles/flac.xml +%%DATADIR%%/audio-profiles/mp3-lame.xml +%%DATADIR%%/audio-profiles/mp3-xing.xml +%%DATADIR%%/audio-profiles/vorbis.xml +%%DATADIR%%/audio-profiles/wav.xml +%%DATADIR%%/audio-profiles/wavpack.xml +%%DATADIR%%/audio-profiles/wma.xml +%%DATADIR%%/icons/hicolor/128x128/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/128x128/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/128x128/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/128x128/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/128x128/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-import-audio-cd.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-all.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-none.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-repeat-single.png +%%DATADIR%%/icons/hicolor/16x16/actions/media-write-cd.png +%%DATADIR%%/icons/hicolor/16x16/categories/amazon-mp3-source.png +%%DATADIR%%/icons/hicolor/16x16/categories/amazon-mp3-store-source.png +%%DATADIR%%/icons/hicolor/16x16/categories/audiobook.png +%%DATADIR%%/icons/hicolor/16x16/categories/internet-archive.png +%%DATADIR%%/icons/hicolor/16x16/categories/lastfm-audioscrobbler.png +%%DATADIR%%/icons/hicolor/16x16/categories/lastfm-neighbour.png +%%DATADIR%%/icons/hicolor/16x16/categories/lastfm-personal.png +%%DATADIR%%/icons/hicolor/16x16/categories/lastfm-recommended.png +%%DATADIR%%/icons/hicolor/16x16/categories/lastfm-tag.png +%%DATADIR%%/icons/hicolor/16x16/categories/miro-guide-source.png +%%DATADIR%%/icons/hicolor/16x16/categories/podcast.png +%%DATADIR%%/icons/hicolor/16x16/categories/radio.png +%%DATADIR%%/icons/hicolor/16x16/categories/source-playlist.png +%%DATADIR%%/icons/hicolor/16x16/categories/source-smart-playlist.png +%%DATADIR%%/icons/hicolor/16x16/categories/wikipedia.png +%%OPT_YOUTUBE%%%%DATADIR%%/icons/hicolor/16x16/categories/youtube.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/16x16/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/16x16/emblems/creative-commons-by.png +%%DATADIR%%/icons/hicolor/16x16/emblems/creative-commons-nc.png +%%DATADIR%%/icons/hicolor/16x16/emblems/creative-commons-nd.png +%%DATADIR%%/icons/hicolor/16x16/emblems/creative-commons-pd.png +%%DATADIR%%/icons/hicolor/16x16/emblems/creative-commons-sa.png +%%DATADIR%%/icons/hicolor/16x16/status/podcast-new.png +%%DATADIR%%/icons/hicolor/22x22/actions/encode.png +%%DATADIR%%/icons/hicolor/22x22/actions/media-import-audio-cd.png +%%DATADIR%%/icons/hicolor/22x22/actions/media-write-cd.png +%%DATADIR%%/icons/hicolor/22x22/categories/amazon-mp3-source.png +%%DATADIR%%/icons/hicolor/22x22/categories/amazon-mp3-store-source.png +%%DATADIR%%/icons/hicolor/22x22/categories/audiobook.png +%%DATADIR%%/icons/hicolor/22x22/categories/internet-archive.png +%%DATADIR%%/icons/hicolor/22x22/categories/lastfm-audioscrobbler.png +%%DATADIR%%/icons/hicolor/22x22/categories/lastfm-neighbour.png +%%DATADIR%%/icons/hicolor/22x22/categories/lastfm-personal.png +%%DATADIR%%/icons/hicolor/22x22/categories/lastfm-recommended.png +%%DATADIR%%/icons/hicolor/22x22/categories/lastfm-tag.png +%%DATADIR%%/icons/hicolor/22x22/categories/miro-guide-source.png +%%DATADIR%%/icons/hicolor/22x22/categories/podcast.png +%%DATADIR%%/icons/hicolor/22x22/categories/radio.png +%%DATADIR%%/icons/hicolor/22x22/categories/source-playlist.png +%%DATADIR%%/icons/hicolor/22x22/categories/source-smart-playlist.png +%%DATADIR%%/icons/hicolor/22x22/categories/wikipedia.png +%%OPT_YOUTUBE%%%%DATADIR%%/icons/hicolor/22x22/categories/youtube.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/22x22/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/24x24/categories/miro-guide-source.png +%%OPT_YOUTUBE%%%%DATADIR%%/icons/hicolor/24x24/categories/youtube.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/24x24/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/256x256/categories/audiobook.png +%%DATADIR%%/icons/hicolor/256x256/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/256x256/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/256x256/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/256x256/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/32x32/actions/media-write-cd.png +%%DATADIR%%/icons/hicolor/32x32/categories/miro-guide-source.png +%%DATADIR%%/icons/hicolor/32x32/categories/wikipedia.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/32x32/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/48x48/actions/media-write-cd.png +%%DATADIR%%/icons/hicolor/48x48/categories/audiobook.png +%%DATADIR%%/icons/hicolor/48x48/categories/miro-guide-source.png +%%DATADIR%%/icons/hicolor/48x48/categories/podcast.png +%%DATADIR%%/icons/hicolor/48x48/categories/radio.png +%%DATADIR%%/icons/hicolor/48x48/categories/wikipedia.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-google-nexus-one.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-htc-g1-white.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-nokia-n900.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-nook.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-palm-pre.png +%%DATADIR%%/icons/hicolor/48x48/devices/phone-xperia-arc.png +%%DATADIR%%/icons/hicolor/scalable/categories/miro-guide-source.svg +%%DATADIR%%/icons/hicolor/scalable/categories/radio.svg +%%DATADIR%%/icons/hicolor/scalable/categories/wikipedia.svg +%%DATADIR%%/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 @@ -309,6 +321,29 @@ 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/cs/add-podcast.page +share/gnome/help/banshee/cs/add-radio.page +share/gnome/help/banshee/cs/advanced.page +share/gnome/help/banshee/cs/amazon.page +share/gnome/help/banshee/cs/emusic.page +share/gnome/help/banshee/cs/extensions.page +share/gnome/help/banshee/cs/import.page +share/gnome/help/banshee/cs/index.page +share/gnome/help/banshee/cs/introduction.page +share/gnome/help/banshee/cs/itunes-import.page +share/gnome/help/banshee/cs/keyboardshortcuts.page +share/gnome/help/banshee/cs/lastfm.page +share/gnome/help/banshee/cs/legal.xml +share/gnome/help/banshee/cs/manage-coverart.page +share/gnome/help/banshee/cs/manage-playlists.page +share/gnome/help/banshee/cs/manage-tags.page +share/gnome/help/banshee/cs/play-queue.page +share/gnome/help/banshee/cs/play.page +share/gnome/help/banshee/cs/rb-import.page +share/gnome/help/banshee/cs/search.page +share/gnome/help/banshee/cs/sort.page +share/gnome/help/banshee/cs/sync.page +share/gnome/help/banshee/cs/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 @@ -378,6 +413,29 @@ 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/en_GB/add-podcast.page +share/gnome/help/banshee/en_GB/add-radio.page +share/gnome/help/banshee/en_GB/advanced.page +share/gnome/help/banshee/en_GB/amazon.page +share/gnome/help/banshee/en_GB/emusic.page +share/gnome/help/banshee/en_GB/extensions.page +share/gnome/help/banshee/en_GB/import.page +share/gnome/help/banshee/en_GB/index.page +share/gnome/help/banshee/en_GB/introduction.page +share/gnome/help/banshee/en_GB/itunes-import.page +share/gnome/help/banshee/en_GB/keyboardshortcuts.page +share/gnome/help/banshee/en_GB/lastfm.page +share/gnome/help/banshee/en_GB/legal.xml +share/gnome/help/banshee/en_GB/manage-coverart.page +share/gnome/help/banshee/en_GB/manage-playlists.page +share/gnome/help/banshee/en_GB/manage-tags.page +share/gnome/help/banshee/en_GB/play-queue.page +share/gnome/help/banshee/en_GB/play.page +share/gnome/help/banshee/en_GB/rb-import.page +share/gnome/help/banshee/en_GB/search.page +share/gnome/help/banshee/en_GB/sort.page +share/gnome/help/banshee/en_GB/sync.page +share/gnome/help/banshee/en_GB/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 @@ -516,6 +574,52 @@ 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/gnome/help/banshee/uk/add-podcast.page +share/gnome/help/banshee/uk/add-radio.page +share/gnome/help/banshee/uk/advanced.page +share/gnome/help/banshee/uk/amazon.page +share/gnome/help/banshee/uk/emusic.page +share/gnome/help/banshee/uk/extensions.page +share/gnome/help/banshee/uk/import.page +share/gnome/help/banshee/uk/index.page +share/gnome/help/banshee/uk/introduction.page +share/gnome/help/banshee/uk/itunes-import.page +share/gnome/help/banshee/uk/keyboardshortcuts.page +share/gnome/help/banshee/uk/lastfm.page +share/gnome/help/banshee/uk/legal.xml +share/gnome/help/banshee/uk/manage-coverart.page +share/gnome/help/banshee/uk/manage-playlists.page +share/gnome/help/banshee/uk/manage-tags.page +share/gnome/help/banshee/uk/play-queue.page +share/gnome/help/banshee/uk/play.page +share/gnome/help/banshee/uk/rb-import.page +share/gnome/help/banshee/uk/search.page +share/gnome/help/banshee/uk/sort.page +share/gnome/help/banshee/uk/sync.page +share/gnome/help/banshee/uk/ui.page +share/gnome/help/banshee/zh_CN/add-podcast.page +share/gnome/help/banshee/zh_CN/add-radio.page +share/gnome/help/banshee/zh_CN/advanced.page +share/gnome/help/banshee/zh_CN/amazon.page +share/gnome/help/banshee/zh_CN/emusic.page +share/gnome/help/banshee/zh_CN/extensions.page +share/gnome/help/banshee/zh_CN/import.page +share/gnome/help/banshee/zh_CN/index.page +share/gnome/help/banshee/zh_CN/introduction.page +share/gnome/help/banshee/zh_CN/itunes-import.page +share/gnome/help/banshee/zh_CN/keyboardshortcuts.page +share/gnome/help/banshee/zh_CN/lastfm.page +share/gnome/help/banshee/zh_CN/legal.xml +share/gnome/help/banshee/zh_CN/manage-coverart.page +share/gnome/help/banshee/zh_CN/manage-playlists.page +share/gnome/help/banshee/zh_CN/manage-tags.page +share/gnome/help/banshee/zh_CN/play-queue.page +share/gnome/help/banshee/zh_CN/play.page +share/gnome/help/banshee/zh_CN/rb-import.page +share/gnome/help/banshee/zh_CN/search.page +share/gnome/help/banshee/zh_CN/sort.page +share/gnome/help/banshee/zh_CN/sync.page +share/gnome/help/banshee/zh_CN/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 @@ -555,6 +659,7 @@ 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/nn/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 @@ -562,10 +667,12 @@ 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/sk/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/te/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 @@ -574,52 +681,56 @@ 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 +share/mime/packages/banshee-emx.xml +@dirrm share/gnome/help/banshee/zh_CN +@dirrm share/gnome/help/banshee/uk @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/en_GB @dirrm share/gnome/help/banshee/el @dirrm share/gnome/help/banshee/de @dirrm share/gnome/help/banshee/da +@dirrm share/gnome/help/banshee/cs @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 %%DATADIR%%/icons/hicolor/scalable/devices +@dirrm %%DATADIR%%/icons/hicolor/scalable/categories +@dirrm %%DATADIR%%/icons/hicolor/scalable +@dirrm %%DATADIR%%/icons/hicolor/48x48/devices +@dirrm %%DATADIR%%/icons/hicolor/48x48/categories +@dirrm %%DATADIR%%/icons/hicolor/48x48/actions +@dirrm %%DATADIR%%/icons/hicolor/48x48 +@dirrm %%DATADIR%%/icons/hicolor/32x32/devices +@dirrm %%DATADIR%%/icons/hicolor/32x32/categories +@dirrm %%DATADIR%%/icons/hicolor/32x32/actions +@dirrm %%DATADIR%%/icons/hicolor/32x32 +@dirrm %%DATADIR%%/icons/hicolor/256x256/devices +@dirrm %%DATADIR%%/icons/hicolor/256x256/categories +@dirrm %%DATADIR%%/icons/hicolor/256x256 +@dirrm %%DATADIR%%/icons/hicolor/24x24/devices +@dirrm %%DATADIR%%/icons/hicolor/24x24/categories +@dirrm %%DATADIR%%/icons/hicolor/24x24 +@dirrm %%DATADIR%%/icons/hicolor/22x22/devices +@dirrm %%DATADIR%%/icons/hicolor/22x22/categories +@dirrm %%DATADIR%%/icons/hicolor/22x22/actions +@dirrm %%DATADIR%%/icons/hicolor/22x22 +@dirrm %%DATADIR%%/icons/hicolor/16x16/status +@dirrm %%DATADIR%%/icons/hicolor/16x16/emblems +@dirrm %%DATADIR%%/icons/hicolor/16x16/devices +@dirrm %%DATADIR%%/icons/hicolor/16x16/categories +@dirrm %%DATADIR%%/icons/hicolor/16x16/actions +@dirrm %%DATADIR%%/icons/hicolor/16x16 +@dirrm %%DATADIR%%/icons/hicolor/128x128/devices +@dirrm %%DATADIR%%/icons/hicolor/128x128 +@dirrm %%DATADIR%%/icons/hicolor +@dirrm %%DATADIR%%/icons +@dirrm %%DATADIR%%/audio-profiles +@dirrm %%DATADIR%% @dirrm lib/banshee/Extensions @dirrm lib/banshee/Backends @dirrm lib/banshee |