Jacob Meuser wrote:
why not install the .mo files?  they no longer build them in the
install target, so there's no "can't clean without root privs"
issue any more.

You are right, here is another diff.
 Cheers
  Giovanni
Index: Makefile
===================================================================
RCS file: /cvs/ports/audio/exaile/Makefile,v
retrieving revision 1.7
diff -u -p -r1.7 Makefile
--- Makefile    22 Dec 2009 15:43:15 -0000      1.7
+++ Makefile    18 Mar 2010 08:18:03 -0000
@@ -2,16 +2,15 @@
 
 COMMENT =      music manager and player for GTK+ written in Python
 
-V =            0.3.0.1
-PKGNAME =      ${DISTNAME}p0
-
-DISTNAME =     exaile-${V}
+V =            0.3.1
+P =            0
+DISTNAME =     exaile-${V}.${P}
 
 CATEGORIES =   audio x11
 
 HOMEPAGE =     http://www.exaile.org/
 
-MASTER_SITES = http://www.launchpad.net/exaile/0.3.0/$V/+download/
+MASTER_SITES = http://www.launchpad.net/exaile/$V/$V/+download/
 
 # GPLv2+
 PERMIT_PACKAGE_CDROM = Yes
@@ -40,12 +39,16 @@ RUN_DEPENDS =       :dbus-python->=0.82.1:x11/
 USE_X11 =      Yes
 USE_GMAKE =    Yes
 NO_REGRESS =   Yes
+# Regress requires py-mox which is not yet available
+# REGRESS_TARGET=      test
+# REGRESS_DEPENDS=::devel/py-nose
 
 CONFIGURE_STYLE =none
-ALL_TARGET =   compile
 SUBST_VARS +=  MODPY_SITEPKG
 
 post-configure:
-       ${SUBST_CMD} ${WRKSRC}/Makefile ${WRKSRC}/data/exaile.desktop 
${WRKSRC}/plugins/Makefile
+       ${SUBST_CMD} ${WRKSRC}/Makefile ${WRKSRC}/data/exaile.desktop \
+               ${WRKSRC}/plugins/Makefile ${WRKSRC}/tools/generate-launcher
+       @rm -rf ${WRKSRC}/plugins/daap*
 
 .include <bsd.port.mk>
Index: distinfo
===================================================================
RCS file: /cvs/ports/audio/exaile/distinfo,v
retrieving revision 1.2
diff -u -p -r1.2 distinfo
--- distinfo    29 Oct 2009 08:33:46 -0000      1.2
+++ distinfo    18 Mar 2010 08:18:03 -0000
@@ -1,5 +1,5 @@
-MD5 (exaile-0.3.0.1.tar.gz) = xr0UzqdHqAhXCzBOZHVE8Q==
-RMD160 (exaile-0.3.0.1.tar.gz) = b3cFwZLWewD2/myB/tNDDohosPo=
-SHA1 (exaile-0.3.0.1.tar.gz) = 1Yjj+2pYuk0PhNMTbPByRia76H4=
-SHA256 (exaile-0.3.0.1.tar.gz) = R+tDMqgDsKixbcW5DpLXjbe/FrmpRnypiTE0rNJq5U0=
-SIZE (exaile-0.3.0.1.tar.gz) = 1528077
+MD5 (exaile-0.3.1.0.tar.gz) = 6VVO6btJrz0bOoVw5Ron2g==
+RMD160 (exaile-0.3.1.0.tar.gz) = 4XzwAB106osqneMVrOn4GGXenmo=
+SHA1 (exaile-0.3.1.0.tar.gz) = k4torQYr7tBxhAMGJJLJ2ok6uIY=
+SHA256 (exaile-0.3.1.0.tar.gz) = aCOfxA2iO6cjJ7EDUqNR6gA4mVXWMblvaa4EqYYWYvA=
+SIZE (exaile-0.3.1.0.tar.gz) = 1899451
Index: patches/patch-Makefile
===================================================================
RCS file: /cvs/ports/audio/exaile/patches/patch-Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 patch-Makefile
--- patches/patch-Makefile      29 Oct 2009 08:33:47 -0000      1.2
+++ patches/patch-Makefile      18 Mar 2010 08:18:03 -0000
@@ -1,49 +1,80 @@
 $OpenBSD: patch-Makefile,v 1.2 2009/10/29 08:33:47 giovanni Exp $
---- Makefile.orig      Mon Aug 24 23:25:03 2009
-+++ Makefile   Wed Sep  2 10:28:25 2009
-@@ -1,16 +1,16 @@
--PREFIX ?= /usr/local
-+PREFIX = ${TRUEPREFIX}
- LIBINSTALLDIR ?= /lib
--XDGCONFDIR ?= /etc/xdg
-+XDGCONFDIR ?= ${PREFIX}/share/exaile/xdg
- 
--EXAILELIBDIR = $(DESTDIR)$(PREFIX)$(LIBINSTALLDIR)/exaile
-+EXAILELIBDIR = $(DESTDIR)${MODPY_SITEPKG}/exaile
- EXAILESHAREDIR = $(DESTDIR)$(PREFIX)/share/exaile
+--- Makefile.orig      Tue Mar 16 02:52:51 2010
++++ Makefile   Thu Mar 18 09:10:29 2010
+@@ -1,9 +1,9 @@
+-PREFIX                ?= /usr/local
++PREFIX                ?= ${TRUEPREFIX}
+ LIBINSTALLDIR         ?= /lib
+-XDGCONFDIR    ?= /etc/xdg
++XDGCONFDIR    ?= ${PREFIX}/share/exaile/xdg
+ 
+-EXAILELIBDIR  = $(DESTDIR)$(PREFIX)$(LIBINSTALLDIR)/exaile
+-EXAILESHAREDIR        = $(DESTDIR)$(PREFIX)/share/exaile
++EXAILELIBDIR  = $(DESTDIR)${MODPY_SITEPKG}/exaile
++EXAILESHAREDIR        = $(DESTDIR)${TRUEPREFIX}/share/exaile
+ EXAILECONFDIR         = $(DESTDIR)$(XDGCONFDIR)/exaile
  
- all: compile
+ .PHONY: dist test coverage clean sanitycheck
+@@ -17,12 +17,12 @@ all_no_locale: compile
        @echo "Ready to install..."
  
  compile:
 -      python -m compileall -q xl xlgui
 -      -python -O -m compileall -q xl xlgui
-+      ${MODPY_BIN} -m compileall xl lib xlgui
-+      -${MODPY_BIN} -O -m compileall xl lib xlgui
-       cd plugins && make && cd ..
++      ${MODPY_BIN} -m compileall -q xl xlgui
++      -${MODPY_BIN} -O -m compileall -q xl xlgui
+       $(MAKE) -C plugins compile
  
  make-install-dirs:
-@@ -87,8 +87,8 @@ install-target: make-install-dirs
-       # the printf here is for bsd compat, dont use echo!
-       cd $(DESTDIR)$(PREFIX)/bin && \
-        printf "#!/bin/sh\n\
--       exec python $(PREFIX)$(LIBINSTALLDIR)/exaile/exaile.py \
--       --datadir=$(PREFIX)/share/exaile/data --startgui \"\...@\"" \
-+       exec ${MODPY_BIN} ${MODPY_SITEPKG}/exaile/exaile.py \
-+       --datadir=$(PREFIX)/share/exaile/data --no-hal --startgui \"\...@\"" \
-        > exaile && \
-        chmod 755 exaile
-       cd plugins && make install DESTDIR=$(DESTDIR) PREFIX=$(PREFIX) \
-@@ -128,10 +128,10 @@ pot:
-       find plugins -name "*.py" >> po/POTFILES.in
-       find plugins -name "*.glade" >> po/POTFILES.in
-       find plugins -name PLUGININFO >> po/POTFILES.in
--      python tools/createpot.py
-+      ${MODPY_BIN} tools/createpot.py
- 
- translations:
--      python tools/createpot.py compile
-+      ${MODPY_BIN} tools/createpot.py compile
+-      mkdir -p $(DESTDIR)$(PREFIX)/bin
++      mkdir -p $(DESTDIR)${TRUEPREFIX}/bin
+       mkdir -p $(EXAILELIBDIR)
+       mkdir -p $(EXAILELIBDIR)/xl
+       mkdir -p $(EXAILELIBDIR)/xl/metadata
+@@ -44,8 +44,8 @@ make-install-dirs:
+       mkdir -p $(EXAILESHAREDIR)/data/ui
+       mkdir -p $(EXAILESHAREDIR)/data/migrations
+       mkdir -p $(EXAILESHAREDIR)/data/migrations/migration_200907100931
+-      mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
+-      mkdir -p $(DESTDIR)$(PREFIX)/share/applications
++      mkdir -p $(DESTDIR)${TRUEPREFIX}/share/pixmaps
++      mkdir -p $(DESTDIR)${TRUEPREFIX}/share/applications
+       mkdir -p $(EXAILECONFDIR)
+ 
+ uninstall:
+@@ -89,18 +89,18 @@ install-target: make-install-dirs
+       install -m 644 data/images/scalable/*.svg 
$(EXAILESHAREDIR)/data/images/scalable
+       install -m 644 data/images/*.png $(EXAILESHAREDIR)/data/images
+       install -m 644 data/images/48x48/exaile.png \
+-              $(DESTDIR)$(PREFIX)/share/pixmaps/exaile.png
++              $(DESTDIR)${TRUEPREFIX}/share/pixmaps/exaile.png
+       install -m 644 data/ui/*.ui $(EXAILESHAREDIR)/data/ui
+       install -m 644 data/migrations/*.py $(EXAILESHAREDIR)/data/migrations/
+       install -m 644 data/migrations/migration_200907100931/*.py \
+               $(EXAILESHAREDIR)/data/migrations/migration_200907100931/
+       install -m 644 data/exaile.desktop \
+-              $(DESTDIR)$(PREFIX)/share/applications/ 
++              $(DESTDIR)${TRUEPREFIX}/share/applications/     
+       install -m 644 data/config/settings.ini $(EXAILECONFDIR)
+       # 2010-03-12 danfuhry: moved this to an external script to clean up 
syntax
+       # and avoid makefile limitations
+-      tools/generate-launcher "$(DESTDIR)" "$(PREFIX)" "$(LIBINSTALLDIR)"
+-      chmod 755 $(DESTDIR)$(PREFIX)/bin/exaile
++      tools/generate-launcher "$(DESTDIR)" "${TRUEPREFIX}" "$(LIBINSTALLDIR)"
++      chmod 755 $(DESTDIR)${TRUEPREFIX}/bin/exaile
+       $(MAKE) -C plugins install
+ 
+ locale:
+@@ -109,10 +109,10 @@ locale:
+ install-locale:
+       for f in `find po -name exaile.mo` ; do \
+         install -d -m 755 \
+-          `echo $$f | sed "s|^po|$(DESTDIR)$(PREFIX)/share/locale|" | \
++          `echo $$f | sed "s|^po|$(DESTDIR)${TRUEPREFIX}/share/locale|" | \
+             xargs dirname` && \
+         install -m 644 $$f \
+-          `echo $$f | sed "s|^po|$(DESTDIR)$(PREFIX)/share/locale|"` ; \
++          `echo $$f | sed "s|^po|$(DESTDIR)${TRUEPREFIX}/share/locale|"` ; \
+         done
  
- potball:
-       tar --bzip2 --format=posix -cf exaile-po.tar.bz2 po/ \
+ plugins_dist:
Index: patches/patch-data_exaile_desktop
===================================================================
RCS file: /cvs/ports/audio/exaile/patches/patch-data_exaile_desktop,v
retrieving revision 1.2
diff -u -p -r1.2 patch-data_exaile_desktop
--- patches/patch-data_exaile_desktop   29 Oct 2009 08:33:47 -0000      1.2
+++ patches/patch-data_exaile_desktop   18 Mar 2010 08:18:03 -0000
@@ -1,12 +1,12 @@
 $OpenBSD: patch-data_exaile_desktop,v 1.2 2009/10/29 08:33:47 giovanni Exp $
---- data/exaile.desktop.orig   Mon Aug 24 23:25:03 2009
-+++ data/exaile.desktop        Wed Sep  2 10:41:29 2009
-@@ -32,7 +32,7 @@ Comment[pl]=Słuchanie, przeglądanie i modyfikowanie 
+--- data/exaile.desktop.orig   Tue Mar 16 02:52:51 2010
++++ data/exaile.desktop        Thu Mar 18 09:09:41 2010
+@@ -33,7 +33,7 @@ Comment[pl]=Słuchanie, przeglądanie i modyfikowanie 
  Comment[sv]=Spela, utforska och hantera din musiksamling
  Comment[pt_BR]=Escute, gerencie ou edite sua coleção de músicas
  Comment[ro]=Ascultați, răsfoiți sau editați-vă colecția de muzică
 -Icon=exaile
-+Icon=/usr/local/share/pixmaps/exaile.png
++Icon=${TRUEPREFIX}/share/pixmaps/exaile.png
  Exec=exaile %F
  Terminal=false
  
MimeType=audio/musepack;application/musepack;application/x-ape;audio/ape;audio/x-ape;audio/x-musepack;application/x-musepack;audio/x-mp3;application/x-id3;audio/mpeg;audio/x-mpeg;audio/x-mpeg-3;audio/mpeg3;audio/mp3;audio/x-m4a;audio/mpc;audio/x-mpc;audio/mp;audio/x-mp;application/ogg;application/x-ogg;audio/vorbis;audio/x-vorbis;audio/ogg;audio/x-ogg;audio/x-flac;application/x-flac;audio/flac;
Index: patches/patch-plugins_Makefile
===================================================================
RCS file: /cvs/ports/audio/exaile/patches/patch-plugins_Makefile,v
retrieving revision 1.2
diff -u -p -r1.2 patch-plugins_Makefile
--- patches/patch-plugins_Makefile      29 Oct 2009 08:33:47 -0000      1.2
+++ patches/patch-plugins_Makefile      18 Mar 2010 08:18:03 -0000
@@ -1,6 +1,6 @@
 $OpenBSD: patch-plugins_Makefile,v 1.2 2009/10/29 08:33:47 giovanni Exp $
---- plugins/Makefile.orig      Mon Aug 24 23:25:03 2009
-+++ plugins/Makefile   Mon Aug 31 16:04:25 2009
+--- plugins/Makefile.orig      Tue Mar 16 02:52:51 2010
++++ plugins/Makefile   Wed Mar 17 19:05:05 2010
 @@ -1,7 +1,6 @@
 -PREFIX ?= /usr/local
 -PLUGINSDIR = /share/exaile/plugins/
@@ -10,8 +10,8 @@ $OpenBSD: patch-plugins_Makefile,v 1.2 2
 +INSTALL_PLUGINS = `${MODPY_BIN} list.py`
  
  # EXTRA_PLUGINS = ipconsole \
- #               helloworld
-@@ -12,11 +11,11 @@ 
+ #                helloworld
+@@ -12,22 +11,22 @@ all: compile
  
  dist:
        mkdir -p ../dist/plugins/
@@ -25,4 +25,19 @@ $OpenBSD: patch-plugins_Makefile,v 1.2 2
 +      -${MODPY_BIN} -O -m compileall -q .
  
  install:
-       mkdir -p $(DESTDIR)$(PREFIX)$(PLUGINSDIR)
+-      mkdir -p $(DESTDIR)$(PREFIX)$(PLUGINSDIR)
++      mkdir -p $(DESTDIR)${TRUEPREFIX}$(PLUGINSDIR)
+       for plugin in $(INSTALL_PLUGINS); do \
+-          cp -r $${plugin} $(DESTDIR)$(PREFIX)$(PLUGINSDIR) ; \
++          cp -r $${plugin} $(DESTDIR)${TRUEPREFIX}$(PLUGINSDIR) ; \
+           done ;
+ 
+ extra_install:
+-      mkdir -p $(DESTDIR)$(PREFIX)$(PLUGINSDIR)
++      mkdir -p $(DESTDIR)${TRUEPREFIX}$(PLUGINSDIR)
+       for plugin in $(EXTRA_PLUGINS); do \
+-          cp -r $${plugin} $(DESTDIR)$(PREFIX)$(PLUGINSDIR) ; \
++          cp -r $${plugin} $(DESTDIR)${TRUEPREFIX}$(PLUGINSDIR) ; \
+           done ;
+ 
+ uninstall:
Index: patches/patch-tools_compilepo_sh
===================================================================
RCS file: patches/patch-tools_compilepo_sh
diff -N patches/patch-tools_compilepo_sh
--- patches/patch-tools_compilepo_sh    29 Oct 2009 08:33:47 -0000      1.1
+++ /dev/null   1 Jan 1970 00:00:00 -0000
@@ -1,9 +0,0 @@
---- tools/compilepo.sh.orig    Wed Sep  2 11:13:56 2009
-+++ tools/compilepo.sh Wed Sep  2 11:14:37 2009
-@@ -1,5 +1,5 @@
- #!/bin/sh
- 
--outpath=$(echo "$1" | sed "s/.po/\/LC_MESSAGES/" -)
-+outpath=$(echo "$1" | sed "s/.po/\/LC_MESSAGES/")
- mkdir -p $outpath
- msgmerge -o - $1 messages.pot | msgfmt -c -o $outpath/exaile.mo -
Index: patches/patch-tools_generate-launcher
===================================================================
RCS file: patches/patch-tools_generate-launcher
diff -N patches/patch-tools_generate-launcher
--- /dev/null   1 Jan 1970 00:00:00 -0000
+++ patches/patch-tools_generate-launcher       18 Mar 2010 08:18:03 -0000
@@ -0,0 +1,12 @@
+$OpenBSD$
+--- tools/generate-launcher.orig       Tue Mar 16 02:52:51 2010
++++ tools/generate-launcher    Wed Mar 17 19:21:43 2010
+@@ -28,7 +28,7 @@ if test -z "\$XDG_DATA_DIRS"; then
+ fi
+ XDG_DATA_DIRS="\$EXAILE_PREFIX/share/:\$XDG_DATA_DIRS"
+ export XDG_DATA_DIRS
+-exec python \$EXAILE_PREFIX$LIBDIR/exaile/exaile.py 
--datadir=\$EXAILE_PREFIX/share/exaile/data --startgui \$@
++exec ${MODPY_BIN} \${MODPY_SITEPKG}/exaile/exaile.py 
--datadir=\$EXAILE_PREFIX/share/exaile/data --startgui \$@
+ exit \$?
+ 
+ EOF
Index: pkg/PLIST
===================================================================
RCS file: /cvs/ports/audio/exaile/pkg/PLIST,v
retrieving revision 1.4
diff -u -p -r1.4 PLIST
--- pkg/PLIST   22 Dec 2009 15:43:15 -0000      1.4
+++ pkg/PLIST   18 Mar 2010 08:18:04 -0000
@@ -46,6 +46,9 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/_id3.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/ape.pyo
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/asf.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/asf.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/asf.pyo
@@ -82,9 +85,17 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/wv.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/wv.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/metadata/wv.pyo
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/migration.py
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/migration.pyc
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/migration.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/__init__.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/__init__.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/__init__.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/__init__.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/migrations/database/from1to2.pyo
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/nls.pyo
@@ -122,15 +133,28 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/settings.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/settings.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/settings.pyo
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/track.py
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/track.pyc
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/track.pyo
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/trackdb.py
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/trackdb.pyc
-lib/python${MODPY_VERSION}/site-packages/exaile/xl/trackdb.pyo
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/transcoder.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/transcoder.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/transcoder.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/__init__.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/__init__.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/__init__.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/search.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/search.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/search.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/track.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/track.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/track.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/trackdb.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/trackdb.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/trackdb.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/util.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/util.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/trax/util.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/version.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/version.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xl/version.pyo
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/xdg.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/xdg.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xl/xdg.pyo
@@ -206,6 +230,9 @@ lib/python${MODPY_VERSION}/site-packages
 lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.py
 
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.pyc
 
lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/appearance_prefs.pyo
+lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.py
+lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.pyc
+lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/collection_prefs.pyo
 lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.py
 lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.pyc
 lib/python${MODPY_VERSION}/site-packages/exaile/xlgui/prefs/cover_prefs.pyo
@@ -242,32 +269,6 @@ lib/python${MODPY_VERSION}/site-packages
 share/applications/exaile.desktop
 share/exaile/
 share/exaile/data/
-share/exaile/data/glade/
-share/exaile/data/glade/about_dialog.glade
-share/exaile/data/glade/appearance_prefs_pane.glade
-share/exaile/data/glade/collection_manager.glade
-share/exaile/data/glade/collection_panel.glade
-share/exaile/data/glade/cover_prefs_pane.glade
-share/exaile/data/glade/coverchooser.glade
-share/exaile/data/glade/covermanager.glade
-share/exaile/data/glade/coverwindow.glade
-share/exaile/data/glade/device_manager.glade
-share/exaile/data/glade/device_panel.glade
-share/exaile/data/glade/files_panel.glade
-share/exaile/data/glade/flatplaylist_panel.glade
-share/exaile/data/glade/general_prefs_pane.glade
-share/exaile/data/glade/main.glade
-share/exaile/data/glade/osd_prefs_pane.glade
-share/exaile/data/glade/osd_window.glade
-share/exaile/data/glade/playback_prefs_pane.glade
-share/exaile/data/glade/playlists_panel.glade
-share/exaile/data/glade/playlists_prefs_pane.glade
-share/exaile/data/glade/plugin_prefs_pane.glade
-share/exaile/data/glade/preferences_dialog.glade
-share/exaile/data/glade/queue_dialog.glade
-share/exaile/data/glade/radio_panel.glade
-share/exaile/data/glade/splash.glade
-share/exaile/data/glade/trackproperties_dialog.glade
 share/exaile/data/images/
 share/exaile/data/images/16x16/
 share/exaile/data/images/16x16/exaile-pause.png
@@ -307,12 +308,12 @@ share/exaile/data/images/exailelogo.png
 share/exaile/data/images/genre.png
 share/exaile/data/images/nocover.png
 share/exaile/data/images/playlist.png
+share/exaile/data/images/scalable/
+share/exaile/data/images/scalable/exaile-pause.svg
+share/exaile/data/images/scalable/exaile-play.svg
+share/exaile/data/images/scalable/exaile.svg
 share/exaile/data/images/splash.png
 share/exaile/data/images/star.png
-share/exaile/data/images/svg/
-share/exaile/data/images/svg/exaile-pause.svg
-share/exaile/data/images/svg/exaile-play.svg
-share/exaile/data/images/svg/exaile.svg
 share/exaile/data/images/track.png
 share/exaile/data/images/year.png
 share/exaile/data/migrations/
@@ -332,7 +333,7 @@ share/exaile/data/plugins/alarmclock/__i
 share/exaile/data/plugins/alarmclock/acprefs.py
 share/exaile/data/plugins/alarmclock/acprefs.pyc
 share/exaile/data/plugins/alarmclock/acprefs.pyo
-share/exaile/data/plugins/alarmclock/acprefs_pane.glade
+share/exaile/data/plugins/alarmclock/acprefs_pane.ui
 share/exaile/data/plugins/amazoncovers/
 share/exaile/data/plugins/amazoncovers/PLUGININFO
 share/exaile/data/plugins/amazoncovers/__init__.py
@@ -344,10 +345,7 @@ share/exaile/data/plugins/amazoncovers/_
 share/exaile/data/plugins/amazoncovers/amazonprefs.py
 share/exaile/data/plugins/amazoncovers/amazonprefs.pyc
 share/exaile/data/plugins/amazoncovers/amazonprefs.pyo
-share/exaile/data/plugins/amazoncovers/amazonprefs_pane.glade
-share/exaile/data/plugins/amazoncovers/test.py
-share/exaile/data/plugins/amazoncovers/test.pyc
-share/exaile/data/plugins/amazoncovers/test.pyo
+share/exaile/data/plugins/amazoncovers/amazonprefs_pane.ui
 share/exaile/data/plugins/audioscrobbler/
 share/exaile/data/plugins/audioscrobbler/PLUGININFO
 share/exaile/data/plugins/audioscrobbler/__init__.py
@@ -359,13 +357,22 @@ share/exaile/data/plugins/audioscrobbler
 share/exaile/data/plugins/audioscrobbler/asprefs.py
 share/exaile/data/plugins/audioscrobbler/asprefs.pyc
 share/exaile/data/plugins/audioscrobbler/asprefs.pyo
-share/exaile/data/plugins/audioscrobbler/asprefs_pane.glade
+share/exaile/data/plugins/audioscrobbler/asprefs_pane.ui
+share/exaile/data/plugins/awn/
+share/exaile/data/plugins/awn/PLUGININFO
+share/exaile/data/plugins/awn/__init__.py
+share/exaile/data/plugins/awn/__init__.pyc
+share/exaile/data/plugins/awn/__init__.pyo
+share/exaile/data/plugins/awn/awn_prefs.py
+share/exaile/data/plugins/awn/awn_prefs.pyc
+share/exaile/data/plugins/awn/awn_prefs.pyo
+share/exaile/data/plugins/awn/awn_prefs_pane.ui
 share/exaile/data/plugins/bookmarks/
 share/exaile/data/plugins/bookmarks/PLUGININFO
 share/exaile/data/plugins/bookmarks/__init__.py
 share/exaile/data/plugins/bookmarks/__init__.pyc
 share/exaile/data/plugins/bookmarks/__init__.pyo
-share/exaile/data/plugins/bookmarks/bookmarks_pane.glade
+share/exaile/data/plugins/bookmarks/bookmarks_pane.ui
 share/exaile/data/plugins/bookmarks/bookmarksprefs.py
 share/exaile/data/plugins/bookmarks/bookmarksprefs.pyc
 share/exaile/data/plugins/bookmarks/bookmarksprefs.pyo
@@ -380,7 +387,7 @@ share/exaile/data/plugins/cd/_cdguipanel
 share/exaile/data/plugins/cd/cdprefs.py
 share/exaile/data/plugins/cd/cdprefs.pyc
 share/exaile/data/plugins/cd/cdprefs.pyo
-share/exaile/data/plugins/cd/cdprefs_pane.glade
+share/exaile/data/plugins/cd/cdprefs_pane.ui
 share/exaile/data/plugins/cd/importer.py
 share/exaile/data/plugins/cd/importer.pyc
 share/exaile/data/plugins/cd/importer.pyo
@@ -390,8 +397,8 @@ share/exaile/data/plugins/contextinfo/__
 share/exaile/data/plugins/contextinfo/__init__.pyc
 share/exaile/data/plugins/contextinfo/__init__.pyo
 share/exaile/data/plugins/contextinfo/classic/
-share/exaile/data/plugins/contextinfo/classic/artist.htm
-share/exaile/data/plugins/contextinfo/classic/default.htm
+share/exaile/data/plugins/contextinfo/classic/artist.html
+share/exaile/data/plugins/contextinfo/classic/default.html
 share/exaile/data/plugins/contextinfo/classic/images/
 share/exaile/data/plugins/contextinfo/classic/images/bg-bottom.png
 share/exaile/data/plugins/contextinfo/classic/images/bg-top.png
@@ -400,15 +407,18 @@ share/exaile/data/plugins/contextinfo/cl
 share/exaile/data/plugins/contextinfo/classic/images/light.png
 share/exaile/data/plugins/contextinfo/classic/js/
 share/exaile/data/plugins/contextinfo/classic/js/util.js
-share/exaile/data/plugins/contextinfo/classic/lyrics.htm
-share/exaile/data/plugins/contextinfo/classic/playing.htm
+share/exaile/data/plugins/contextinfo/classic/lyrics.html
+share/exaile/data/plugins/contextinfo/classic/playing.html
 share/exaile/data/plugins/contextinfo/classic/style.css
-share/exaile/data/plugins/contextinfo/classic/tag.htm
-share/exaile/data/plugins/contextinfo/context.glade
-share/exaile/data/plugins/contextinfo/context.gladep
+share/exaile/data/plugins/contextinfo/classic/tag.html
+share/exaile/data/plugins/contextinfo/context.ui
+share/exaile/data/plugins/contextinfo/context_pane.ui
+share/exaile/data/plugins/contextinfo/contextprefs.py
+share/exaile/data/plugins/contextinfo/contextprefs.pyc
+share/exaile/data/plugins/contextinfo/contextprefs.pyo
 share/exaile/data/plugins/contextinfo/extended/
-share/exaile/data/plugins/contextinfo/extended/artist.htm
-share/exaile/data/plugins/contextinfo/extended/default.htm
+share/exaile/data/plugins/contextinfo/extended/artist.html
+share/exaile/data/plugins/contextinfo/extended/default.html
 share/exaile/data/plugins/contextinfo/extended/images/
 share/exaile/data/plugins/contextinfo/extended/images/bg-bottom.png
 share/exaile/data/plugins/contextinfo/extended/images/bg-top.png
@@ -417,14 +427,22 @@ share/exaile/data/plugins/contextinfo/ex
 share/exaile/data/plugins/contextinfo/extended/images/light.png
 share/exaile/data/plugins/contextinfo/extended/js/
 share/exaile/data/plugins/contextinfo/extended/js/util.js
-share/exaile/data/plugins/contextinfo/extended/lyrics.htm
-share/exaile/data/plugins/contextinfo/extended/playing.htm
+share/exaile/data/plugins/contextinfo/extended/lyrics.html
+share/exaile/data/plugins/contextinfo/extended/playing.html
 share/exaile/data/plugins/contextinfo/extended/style.css
-share/exaile/data/plugins/contextinfo/extended/tag.htm
+share/exaile/data/plugins/contextinfo/extended/tag.html
+share/exaile/data/plugins/contextinfo/inspector.py
+share/exaile/data/plugins/contextinfo/inspector.pyc
+share/exaile/data/plugins/contextinfo/inspector.pyo
 share/exaile/data/plugins/contextinfo/loader.gif
 share/exaile/data/plugins/contextinfo/pylast.py
 share/exaile/data/plugins/contextinfo/pylast.pyc
 share/exaile/data/plugins/contextinfo/pylast.pyo
+share/exaile/data/plugins/currentsong/
+share/exaile/data/plugins/currentsong/PLUGININFO
+share/exaile/data/plugins/currentsong/__init__.py
+share/exaile/data/plugins/currentsong/__init__.pyc
+share/exaile/data/plugins/currentsong/__init__.pyo
 share/exaile/data/plugins/desktopcover/
 share/exaile/data/plugins/desktopcover/PLUGININFO
 share/exaile/data/plugins/desktopcover/__init__.py
@@ -434,6 +452,23 @@ share/exaile/data/plugins/desktopcover/p
 share/exaile/data/plugins/desktopcover/prefs.pyc
 share/exaile/data/plugins/desktopcover/prefs.pyo
 share/exaile/data/plugins/desktopcover/prefs.ui
+share/exaile/data/plugins/droptrayicon/
+share/exaile/data/plugins/droptrayicon/PLUGININFO
+share/exaile/data/plugins/droptrayicon/__init__.py
+share/exaile/data/plugins/droptrayicon/__init__.pyc
+share/exaile/data/plugins/droptrayicon/__init__.pyo
+share/exaile/data/plugins/droptrayicon/drop_target_window.ui
+share/exaile/data/plugins/equalizer/
+share/exaile/data/plugins/equalizer/PLUGININFO
+share/exaile/data/plugins/equalizer/__init__.py
+share/exaile/data/plugins/equalizer/__init__.pyc
+share/exaile/data/plugins/equalizer/__init__.pyo
+share/exaile/data/plugins/equalizer/equalizer.ui
+share/exaile/data/plugins/exfalso/
+share/exaile/data/plugins/exfalso/PLUGININFO
+share/exaile/data/plugins/exfalso/__init__.py
+share/exaile/data/plugins/exfalso/__init__.pyc
+share/exaile/data/plugins/exfalso/__init__.pyo
 share/exaile/data/plugins/gnomemmkeys/
 share/exaile/data/plugins/gnomemmkeys/PLUGININFO
 share/exaile/data/plugins/gnomemmkeys/__init__.py
@@ -444,9 +479,6 @@ share/exaile/data/plugins/helloworld/PLU
 share/exaile/data/plugins/helloworld/__init__.py
 share/exaile/data/plugins/helloworld/__init__.pyc
 share/exaile/data/plugins/helloworld/__init__.pyo
-share/exaile/data/plugins/helloworld/test.py
-share/exaile/data/plugins/helloworld/test.pyc
-share/exaile/data/plugins/helloworld/test.pyo
 share/exaile/data/plugins/helloworld/testlib.py
 share/exaile/data/plugins/helloworld/testlib.pyc
 share/exaile/data/plugins/helloworld/testlib.pyo
@@ -455,7 +487,7 @@ share/exaile/data/plugins/ipconsole/PLUG
 share/exaile/data/plugins/ipconsole/__init__.py
 share/exaile/data/plugins/ipconsole/__init__.pyc
 share/exaile/data/plugins/ipconsole/__init__.pyo
-share/exaile/data/plugins/ipconsole/ipconsole_prefs.glade
+share/exaile/data/plugins/ipconsole/ipconsole_prefs.ui
 share/exaile/data/plugins/ipconsole/ipconsoleprefs.py
 share/exaile/data/plugins/ipconsole/ipconsoleprefs.pyc
 share/exaile/data/plugins/ipconsole/ipconsoleprefs.pyo
@@ -467,22 +499,103 @@ share/exaile/data/plugins/ipod/PLUGININF
 share/exaile/data/plugins/ipod/__init__.py
 share/exaile/data/plugins/ipod/__init__.pyc
 share/exaile/data/plugins/ipod/__init__.pyo
+share/exaile/data/plugins/jamendo/
+share/exaile/data/plugins/jamendo/PLUGININFO
+share/exaile/data/plugins/jamendo/__init__.py
+share/exaile/data/plugins/jamendo/__init__.pyc
+share/exaile/data/plugins/jamendo/__init__.pyo
+share/exaile/data/plugins/jamendo/jamapi.py
+share/exaile/data/plugins/jamendo/jamapi.pyc
+share/exaile/data/plugins/jamendo/jamapi.pyo
+share/exaile/data/plugins/jamendo/jamtree.py
+share/exaile/data/plugins/jamendo/jamtree.pyc
+share/exaile/data/plugins/jamendo/jamtree.pyo
+share/exaile/data/plugins/jamendo/menu.py
+share/exaile/data/plugins/jamendo/menu.pyc
+share/exaile/data/plugins/jamendo/menu.pyo
+share/exaile/data/plugins/jamendo/simplejson/
+share/exaile/data/plugins/jamendo/simplejson/__init__.py
+share/exaile/data/plugins/jamendo/simplejson/__init__.pyc
+share/exaile/data/plugins/jamendo/simplejson/__init__.pyo
+share/exaile/data/plugins/jamendo/simplejson/_speedups.c
+share/exaile/data/plugins/jamendo/simplejson/decoder.py
+share/exaile/data/plugins/jamendo/simplejson/decoder.pyc
+share/exaile/data/plugins/jamendo/simplejson/decoder.pyo
+share/exaile/data/plugins/jamendo/simplejson/encoder.py
+share/exaile/data/plugins/jamendo/simplejson/encoder.pyc
+share/exaile/data/plugins/jamendo/simplejson/encoder.pyo
+share/exaile/data/plugins/jamendo/simplejson/scanner.py
+share/exaile/data/plugins/jamendo/simplejson/scanner.pyc
+share/exaile/data/plugins/jamendo/simplejson/scanner.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/
+share/exaile/data/plugins/jamendo/simplejson/tests/__init__.py
+share/exaile/data/plugins/jamendo/simplejson/tests/__init__.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/__init__.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_check_circular.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_check_circular.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_check_circular.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_decode.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_decode.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_decode.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_default.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_default.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_default.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_dump.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_dump.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_dump.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_encode_basestring_ascii.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_encode_basestring_ascii.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_encode_basestring_ascii.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_fail.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_fail.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_fail.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_float.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_float.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_float.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_indent.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_indent.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_indent.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass1.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass1.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass1.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass2.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass2.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass2.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass3.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass3.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_pass3.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_recursion.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_recursion.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_recursion.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_scanstring.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_scanstring.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_scanstring.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_separators.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_separators.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_separators.pyo
+share/exaile/data/plugins/jamendo/simplejson/tests/test_unicode.py
+share/exaile/data/plugins/jamendo/simplejson/tests/test_unicode.pyc
+share/exaile/data/plugins/jamendo/simplejson/tests/test_unicode.pyo
+share/exaile/data/plugins/jamendo/simplejson/tool.py
+share/exaile/data/plugins/jamendo/simplejson/tool.pyc
+share/exaile/data/plugins/jamendo/simplejson/tool.pyo
+share/exaile/data/plugins/jamendo/ui/
+share/exaile/data/plugins/jamendo/ui/jamendo_panel.ui
+share/exaile/data/plugins/karaoke/
+share/exaile/data/plugins/karaoke/PLUGININFO
+share/exaile/data/plugins/karaoke/__init__.py
+share/exaile/data/plugins/karaoke/__init__.pyc
+share/exaile/data/plugins/karaoke/__init__.pyo
 share/exaile/data/plugins/lastfmcovers/
 share/exaile/data/plugins/lastfmcovers/PLUGININFO
 share/exaile/data/plugins/lastfmcovers/__init__.py
 share/exaile/data/plugins/lastfmcovers/__init__.pyc
 share/exaile/data/plugins/lastfmcovers/__init__.pyo
-share/exaile/data/plugins/lastfmcovers/test.py
-share/exaile/data/plugins/lastfmcovers/test.pyc
-share/exaile/data/plugins/lastfmcovers/test.pyo
 share/exaile/data/plugins/lastfmdynamic/
 share/exaile/data/plugins/lastfmdynamic/PLUGININFO
 share/exaile/data/plugins/lastfmdynamic/__init__.py
 share/exaile/data/plugins/lastfmdynamic/__init__.pyc
 share/exaile/data/plugins/lastfmdynamic/__init__.pyo
-share/exaile/data/plugins/lastfmdynamic/test.py
-share/exaile/data/plugins/lastfmdynamic/test.pyc
-share/exaile/data/plugins/lastfmdynamic/test.pyo
 share/exaile/data/plugins/librivox/
 share/exaile/data/plugins/librivox/PLUGININFO
 share/exaile/data/plugins/librivox/__init__.py
@@ -502,17 +615,16 @@ share/exaile/data/plugins/lyricsfly/PLUG
 share/exaile/data/plugins/lyricsfly/__init__.py
 share/exaile/data/plugins/lyricsfly/__init__.pyc
 share/exaile/data/plugins/lyricsfly/__init__.pyo
-share/exaile/data/plugins/lyricsfly/test.py
-share/exaile/data/plugins/lyricsfly/test.pyc
-share/exaile/data/plugins/lyricsfly/test.pyo
+share/exaile/data/plugins/lyricsviewer/
+share/exaile/data/plugins/lyricsviewer/PLUGININFO
+share/exaile/data/plugins/lyricsviewer/__init__.py
+share/exaile/data/plugins/lyricsviewer/__init__.pyc
+share/exaile/data/plugins/lyricsviewer/__init__.pyo
 share/exaile/data/plugins/lyricwiki/
 share/exaile/data/plugins/lyricwiki/PLUGININFO
 share/exaile/data/plugins/lyricwiki/__init__.py
 share/exaile/data/plugins/lyricwiki/__init__.pyc
 share/exaile/data/plugins/lyricwiki/__init__.pyo
-share/exaile/data/plugins/lyricwiki/test.py
-share/exaile/data/plugins/lyricwiki/test.pyc
-share/exaile/data/plugins/lyricwiki/test.pyo
 share/exaile/data/plugins/massstorage/
 share/exaile/data/plugins/massstorage/PLUGININFO
 share/exaile/data/plugins/massstorage/__init__.py
@@ -531,7 +643,7 @@ share/exaile/data/plugins/minimode/icons
 share/exaile/data/plugins/minimode/minimodeprefs.py
 share/exaile/data/plugins/minimode/minimodeprefs.pyc
 share/exaile/data/plugins/minimode/minimodeprefs.pyo
-share/exaile/data/plugins/minimode/minimodeprefs_pane.glade
+share/exaile/data/plugins/minimode/minimodeprefs_pane.ui
 share/exaile/data/plugins/minimode/mmwidgets.py
 share/exaile/data/plugins/minimode/mmwidgets.pyc
 share/exaile/data/plugins/minimode/mmwidgets.pyo
@@ -540,6 +652,10 @@ share/exaile/data/plugins/moodbar/PLUGIN
 share/exaile/data/plugins/moodbar/__init__.py
 share/exaile/data/plugins/moodbar/__init__.pyc
 share/exaile/data/plugins/moodbar/__init__.pyo
+share/exaile/data/plugins/moodbar/moodbarprefs.py
+share/exaile/data/plugins/moodbar/moodbarprefs.pyc
+share/exaile/data/plugins/moodbar/moodbarprefs.pyo
+share/exaile/data/plugins/moodbar/moodbarprefs_pane.ui
 share/exaile/data/plugins/mpris/
 share/exaile/data/plugins/mpris/PLUGININFO
 share/exaile/data/plugins/mpris/__init__.py
@@ -560,15 +676,12 @@ share/exaile/data/plugins/mpris/mpris_ta
 share/exaile/data/plugins/mpris/mpris_tracklist.py
 share/exaile/data/plugins/mpris/mpris_tracklist.pyc
 share/exaile/data/plugins/mpris/mpris_tracklist.pyo
-share/exaile/data/plugins/mpris/test.py
-share/exaile/data/plugins/mpris/test.pyc
-share/exaile/data/plugins/mpris/test.pyo
 share/exaile/data/plugins/multialarmclock/
 share/exaile/data/plugins/multialarmclock/PLUGININFO
 share/exaile/data/plugins/multialarmclock/__init__.py
 share/exaile/data/plugins/multialarmclock/__init__.pyc
 share/exaile/data/plugins/multialarmclock/__init__.pyo
-share/exaile/data/plugins/multialarmclock/alarmclk.glade
+share/exaile/data/plugins/multialarmclock/alarmclk.ui
 share/exaile/data/plugins/multialarmclock/clock32.png
 share/exaile/data/plugins/notify/
 share/exaile/data/plugins/notify/PLUGININFO
@@ -581,10 +694,7 @@ share/exaile/data/plugins/notify/notify_
 share/exaile/data/plugins/notify/notifyprefs.py
 share/exaile/data/plugins/notify/notifyprefs.pyc
 share/exaile/data/plugins/notify/notifyprefs.pyo
-share/exaile/data/plugins/notify/notifyprefs_pane.glade
-share/exaile/data/plugins/notify/test.py
-share/exaile/data/plugins/notify/test.pyc
-share/exaile/data/plugins/notify/test.pyo
+share/exaile/data/plugins/notify/notifyprefs_pane.ui
 share/exaile/data/plugins/notifyosd/
 share/exaile/data/plugins/notifyosd/PLUGININFO
 share/exaile/data/plugins/notifyosd/__init__.py
@@ -596,10 +706,7 @@ share/exaile/data/plugins/notifyosd/noti
 share/exaile/data/plugins/notifyosd/notifyosdprefs.py
 share/exaile/data/plugins/notifyosd/notifyosdprefs.pyc
 share/exaile/data/plugins/notifyosd/notifyosdprefs.pyo
-share/exaile/data/plugins/notifyosd/notifyosdprefs_pane.glade
-share/exaile/data/plugins/notifyosd/test.py
-share/exaile/data/plugins/notifyosd/test.pyc
-share/exaile/data/plugins/notifyosd/test.pyo
+share/exaile/data/plugins/notifyosd/notifyosdprefs_pane.ui
 share/exaile/data/plugins/podcasts/
 share/exaile/data/plugins/podcasts/PLUGININFO
 share/exaile/data/plugins/podcasts/__init__.py
@@ -608,7 +715,7 @@ share/exaile/data/plugins/podcasts/__ini
 share/exaile/data/plugins/podcasts/_feedparser.py
 share/exaile/data/plugins/podcasts/_feedparser.pyc
 share/exaile/data/plugins/podcasts/_feedparser.pyo
-share/exaile/data/plugins/podcasts/podcasts.glade
+share/exaile/data/plugins/podcasts/podcasts.ui
 share/exaile/data/plugins/replaygain/
 share/exaile/data/plugins/replaygain/PLUGININFO
 share/exaile/data/plugins/replaygain/__init__.py
@@ -617,7 +724,7 @@ share/exaile/data/plugins/replaygain/__i
 share/exaile/data/plugins/replaygain/replaygainprefs.py
 share/exaile/data/plugins/replaygain/replaygainprefs.pyc
 share/exaile/data/plugins/replaygain/replaygainprefs.pyo
-share/exaile/data/plugins/replaygain/replaygainprefs_pane.glade
+share/exaile/data/plugins/replaygain/replaygainprefs_pane.ui
 share/exaile/data/plugins/screensaverpause/
 share/exaile/data/plugins/screensaverpause/PLUGININFO
 share/exaile/data/plugins/screensaverpause/__init__.py
@@ -628,9 +735,6 @@ share/exaile/data/plugins/shoutcast/PLUG
 share/exaile/data/plugins/shoutcast/__init__.py
 share/exaile/data/plugins/shoutcast/__init__.pyc
 share/exaile/data/plugins/shoutcast/__init__.pyo
-share/exaile/data/plugins/shoutcast/test.py
-share/exaile/data/plugins/shoutcast/test.pyc
-share/exaile/data/plugins/shoutcast/test.pyo
 share/exaile/data/plugins/streamripper/
 share/exaile/data/plugins/streamripper/PLUGININFO
 share/exaile/data/plugins/streamripper/__init__.py
@@ -639,31 +743,59 @@ share/exaile/data/plugins/streamripper/_
 share/exaile/data/plugins/streamripper/srprefs.py
 share/exaile/data/plugins/streamripper/srprefs.pyc
 share/exaile/data/plugins/streamripper/srprefs.pyo
-share/exaile/data/plugins/streamripper/streamripper.glade
-share/exaile/data/plugins/tagcovers/
-share/exaile/data/plugins/tagcovers/PLUGININFO
-share/exaile/data/plugins/tagcovers/__init__.py
-share/exaile/data/plugins/tagcovers/__init__.pyc
-share/exaile/data/plugins/tagcovers/__init__.pyo
+share/exaile/data/plugins/streamripper/streamripper.ui
 share/exaile/data/plugins/xkeys/
 share/exaile/data/plugins/xkeys/PLUGININFO
 share/exaile/data/plugins/xkeys/__init__.py
 share/exaile/data/plugins/xkeys/__init__.pyc
 share/exaile/data/plugins/xkeys/__init__.pyo
+share/exaile/data/ui/
+share/exaile/data/ui/about_dialog.ui
+share/exaile/data/ui/appearance_prefs_pane.ui
+share/exaile/data/ui/collection_manager.ui
+share/exaile/data/ui/collection_panel.ui
+share/exaile/data/ui/collection_prefs_pane.ui
+share/exaile/data/ui/cover_prefs_pane.ui
+share/exaile/data/ui/coverchooser.ui
+share/exaile/data/ui/covermanager.ui
+share/exaile/data/ui/coverwindow.ui
+share/exaile/data/ui/device_manager.ui
+share/exaile/data/ui/device_panel.ui
+share/exaile/data/ui/files_panel.ui
+share/exaile/data/ui/flatplaylist_panel.ui
+share/exaile/data/ui/general_prefs_pane.ui
+share/exaile/data/ui/main.ui
+share/exaile/data/ui/osd_prefs_pane.ui
+share/exaile/data/ui/osd_window.ui
+share/exaile/data/ui/playback_prefs_pane.ui
+share/exaile/data/ui/playlists_panel.ui
+share/exaile/data/ui/playlists_prefs_pane.ui
+share/exaile/data/ui/plugin_prefs_pane.ui
+share/exaile/data/ui/preferences_dialog.ui
+share/exaile/data/ui/queue_dialog.ui
+share/exaile/data/ui/radio_panel.ui
+share/exaile/data/ui/splash.ui
+share/exaile/data/ui/trackproperties_dialog.ui
 share/exaile/xdg/
 share/exaile/xdg/exaile/
 share/exaile/xdg/exaile/settings.ini
+...@exec %D/bin/update-desktop-database
+...@unexec-delete %D/bin/update-desktop-database
 share/locale/ar/LC_MESSAGES/exaile.mo
 share/locale/ast/LC_MESSAGES/exaile.mo
+share/locale/be/LC_MESSAGES/exaile.mo
 share/locale/bg/LC_MESSAGES/exaile.mo
 share/locale/bn/LC_MESSAGES/exaile.mo
+share/locale/bs/LC_MESSAGES/exaile.mo
 share/locale/ca/LC_MESSAGES/exaile.mo
 share/locale/cs/LC_MESSAGES/exaile.mo
+share/locale/csb/
+share/locale/csb/LC_MESSAGES/
+share/locale/csb/LC_MESSAGES/exaile.mo
 share/locale/cy/LC_MESSAGES/exaile.mo
 share/locale/da/LC_MESSAGES/exaile.mo
 share/locale/de/LC_MESSAGES/exaile.mo
 share/locale/el/LC_MESSAGES/exaile.mo
-share/locale/en/LC_MESSAGES/exaile.mo
 share/locale/en_CA/LC_MESSAGES/exaile.mo
 share/locale/en_GB/LC_MESSAGES/exaile.mo
 share/locale/eo/LC_MESSAGES/exaile.mo
@@ -693,6 +825,8 @@ share/locale/ko/LC_MESSAGES/exaile.mo
 share/locale/lt/LC_MESSAGES/exaile.mo
 share/locale/lv/LC_MESSAGES/exaile.mo
 share/locale/mk/LC_MESSAGES/exaile.mo
+share/locale/ml/LC_MESSAGES/exaile.mo
+share/locale/ms/LC_MESSAGES/exaile.mo
 share/locale/nb/LC_MESSAGES/exaile.mo
 share/locale/nl/LC_MESSAGES/exaile.mo
 share/locale/oc/LC_MESSAGES/exaile.mo
@@ -720,7 +854,4 @@ share/locale/zh/LC_MESSAGES/
 share/locale/zh/LC_MESSAGES/exaile.mo
 share/locale/zh_CN/LC_MESSAGES/exaile.mo
 share/locale/zh_TW/LC_MESSAGES/exaile.mo
-share/pixmaps/
 share/pixmaps/exaile.png
-...@exec %D/bin/update-desktop-database
-...@unexec-delete %D/bin/update-desktop-database

Reply via email to