diff options
author | wxs <wxs@FreeBSD.org> | 2011-05-31 04:13:13 +0800 |
---|---|---|
committer | wxs <wxs@FreeBSD.org> | 2011-05-31 04:13:13 +0800 |
commit | 2a804697d6bbeada2ef79c42e7b39ebb9de48af1 (patch) | |
tree | 4676a3971679b1654de1d24486cd1b6d639d1749 | |
parent | 4333c6189c9a1732c3abac42e6a676a38096c263 (diff) | |
download | freebsd-ports-graphics-2a804697d6bbeada2ef79c42e7b39ebb9de48af1.tar.gz freebsd-ports-graphics-2a804697d6bbeada2ef79c42e7b39ebb9de48af1.tar.zst freebsd-ports-graphics-2a804697d6bbeada2ef79c42e7b39ebb9de48af1.zip |
- Update to 4.0.1.
PR: ports/157394
Submitted by: Armin Pirkovitsch <armin@frozen-zone.org> (maintainer)
-rw-r--r-- | multimedia/miro/Makefile | 19 | ||||
-rw-r--r-- | multimedia/miro/distinfo | 4 | ||||
-rw-r--r-- | multimedia/miro/files/patch-lib__startup.py | 13 | ||||
-rw-r--r-- | multimedia/miro/files/patch-lib_startup.py | 11 | ||||
-rw-r--r-- | multimedia/miro/files/patch-linux__plat__options.py | 18 | ||||
-rw-r--r-- | multimedia/miro/files/patch-linux__plat__resources.py (renamed from multimedia/miro/files/patch-linux_plat_resources.py) | 16 | ||||
-rw-r--r-- | multimedia/miro/files/patch-linux__setup.py (renamed from multimedia/miro/files/patch-linux_setup.py) | 83 | ||||
-rw-r--r-- | multimedia/miro/pkg-plist | 688 |
8 files changed, 733 insertions, 119 deletions
diff --git a/multimedia/miro/Makefile b/multimedia/miro/Makefile index e8d00d87c5a..2b08338e22a 100644 --- a/multimedia/miro/Makefile +++ b/multimedia/miro/Makefile @@ -6,21 +6,24 @@ # PORTNAME= miro -PORTVERSION= 3.5.1 +PORTVERSION= 4.0.1 CATEGORIES= multimedia -MASTER_SITES= ftp://ftp.osuosl.org/pub/pculture.org/miro/src/ \ +MASTER_SITES= ftp://ftp.osuosl.org/pub/pculture.org/miro/src/ \ http://ftp.osuosl.org/pub/pculture.org/miro/src/ MAINTAINER= armin@frozen-zone.org COMMENT= A video player to get internet TV broadcasts -BUILD_DEPENDS= pyrexc:${PORTSDIR}/devel/pyrex \ +BUILD_DEPENDS= pyrexc:${PORTSDIR}/devel/pyrex \ ${PYTHON_SITELIBDIR}/webkit/__init__.py:${PORTSDIR}/www/py-webkitgtk \ update-mime-database:${PORTSDIR}/misc/shared-mime-info -RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb \ - ${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite23 \ - ${PYTHON_SITELIBDIR}/dbus/glib.py:${PORTSDIR}/devel/py-dbus \ - ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/_pynotify.so:${PORTSDIR}/devel/py-notify \ + +LIB_DEPENDS= avutil.1:${PORTSDIR}/multimedia/ffmpeg + +RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_bsddb.so:${PORTSDIR}/databases/py-bsddb \ + ${PYTHON_SITELIBDIR}/pysqlite2/_sqlite.so:${PORTSDIR}/databases/py-pysqlite23 \ + ${PYTHON_SITELIBDIR}/dbus/glib.py:${PORTSDIR}/devel/py-dbus \ + ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/_pynotify.so:${PORTSDIR}/devel/py-notify \ ${PYTHON_SITELIBDIR}/libtorrent.so:${PORTSDIR}/net-p2p/libtorrent-rasterbar-15-python \ ${PYTHON_SITELIBDIR}/webkit/webkit.so:${PORTSDIR}/www/py-webkitgtk \ ${PYTHON_SITELIBDIR}/gtk-2.0/gconf.so:${PORTSDIR}/x11-toolkits/py-gnome2 \ @@ -53,7 +56,7 @@ CPPFLAGS= -I${LOCALBASE}/include ${PTHREAD_CFLAGS} .SILENT: post-patch: -.for file in setup.py plat/resources.py +.for file in setup.py plat/resources.py plat/options.py ${REINPLACE_CMD} -e \ 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ s|%%PREFIX%%|${PREFIX}|g ; \ diff --git a/multimedia/miro/distinfo b/multimedia/miro/distinfo index 998811a355d..36aee89a1ca 100644 --- a/multimedia/miro/distinfo +++ b/multimedia/miro/distinfo @@ -1,2 +1,2 @@ -SHA256 (miro-3.5.1.tar.gz) = 1d1cba35e5e113f18c47dff01b3f6141ca962032e797b26e537bfc5b268d0635 -SIZE (miro-3.5.1.tar.gz) = 10707983 +SHA256 (miro-4.0.1.tar.gz) = bac2d579350517590a2f38d3be40da25bca3b331969b03046c1ba545984a6881 +SIZE (miro-4.0.1.tar.gz) = 12806477 diff --git a/multimedia/miro/files/patch-lib__startup.py b/multimedia/miro/files/patch-lib__startup.py new file mode 100644 index 00000000000..cf5ba43ff4f --- /dev/null +++ b/multimedia/miro/files/patch-lib__startup.py @@ -0,0 +1,13 @@ +--- ./lib/startup.py.orig 2011-05-25 00:30:12.000000000 +0200 ++++ ./lib/startup.py 2011-05-25 17:53:57.000000000 +0200 +@@ -407,8 +407,8 @@ + yield None + commandline.startup() + yield None +- autoupdate.check_for_updates() +- yield None ++ # autoupdate.check_for_updates() ++ # yield None + # Delay running high CPU/IO operations for a bit + eventloop.add_timeout(5, downloader.startup_downloader, + "start downloader daemon") diff --git a/multimedia/miro/files/patch-lib_startup.py b/multimedia/miro/files/patch-lib_startup.py deleted file mode 100644 index 42a0bd3be46..00000000000 --- a/multimedia/miro/files/patch-lib_startup.py +++ /dev/null @@ -1,11 +0,0 @@ ---- lib/startup.py.orig 2010-10-24 14:40:03.000000000 +0200 -+++ lib/startup.py 2010-10-24 14:40:38.000000000 +0200 -@@ -370,7 +370,7 @@ - yield None - commandline.startup() - yield None -- autoupdate.check_for_updates() -+ # autoupdate.check_for_updates() - yield None - # Wait a bit before starting the downloader daemon. It can cause a bunch - # of disk/CPU load, so try to avoid it slowing other stuff down. diff --git a/multimedia/miro/files/patch-linux__plat__options.py b/multimedia/miro/files/patch-linux__plat__options.py new file mode 100644 index 00000000000..9c395412b0b --- /dev/null +++ b/multimedia/miro/files/patch-linux__plat__options.py @@ -0,0 +1,18 @@ +--- ./linux/plat/options.py.orig 2011-05-25 17:56:13.000000000 +0200 ++++ ./linux/plat/options.py 2011-05-25 17:56:57.000000000 +0200 +@@ -51,13 +51,13 @@ + + FFMPEG_BINARY = LinuxPref( + key="ffmpegBinary", +- default="/usr/bin/ffmpeg", ++ default="%%LOCALBASE%%/bin/ffmpeg", + alias="ffmpeg", + helptext="Absolute path for ffmpeg binary.") + + FFMPEG2THEORA_BINARY = LinuxPref( + key="ffmpeg2TheoraBinary", +- default="/usr/bin/ffmpeg2theora", ++ default="%%LOCALBASE%%/bin/ffmpeg2theora", + alias="ffmpeg2theora", + helptext="Absolute path for ffmpeg2theora binary.") + diff --git a/multimedia/miro/files/patch-linux_plat_resources.py b/multimedia/miro/files/patch-linux__plat__resources.py index 04ae17ce7b3..9de5ddf049b 100644 --- a/multimedia/miro/files/patch-linux_plat_resources.py +++ b/multimedia/miro/files/patch-linux__plat__resources.py @@ -1,6 +1,6 @@ ---- linux/plat/resources.py.orig 2010-10-24 14:34:46.000000000 +0200 -+++ linux/plat/resources.py 2010-10-24 14:35:12.000000000 +0200 -@@ -44,9 +44,9 @@ +--- ./linux/plat/resources.py.orig 2011-05-25 00:30:12.000000000 +0200 ++++ ./linux/plat/resources.py 2011-05-25 17:53:57.000000000 +0200 +@@ -45,9 +45,9 @@ import platform RESOURCE_ROOT = os.path.abspath( @@ -8,16 +8,16 @@ + os.environ.get('MIRO_RESOURCE_ROOT', '%%PREFIX%%/share/miro/resources/')) SHARE_ROOT = os.path.abspath( - os.environ.get('MIRO_SHARE_ROOT', '/usr/share/')) -+ os.environ.get('MIRO_SHARE_ROOT', '%%PREFIX%%/share/')) ++ os.environ.get('MIRO_SHARE_ROOT', '%%PREFIX%%/share')) + def root(): - return RESOURCE_ROOT -@@ -67,7 +67,7 @@ - return u'file://%s' % urllib.quote(path(relative_path)) +@@ -81,7 +81,7 @@ + def theme_path(theme, relative_path): - return os.path.join('/usr/share/miro/themes', theme, relative_path) + return os.path.join('%%PREFIX%%/share/miro/themes', theme, relative_path) + def check_kde(): - return os.environ.get("KDE_FULL_SESSION", None) != None diff --git a/multimedia/miro/files/patch-linux_setup.py b/multimedia/miro/files/patch-linux__setup.py index ec1ebee8e6b..38630f6e932 100644 --- a/multimedia/miro/files/patch-linux_setup.py +++ b/multimedia/miro/files/patch-linux__setup.py @@ -1,49 +1,58 @@ ---- linux/setup.py.orig 2010-10-21 18:46:03.000000000 +0200 -+++ linux/setup.py 2010-10-24 15:22:13.000000000 +0200 -@@ -199,6 +199,9 @@ - options_dict['library_dirs'].append(rest) - elif prefix == '-l': - options_dict['libraries'].append(rest) -+ elif prefix == '-W': -+ # throw away, it breaks cc1 -+ continue - else: - options_dict['extra_compile_args'].append(comp) - -@@ -242,7 +245,7 @@ - exit; +--- ./linux/setup.py.orig 2011-05-25 00:30:12.000000000 +0200 ++++ ./linux/setup.py 2011-05-25 17:53:57.000000000 +0200 +@@ -259,7 +259,7 @@ fi -- $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON ./miro.real --sync "$@" -+ $GDB -ex 'set breakpoint pending on' -ex 'run' --args $PYTHON %%PREFIX%%/bin/miro.real --sync "$@" + $GDB -ex 'set breakpoint pending on' \ +- -ex 'run' --args $PYTHON ./miro.real --sync "$@" ++ -ex 'run' --args $PYTHON %%PREFIX%%/bin/miro.real --sync "$@" else miro.real "$@" fi -@@ -254,7 +257,7 @@ +@@ -276,7 +276,7 @@ xlib_ext = \ Extension("miro.plat.xlibhelper", [os.path.join(platform_package_dir, 'xlibhelper.pyx')], -- library_dirs = ['/usr/X11R6/lib'], -+ library_dirs = ['%%LOCALBASE%%/lib'], - libraries = ['X11'], +- library_dirs=['/usr/X11R6/lib'], ++ library_dirs=['%%LOCALBASE%%/lib'], + libraries=['X11'], ) -@@ -283,37 +286,37 @@ +@@ -324,7 +324,7 @@ # filter out app.config.template (which is handled specially) files = [f for f in listfiles(resource_dir) \ if os.path.basename(f) != 'app.config.template'] -data_files.append(('/usr/share/miro/resources/', files)) +data_files.append(('%%PREFIX%%/share/miro/resources/', files)) + # handle the sub directories. - for dir in ('searchengines', 'images', 'testdata', 'conversions', - os.path.join('testdata', 'stripperdata'), - os.path.join('testdata', 'httpserver'), + for dir in ('searchengines', +@@ -341,7 +341,7 @@ + os.path.join('testdata', 'metadata'), os.path.join('testdata', 'locale', 'fr', 'LC_MESSAGES')): source_dir = os.path.join(resource_dir, dir) - dest_dir = os.path.join('/usr/share/miro/resources/', dir) + dest_dir = os.path.join('%%PREFIX%%/share/miro/resources/', dir) data_files.append((dest_dir, listfiles(source_dir))) + # add core extension files +@@ -350,7 +350,7 @@ + files = [os.path.join(root, f) for f in files + if (not f.endswith("~") and not "#" in f)] + data_files.append(( +- os.path.join('/usr/share/miro/resources/extensions/', extroot), ++ os.path.join('%%PREFIX%%/share/miro/resources/extensions/', extroot), + files)) + + # add core platform extension files +@@ -359,28 +359,28 @@ + files = [os.path.join(root, f) for f in files + if (not f.endswith("~") and not "#" in f)] + data_files.append(( +- os.path.join('/usr/share/miro/resources/extensions/', extroot), ++ os.path.join('%%PREFIX%%/share/miro/resources/extensions/', extroot), + files)) + for mem in ["24", "48", "72", "128"]: d = os.path.join("icons", "hicolor", "%sx%s" % (mem, mem), "apps") source = os.path.join(platform_dir, d, "miro.png") @@ -51,14 +60,11 @@ + dest = os.path.join("%%PREFIX%%/share/", d) data_files.append((dest, [source])) - # add ADOPTERS file, the desktop file, mime data, and man page + # add the desktop file, mime data, and man page data_files += [ - ('/usr/share/miro/resources', + ('%%PREFIX%%/share/miro/resources', [os.path.join(root_dir, 'CREDITS')]), -- ('/usr/share/miro/resources', -+ ('%%PREFIX%%/share/miro/resources', - [os.path.join(root_dir, 'ADOPTERS')]), - ('/usr/share/pixmaps', + ('%%PREFIX%%/share/pixmaps', glob(os.path.join(platform_dir, 'miro.xpm'))), @@ -76,7 +82,7 @@ [os.path.join(platform_dir, 'miro.real.1.gz')]), ] -@@ -336,7 +339,7 @@ +@@ -407,7 +407,7 @@ def install_app_config(self): source = os.path.join(resource_dir, 'app.config.template') @@ -85,7 +91,7 @@ config_file = util.read_simple_config_file(source) print "Trying to figure out the git revision...." -@@ -378,7 +381,7 @@ +@@ -449,7 +449,7 @@ lang = os.path.basename(source)[:-3] if 'LINGUAS' in os.environ and lang not in os.environ['LINGUAS']: continue @@ -94,7 +100,18 @@ if self.root: dest = change_root(self.root, dest) self.mkpath(os.path.dirname(dest)) -@@ -407,7 +410,7 @@ +@@ -469,7 +469,9 @@ + cc.add_library('avcodec') + # Fedora places ffmpeg include into this directory rather than + # root /usr/include. +- cc.add_include_dir('/usr/include/ffmpeg') ++ cc.add_include_dir('%%LOCALBASE%%/include') ++ cc.add_include_dir('%%LOCALBASE%%/include/ffmpeg') ++ cc.add_library_dir('%%LOCALBASE%%/lib') + output_dir = os.path.join(self.build_base, 'miro-segmenter') + segmenter_objs = cc.compile([segmenter_src], + output_dir=output_dir) +@@ -502,7 +504,7 @@ #### install_theme installs a specified theme .zip class install_theme(Command): @@ -103,8 +120,8 @@ user_options = [("theme=", None, 'ZIP file containing the theme')] def initialize_options(self): -@@ -435,7 +438,7 @@ - raise DistutilsOptionError, "invalid theme file" +@@ -530,7 +532,7 @@ + raise DistutilsOptionError("invalid theme file") self.zipfile = zf self.theme_name = themeName - self.theme_dir = '/usr/share/miro/themes/%s' % themeName diff --git a/multimedia/miro/pkg-plist b/multimedia/miro/pkg-plist index 4d7cd410e4e..25f22779561 100644 --- a/multimedia/miro/pkg-plist +++ b/multimedia/miro/pkg-plist @@ -1,5 +1,6 @@ bin/miro bin/miro.real +bin/miro-segmenter %%PYTHON_SITELIBDIR%%/miro/__init__.py %%PYTHON_SITELIBDIR%%/miro/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/__init__.pyo @@ -66,9 +67,6 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/displaytext.py %%PYTHON_SITELIBDIR%%/miro/displaytext.pyc %%PYTHON_SITELIBDIR%%/miro/displaytext.pyo -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.py -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyc -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/Democracy_Downloader.pyo %%PYTHON_SITELIBDIR%%/miro/dl_daemon/__init__.py %%PYTHON_SITELIBDIR%%/miro/dl_daemon/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/dl_daemon/__init__.pyo @@ -84,9 +82,6 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/__init__.py %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/__init__.pyc %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/__init__.pyo -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/config.py -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/config.pyc -%%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/config.pyo %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/httpauth.py %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/httpauth.pyc %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private/httpauth.pyo @@ -362,9 +357,6 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videobox.pyo -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.py -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.pyc -%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/videoconversionscontroller.pyo %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/watchedfolders.pyo @@ -377,9 +369,6 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.py %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.pyc %%PYTHON_SITELIBDIR%%/miro/frontends/widgets/window.pyo -%%PYTHON_SITELIBDIR%%/miro/frontendstate.py -%%PYTHON_SITELIBDIR%%/miro/frontendstate.pyc -%%PYTHON_SITELIBDIR%%/miro/frontendstate.pyo %%PYTHON_SITELIBDIR%%/miro/gtcache.py %%PYTHON_SITELIBDIR%%/miro/gtcache.pyc %%PYTHON_SITELIBDIR%%/miro/gtcache.pyo @@ -597,9 +586,6 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/test/signalstest.py %%PYTHON_SITELIBDIR%%/miro/test/signalstest.pyc %%PYTHON_SITELIBDIR%%/miro/test/signalstest.pyo -%%PYTHON_SITELIBDIR%%/miro/test/sparkletest.py -%%PYTHON_SITELIBDIR%%/miro/test/sparkletest.pyc -%%PYTHON_SITELIBDIR%%/miro/test/sparkletest.pyo %%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.py %%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyc %%PYTHON_SITELIBDIR%%/miro/test/storedatabasetest.pyo @@ -633,13 +619,223 @@ bin/miro.real %%PYTHON_SITELIBDIR%%/miro/util.py %%PYTHON_SITELIBDIR%%/miro/util.pyc %%PYTHON_SITELIBDIR%%/miro/util.pyo -%%PYTHON_SITELIBDIR%%/miro/videoconversion.py -%%PYTHON_SITELIBDIR%%/miro/videoconversion.pyc -%%PYTHON_SITELIBDIR%%/miro/videoconversion.pyo %%PYTHON_SITELIBDIR%%/miro/xhtmltools.py %%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyc %%PYTHON_SITELIBDIR%%/miro/xhtmltools.pyo - +%%PYTHON_SITELIBDIR%%/miro/conversions.py +%%PYTHON_SITELIBDIR%%/miro/devices.py +%%PYTHON_SITELIBDIR%%/miro/transcode.py +%%PYTHON_SITELIBDIR%%/miro/api.py +%%PYTHON_SITELIBDIR%%/miro/filetags.py +%%PYTHON_SITELIBDIR%%/miro/bootstrap.py +%%PYTHON_SITELIBDIR%%/miro/iteminfocache.py +%%PYTHON_SITELIBDIR%%/miro/coverart.py +%%PYTHON_SITELIBDIR%%/miro/importmedia.py +%%PYTHON_SITELIBDIR%%/miro/metadata.py +%%PYTHON_SITELIBDIR%%/miro/des.py +%%PYTHON_SITELIBDIR%%/miro/errors.py +%%PYTHON_SITELIBDIR%%/miro/fileobject.py +%%PYTHON_SITELIBDIR%%/miro/extensionmanager.py +%%PYTHON_SITELIBDIR%%/miro/itemsource.py +%%PYTHON_SITELIBDIR%%/miro/amazon.py +%%PYTHON_SITELIBDIR%%/miro/directorywatch.py +%%PYTHON_SITELIBDIR%%/miro/widgetstate.py +%%PYTHON_SITELIBDIR%%/miro/metadataprogress.py +%%PYTHON_SITELIBDIR%%/miro/sharing.py +%%PYTHON_SITELIBDIR%%/miro/startfrontend.py +%%PYTHON_SITELIBDIR%%/miro/libdaap +%%PYTHON_SITELIBDIR%%/miro/libdaap/mdns.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/pybonjour.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/__init__.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/subr.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/const.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/libdaap.py +%%PYTHON_SITELIBDIR%%/miro/libdaap/mdns.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/pybonjour.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/__init__.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/subr.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/const.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/libdaap.pyc +%%PYTHON_SITELIBDIR%%/miro/libdaap/mdns.pyo +%%PYTHON_SITELIBDIR%%/miro/libdaap/pybonjour.pyo +%%PYTHON_SITELIBDIR%%/miro/libdaap/__init__.pyo +%%PYTHON_SITELIBDIR%%/miro/libdaap/subr.pyo +%%PYTHON_SITELIBDIR%%/miro/libdaap/const.pyo +%%PYTHON_SITELIBDIR%%/miro/libdaap/libdaap.pyo +%%PYTHON_SITELIBDIR%%/miro/dl_daemon/MiroDownloader.py +%%PYTHON_SITELIBDIR%%/miro/dl_daemon/MiroDownloader.pyc +%%PYTHON_SITELIBDIR%%/miro/dl_daemon/MiroDownloader.pyo +%%PYTHON_SITELIBDIR%%/miro/test/tableselectiontest.py +%%PYTHON_SITELIBDIR%%/miro/test/moviedatatest.py +%%PYTHON_SITELIBDIR%%/miro/test/performancetest.py +%%PYTHON_SITELIBDIR%%/miro/test/filetagstest.py +%%PYTHON_SITELIBDIR%%/miro/test/metadatatest.py +%%PYTHON_SITELIBDIR%%/miro/test/importtest.py +%%PYTHON_SITELIBDIR%%/miro/test/infolisttest.py +%%PYTHON_SITELIBDIR%%/miro/test/cellpacktest.py +%%PYTHON_SITELIBDIR%%/miro/test/mock.py +%%PYTHON_SITELIBDIR%%/miro/test/searchtest.py +%%PYTHON_SITELIBDIR%%/miro/test/widgetstateconstantstest.py +%%PYTHON_SITELIBDIR%%/miro/test/fileobjecttest.py +%%PYTHON_SITELIBDIR%%/miro/test/devicestest.py +%%PYTHON_SITELIBDIR%%/miro/test/osxsparkletest.py +%%PYTHON_SITELIBDIR%%/miro/test/httpauthtoolstest.py +%%PYTHON_SITELIBDIR%%/miro/test/watchedfoldertest.py +%%PYTHON_SITELIBDIR%%/miro/test/tableselectiontest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/moviedatatest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/performancetest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/filetagstest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/metadatatest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/importtest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/infolisttest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/cellpacktest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/mock.pyc +%%PYTHON_SITELIBDIR%%/miro/test/searchtest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/widgetstateconstantstest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/fileobjecttest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/devicestest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/osxsparkletest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/httpauthtoolstest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/watchedfoldertest.pyc +%%PYTHON_SITELIBDIR%%/miro/test/tableselectiontest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/moviedatatest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/performancetest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/filetagstest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/metadatatest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/importtest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/infolisttest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/cellpacktest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/mock.pyo +%%PYTHON_SITELIBDIR%%/miro/test/searchtest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/widgetstateconstantstest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/fileobjecttest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/devicestest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/osxsparkletest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/httpauthtoolstest.pyo +%%PYTHON_SITELIBDIR%%/miro/test/watchedfoldertest.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/__init__.py +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/tests.py +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/application.py +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/portable.py +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/__init__.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/tests.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/application.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/portable.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/__init__.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/tests.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/application.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets/portable.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemtrack.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/stores.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tabcontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchcontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemrenderer.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablescroll.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newwatchedfolder.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchfilesdialog.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetstatestore.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tableselection.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/devicecontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/sharingcontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/convertingcontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/guidecontroller.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistdnd.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/gtkdirectorywatch.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableviewcells.py +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/gtkdirectorywatch.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableviewcells.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/gtkdirectorywatch.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/gtk/tableviewcells.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemtrack.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/stores.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tabcontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchcontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemrenderer.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablescroll.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newwatchedfolder.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchfilesdialog.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetstatestore.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tableselection.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/devicecontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/sharingcontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/convertingcontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/guidecontroller.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistdnd.pyc +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemtrack.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/stores.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tabcontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchcontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/itemrenderer.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablescroll.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/newwatchedfolder.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/searchfilesdialog.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/widgetstatestore.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tableselection.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/devicecontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/sharingcontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/convertingcontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/guidecontroller.pyo +%%PYTHON_SITELIBDIR%%/miro/frontends/widgets/tablistdnd.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/associate.py +%%PYTHON_SITELIBDIR%%/miro/plat/filebundle.py +%%PYTHON_SITELIBDIR%%/miro/plat/devicetracker.py +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/bonjour.py +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/miroappindicator.py +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/bonjour.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/miroappindicator.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/bonjour.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/frontends/widgets/miroappindicator.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/associate.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/filebundle.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/devicetracker.pyc +%%PYTHON_SITELIBDIR%%/miro/plat/associate.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/filebundle.pyo +%%PYTHON_SITELIBDIR%%/miro/plat/devicetracker.pyo +%%PYTHON_SITELIBDIR%%/miro/ngrams.so +%%PYTHON_SITELIBDIR%%/miro/infolist.so +%%PYTHON_SITELIBDIR%%/miro/conversions.pyc +%%PYTHON_SITELIBDIR%%/miro/devices.pyc +%%PYTHON_SITELIBDIR%%/miro/transcode.pyc +%%PYTHON_SITELIBDIR%%/miro/api.pyc +%%PYTHON_SITELIBDIR%%/miro/filetags.pyc +%%PYTHON_SITELIBDIR%%/miro/bootstrap.pyc +%%PYTHON_SITELIBDIR%%/miro/iteminfocache.pyc +%%PYTHON_SITELIBDIR%%/miro/coverart.pyc +%%PYTHON_SITELIBDIR%%/miro/importmedia.pyc +%%PYTHON_SITELIBDIR%%/miro/metadata.pyc +%%PYTHON_SITELIBDIR%%/miro/des.pyc +%%PYTHON_SITELIBDIR%%/miro/errors.pyc +%%PYTHON_SITELIBDIR%%/miro/fileobject.pyc +%%PYTHON_SITELIBDIR%%/miro/extensionmanager.pyc +%%PYTHON_SITELIBDIR%%/miro/itemsource.pyc +%%PYTHON_SITELIBDIR%%/miro/amazon.pyc +%%PYTHON_SITELIBDIR%%/miro/directorywatch.pyc +%%PYTHON_SITELIBDIR%%/miro/widgetstate.pyc +%%PYTHON_SITELIBDIR%%/miro/metadataprogress.pyc +%%PYTHON_SITELIBDIR%%/miro/sharing.pyc +%%PYTHON_SITELIBDIR%%/miro/startfrontend.pyc +%%PYTHON_SITELIBDIR%%/miro/conversions.pyo +%%PYTHON_SITELIBDIR%%/miro/devices.pyo +%%PYTHON_SITELIBDIR%%/miro/transcode.pyo +%%PYTHON_SITELIBDIR%%/miro/api.pyo +%%PYTHON_SITELIBDIR%%/miro/filetags.pyo +%%PYTHON_SITELIBDIR%%/miro/bootstrap.pyo +%%PYTHON_SITELIBDIR%%/miro/iteminfocache.pyo +%%PYTHON_SITELIBDIR%%/miro/coverart.pyo +%%PYTHON_SITELIBDIR%%/miro/importmedia.pyo +%%PYTHON_SITELIBDIR%%/miro/metadata.pyo +%%PYTHON_SITELIBDIR%%/miro/des.pyo +%%PYTHON_SITELIBDIR%%/miro/errors.pyo +%%PYTHON_SITELIBDIR%%/miro/fileobject.pyo +%%PYTHON_SITELIBDIR%%/miro/extensionmanager.pyo +%%PYTHON_SITELIBDIR%%/miro/itemsource.pyo +%%PYTHON_SITELIBDIR%%/miro/amazon.pyo +%%PYTHON_SITELIBDIR%%/miro/directorywatch.pyo +%%PYTHON_SITELIBDIR%%/miro/widgetstate.pyo +%%PYTHON_SITELIBDIR%%/miro/metadataprogress.pyo +%%PYTHON_SITELIBDIR%%/miro/sharing.pyo +%%PYTHON_SITELIBDIR%%/miro/startfrontend.pyo share/applications/miro.desktop share/icons/hicolor/128x128/apps/miro.png share/icons/hicolor/24x24/apps/miro.png @@ -730,8 +926,12 @@ share/locale/zh_CN/LC_MESSAGES/miro.mo share/locale/zh_HK/LC_MESSAGES/miro.mo share/locale/zh_TW/LC_MESSAGES/miro.mo share/locale/zu/LC_MESSAGES/miro.mo +share/locale/dv/LC_MESSAGES/miro.mo +share/locale/jv/LC_MESSAGES/miro.mo +share/locale/ltg/LC_MESSAGES/miro.mo +share/locale/swch/LC_MESSAGES/miro.mo +share/locale/ta_LK/LC_MESSAGES/miro.mo share/mime/packages/miro.xml -%%DATADIR%%/resources/ADOPTERS %%DATADIR%%/resources/CREDITS %%DATADIR%%/resources/app.config %%DATADIR%%/resources/conversions/android.conv @@ -742,36 +942,22 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/channelguide-icon-tablist.png %%DATADIR%%/resources/images/clear-image.png %%DATADIR%%/resources/images/download-arrow.png -%%DATADIR%%/resources/images/feedicon.png %%DATADIR%%/resources/images/folder-icon-tablist.png %%DATADIR%%/resources/images/folder-icon.png %%DATADIR%%/resources/images/fullscreen_enter.png %%DATADIR%%/resources/images/fullscreen_exit.png %%DATADIR%%/resources/images/icon-audio.png -%%DATADIR%%/resources/images/icon-audio_large.png -%%DATADIR%%/resources/images/icon-channel-title.png -%%DATADIR%%/resources/images/icon-conversions.png -%%DATADIR%%/resources/images/icon-conversions_large.png %%DATADIR%%/resources/images/icon-downloading.png -%%DATADIR%%/resources/images/icon-downloading_large.png %%DATADIR%%/resources/images/icon-folder.png %%DATADIR%%/resources/images/icon-guide.png -%%DATADIR%%/resources/images/icon-guide_large.png %%DATADIR%%/resources/images/icon-individual.png -%%DATADIR%%/resources/images/icon-individual_large.png %%DATADIR%%/resources/images/icon-library.png -%%DATADIR%%/resources/images/icon-library_large.png %%DATADIR%%/resources/images/icon-new.png -%%DATADIR%%/resources/images/icon-new_large.png %%DATADIR%%/resources/images/icon-other.png -%%DATADIR%%/resources/images/icon-other_large.png %%DATADIR%%/resources/images/icon-playlist.png -%%DATADIR%%/resources/images/icon-rss.png %%DATADIR%%/resources/images/icon-search.png %%DATADIR%%/resources/images/icon-search_large.png -%%DATADIR%%/resources/images/icon-site.png %%DATADIR%%/resources/images/icon-streaming.png -%%DATADIR%%/resources/images/icon-streaming_large.png %%DATADIR%%/resources/images/icon-updating-0.png %%DATADIR%%/resources/images/icon-updating-1.png %%DATADIR%%/resources/images/icon-updating-10.png @@ -785,8 +971,6 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/icon-updating-8.png %%DATADIR%%/resources/images/icon-updating-9.png %%DATADIR%%/resources/images/icon-video.png -%%DATADIR%%/resources/images/icon-video_large.png -%%DATADIR%%/resources/images/list-view-button-icon.png %%DATADIR%%/resources/images/load-indicator.gif %%DATADIR%%/resources/images/mini-icon-audio.png %%DATADIR%%/resources/images/mini-icon-video.png @@ -805,12 +989,9 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/navstop.png %%DATADIR%%/resources/images/navstop_active.png %%DATADIR%%/resources/images/navstop_disabled.png -%%DATADIR%%/resources/images/normal-view-button-icon.png %%DATADIR%%/resources/images/pause-button.png -%%DATADIR%%/resources/images/pause-item-button.png %%DATADIR%%/resources/images/pause.png %%DATADIR%%/resources/images/pause_active.png -%%DATADIR%%/resources/images/play-button.png %%DATADIR%%/resources/images/play.png %%DATADIR%%/resources/images/play_active.png %%DATADIR%%/resources/images/play_fullscreen.png @@ -825,18 +1006,10 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/playlist-icon.png %%DATADIR%%/resources/images/popin.png %%DATADIR%%/resources/images/popout.png -%%DATADIR%%/resources/images/pref-tab-conversions.png -%%DATADIR%%/resources/images/pref-tab-disk-space.png -%%DATADIR%%/resources/images/pref-tab-downloads.png -%%DATADIR%%/resources/images/pref-tab-feeds.png -%%DATADIR%%/resources/images/pref-tab-folders.png -%%DATADIR%%/resources/images/pref-tab-general.png -%%DATADIR%%/resources/images/pref-tab-playback.png %%DATADIR%%/resources/images/resume-button.png %%DATADIR%%/resources/images/search_icon_5min.png %%DATADIR%%/resources/images/search_icon_all.png %%DATADIR%%/resources/images/search_icon_bliptv.png -%%DATADIR%%/resources/images/search_icon_blogdigger.png %%DATADIR%%/resources/images/search_icon_dailymotion.png %%DATADIR%%/resources/images/search_icon_google.png %%DATADIR%%/resources/images/search_icon_mefeedia.png @@ -858,7 +1031,6 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/segmented-on-far-right.png %%DATADIR%%/resources/images/segmented-on-middle-left.png %%DATADIR%%/resources/images/segmented-on-middle-right.png -%%DATADIR%%/resources/images/separator.png %%DATADIR%%/resources/images/share-delicious.png %%DATADIR%%/resources/images/share-digg.png %%DATADIR%%/resources/images/share-email.png @@ -870,29 +1042,20 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/images/skip_forward_active.png %%DATADIR%%/resources/images/skip_previous.png %%DATADIR%%/resources/images/skip_previous_active.png -%%DATADIR%%/resources/images/status-icon-alert.png %%DATADIR%%/resources/images/status-icon-downloading.png %%DATADIR%%/resources/images/status-icon-new.png -%%DATADIR%%/resources/images/status-icon-newly-downloaded.png %%DATADIR%%/resources/images/stop.png %%DATADIR%%/resources/images/stop_active.png %%DATADIR%%/resources/images/subtitles_down.png %%DATADIR%%/resources/images/thumb-default-audio.png %%DATADIR%%/resources/images/thumb-default-folder.png %%DATADIR%%/resources/images/thumb-default-video.png -%%DATADIR%%/resources/images/thumb-overlay.png -%%DATADIR%%/resources/images/video-download-cancel.png -%%DATADIR%%/resources/images/video-download-pause.png -%%DATADIR%%/resources/images/video-download-resume.png %%DATADIR%%/resources/images/volume.png %%DATADIR%%/resources/images/volume_active.png %%DATADIR%%/resources/images/volume_knob.png %%DATADIR%%/resources/images/volume_track.png -%%DATADIR%%/resources/images/wtexture.png -%%DATADIR%%/resources/images/wtexture_inactive.png %%DATADIR%%/resources/searchengines/5min.xml %%DATADIR%%/resources/searchengines/bliptv.xml -%%DATADIR%%/resources/searchengines/blogdigger.xml %%DATADIR%%/resources/searchengines/dailymotion.xml %%DATADIR%%/resources/searchengines/google.xml %%DATADIR%%/resources/searchengines/metavid.xml @@ -955,15 +1118,413 @@ share/mime/packages/miro.xml %%DATADIR%%/resources/testdata/stripperdata/testburma.expected %%DATADIR%%/resources/testdata/stripperdata/testburma.in %%DATADIR%%/resources/testdata/translation-result +%%DATADIR%%/resources/device-sync_inactive_center.png +%%DATADIR%%/resources/device-sync_inactive_right.png +%%DATADIR%%/resources/device-sync_inactive_left.png +%%DATADIR%%/resources/images/item-renderer-background-left.png +%%DATADIR%%/resources/images/device-sync_inactive_center.png +%%DATADIR%%/resources/images/icon-guide_active.png +%%DATADIR%%/resources/images/throbber.gif +%%DATADIR%%/resources/images/progress_timeline_right.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-right.png +%%DATADIR%%/resources/images/feed-settings_active.png +%%DATADIR%%/resources/images/download-cancel.png +%%DATADIR%%/resources/images/item-renderer-saved.png +%%DATADIR%%/resources/images/item-renderer-status-icon-alert.png +%%DATADIR%%/resources/images/item-renderer-expiring-cap.png +%%DATADIR%%/resources/images/device-size-bg_right.png +%%DATADIR%%/resources/images/green-bubble_left.png +%%DATADIR%%/resources/images/icon-converting_active.png +%%DATADIR%%/resources/images/icon-podcast.png +%%DATADIR%%/resources/images/autodownload-all.png +%%DATADIR%%/resources/images/list-view_active.png +%%DATADIR%%/resources/images/icon-playlist-small.png +%%DATADIR%%/resources/images/sync-cancel_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-7-middle.png +%%DATADIR%%/resources/images/item-renderer-track-left.png +%%DATADIR%%/resources/images/repeat-on.png +%%DATADIR%%/resources/images/filigree-right.png +%%DATADIR%%/resources/images/download-resume_active.png +%%DATADIR%%/resources/images/filigree-left.png +%%DATADIR%%/resources/images/icon-other_active.png +%%DATADIR%%/resources/images/connect-toggle-bg.png +%%DATADIR%%/resources/images/icon-source_large.png +%%DATADIR%%/resources/images/icon-device-audio_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-10-left.png +%%DATADIR%%/resources/images/playback_track_inactive_center.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-middle-pressed.png +%%DATADIR%%/resources/images/filter_right.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-right.png +%%DATADIR%%/resources/images/icon-search_active.png +%%DATADIR%%/resources/images/device-size-bg_left.png +%%DATADIR%%/resources/images/icon-watched-folder_active.png +%%DATADIR%%/resources/images/skip_previous_disabled.png +%%DATADIR%%/resources/images/guide-sidebar-arrow-open.png +%%DATADIR%%/resources/images/connect-toggle-on.png +%%DATADIR%%/resources/images/shuffle_active.png +%%DATADIR%%/resources/images/progress_timeline_left.png +%%DATADIR%%/resources/images/orange-bubble_left.png +%%DATADIR%%/resources/images/device-off-far-right.png +%%DATADIR%%/resources/images/toggle-button-active_center.png +%%DATADIR%%/resources/images/feed-remove-podcast_active.png +%%DATADIR%%/resources/images/item-renderer-expiring-middle.png +%%DATADIR%%/resources/images/icon-podcast-small.png +%%DATADIR%%/resources/images/feed-settings.png +%%DATADIR%%/resources/images/item-renderer-background-right.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-6-middle.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-2-right.png +%%DATADIR%%/resources/images/device-on-far-right.png +%%DATADIR%%/resources/images/navdownload_active.png +%%DATADIR%%/resources/images/item-renderer-selected-background-left.png +%%DATADIR%%/resources/images/download-settings_active.png +%%DATADIR%%/resources/images/torrent-info-eta.png +%%DATADIR%%/resources/images/icon-video_active.png +%%DATADIR%%/resources/images/autodownload-new.png +%%DATADIR%%/resources/images/cc-available.png +%%DATADIR%%/resources/images/titlebar-right.png +%%DATADIR%%/resources/images/item-renderer-pause-pressed.png +%%DATADIR%%/resources/images/icon-store_active.png +%%DATADIR%%/resources/images/device-sync_right.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-5-middle.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-4-left.png +%%DATADIR%%/resources/images/item-renderer-unplayed-cap.png +%%DATADIR%%/resources/images/item-renderer-remove-playlist.png +%%DATADIR%%/resources/images/repeat.png +%%DATADIR%%/resources/images/connect-appstore.png +%%DATADIR%%/resources/images/sync-unknown.png +%%DATADIR%%/resources/images/up.png +%%DATADIR%%/resources/images/device-size-fg_center.png +%%DATADIR%%/resources/images/sharing.png +%%DATADIR%%/resources/images/item-renderer-download-stop.png +%%DATADIR%%/resources/images/item-renderer-failed-cap.png +%%DATADIR%%/resources/images/star-yes.png +%%DATADIR%%/resources/images/item-renderer-queued-cap.png +%%DATADIR%%/resources/images/item-renderer-conversion-progress-left.png +%%DATADIR%%/resources/images/progress_timeline_inactive_center.png +%%DATADIR%%/resources/images/pref_tab_conversions.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-middle.png +%%DATADIR%%/resources/images/item-details-empty-thumb.png +%%DATADIR%%/resources/images/autodownload-all_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-8-middle.png +%%DATADIR%%/resources/images/torrent-info-down-rate.png +%%DATADIR%%/resources/images/guide-sidebar-arrow-close.png +%%DATADIR%%/resources/images/item-renderer-play.png +%%DATADIR%%/resources/images/icon-store_large.png +%%DATADIR%%/resources/images/pref_tab_extensions.png +%%DATADIR%%/resources/images/icon-playlist_active.png +%%DATADIR%%/resources/images/device-on-middle-left.png +%%DATADIR%%/resources/images/item-renderer-resume-cap.png +%%DATADIR%%/resources/images/device-size-bg_center.png +%%DATADIR%%/resources/images/device-sync_active_right.png +%%DATADIR%%/resources/images/pref_tab_feeds.png +%%DATADIR%%/resources/images/repeat-1.png +%%DATADIR%%/resources/images/resume-playback-button-pressed.png +%%DATADIR%%/resources/images/item-renderer-selected-background-middle.png +%%DATADIR%%/resources/images/save-as-playlist_active.png +%%DATADIR%%/resources/images/item-renderer-time-left.png +%%DATADIR%%/resources/images/green-bubble_center.png +%%DATADIR%%/resources/images/item-renderer-queued-middle.png +%%DATADIR%%/resources/images/star-unset.png +%%DATADIR%%/resources/images/icon-device-hd_active.png +%%DATADIR%%/resources/images/item-renderer-menu-pressed.png +%%DATADIR%%/resources/images/device-on-middle-right.png +%%DATADIR%%/resources/images/playback_track_progress_inactive_center.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-2-left.png +%%DATADIR%%/resources/images/item-renderer-progress-left-cap.png +%%DATADIR%%/resources/images/navseparator.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-1-left.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-left-pressed.png +%%DATADIR%%/resources/images/icon-device-hd.png +%%DATADIR%%/resources/images/toggle-button-inactive_left.png +%%DATADIR%%/resources/images/list-view.png +%%DATADIR%%/resources/images/icon-connect.png +%%DATADIR%%/resources/images/filter_left.png +%%DATADIR%%/resources/images/autodownload-new_active.png +%%DATADIR%%/resources/images/icon-source-small.png +%%DATADIR%%/resources/images/sync-cancel.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-4-right.png +%%DATADIR%%/resources/images/playback_track_inactive_left.png +%%DATADIR%%/resources/images/download-pause_active.png +%%DATADIR%%/resources/images/blue-bubble_left.png +%%DATADIR%%/resources/images/device-sync_left.png +%%DATADIR%%/resources/images/list-view_pressed.png +%%DATADIR%%/resources/images/icon-eject.png +%%DATADIR%%/resources/images/icon-downloading_active.png +%%DATADIR%%/resources/images/resume-playback-title-middle.png +%%DATADIR%%/resources/images/repeat-on_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-10-right.png +%%DATADIR%%/resources/images/item-renderer-download-icon.png +%%DATADIR%%/resources/images/device-off-middle-left.png +%%DATADIR%%/resources/images/item-renderer-remove.png +%%DATADIR%%/resources/images/device-on-center.png +%%DATADIR%%/resources/images/icon-podcast_active.png +%%DATADIR%%/resources/images/autodownload-off_active.png +%%DATADIR%%/resources/images/save-as-podcast_active.png +%%DATADIR%%/resources/images/guide-sidebar-play.png +%%DATADIR%%/resources/images/headertoolbar_active.png +%%DATADIR%%/resources/images/progress_timeline_inactive_right.png +%%DATADIR%%/resources/images/device-off-far-left.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-left-pressed.png +%%DATADIR%%/resources/images/device-sync_inactive_right.png +%%DATADIR%%/resources/images/hard-drive.png +%%DATADIR%%/resources/images/item-renderer-drm-cap.png +%%DATADIR%%/resources/images/icon-store-small_active.png +%%DATADIR%%/resources/images/download-settings.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-5-left.png +%%DATADIR%%/resources/images/pref_tab_playback.png +%%DATADIR%%/resources/images/white-bubble_right.png +%%DATADIR%%/resources/images/toggle-button-inactive_right.png +%%DATADIR%%/resources/images/navbg.png +%%DATADIR%%/resources/images/toggle-button-active_right.png +%%DATADIR%%/resources/images/item-renderer-keep-pressed.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-left.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-left.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-middle-selected.png +%%DATADIR%%/resources/images/save-as-playlist.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-1-middle.png +%%DATADIR%%/resources/images/device-sync_center.png +%%DATADIR%%/resources/images/play_disabled.png +%%DATADIR%%/resources/images/item-renderer-progress-track.png +%%DATADIR%%/resources/images/pref_tab_disk_space.png +%%DATADIR%%/resources/images/item-renderer-newly-middle.png +%%DATADIR%%/resources/images/playback_track_progress_inactive_right.png +%%DATADIR%%/resources/images/icon-device_active.png +%%DATADIR%%/resources/images/playback_cursor_inactive.png +%%DATADIR%%/resources/images/green-bubble_right.png +%%DATADIR%%/resources/images/titlebar-middle.png +%%DATADIR%%/resources/images/icon-device.png +%%DATADIR%%/resources/images/device-off-center.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-selected-left-cap.png +%%DATADIR%%/resources/images/item-renderer-selected-background-right.png +%%DATADIR%%/resources/images/delete.png +%%DATADIR%%/resources/images/pref_tab_folders.png +%%DATADIR%%/resources/images/pause_disabled.png +%%DATADIR%%/resources/images/item-renderer-keep.png +%%DATADIR%%/resources/images/connect-toggle-off.png +%%DATADIR%%/resources/images/down.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-1-right.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-3-right.png +%%DATADIR%%/resources/images/autodownload-off.png +%%DATADIR%%/resources/images/pref_panel_error.png +%%DATADIR%%/resources/images/icon-device-video_active.png +%%DATADIR%%/resources/images/icon-playlist_large.png +%%DATADIR%%/resources/images/download-cancel_active.png +%%DATADIR%%/resources/images/status-icon-playing.png +%%DATADIR%%/resources/images/download-pause.png +%%DATADIR%%/resources/images/white-bubble_left.png +%%DATADIR%%/resources/images/standard-view.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-4-middle.png +%%DATADIR%%/resources/images/item-details-image-bg.png +%%DATADIR%%/resources/images/progress_timeline_center.png +%%DATADIR%%/resources/images/item-renderer-download-resume.png +%%DATADIR%%/resources/images/item-renderer-menu.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-10-middle.png +%%DATADIR%%/resources/images/pref_tab_stores.png +%%DATADIR%%/resources/images/icon-playlist-small_active.png +%%DATADIR%%/resources/images/navopen_active.png +%%DATADIR%%/resources/images/device-size-fg_right.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-middle.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-6-right.png +%%DATADIR%%/resources/images/keep-button.png +%%DATADIR%%/resources/images/icon-connect_large.png +%%DATADIR%%/resources/images/titlebar-right_active.png +%%DATADIR%%/resources/images/toggle-button-active_left.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-selected-right-cap.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-2-middle.png +%%DATADIR%%/resources/images/item-renderer-drm-middle.png +%%DATADIR%%/resources/images/feed-remove-podcast.png +%%DATADIR%%/resources/images/item-renderer-remove-playlist-pressed.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-3-middle.png +%%DATADIR%%/resources/images/shuffle-on.png +%%DATADIR%%/resources/images/item-details-expander-arrow-down.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-8-left.png +%%DATADIR%%/resources/images/pref_tab_general.png +%%DATADIR%%/resources/images/orange-bubble_center.png +%%DATADIR%%/resources/images/item-renderer-failed-middle.png +%%DATADIR%%/resources/images/guide-sidebar-play_active.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-right-cap.png +%%DATADIR%%/resources/images/device-size-fg_left.png +%%DATADIR%%/resources/images/guide-sidebar.png +%%DATADIR%%/resources/images/item-renderer-ul-speed.png +%%DATADIR%%/resources/images/titlebar-left.png +%%DATADIR%%/resources/images/item-renderer-resume-middle.png +%%DATADIR%%/resources/images/item-renderer-conversion-progress-right.png +%%DATADIR%%/resources/images/item-renderer-play-pressed.png +%%DATADIR%%/resources/images/icon-source_active.png +%%DATADIR%%/resources/images/shuffle-on_active.png +%%DATADIR%%/resources/images/device-sync_active_center.png +%%DATADIR%%/resources/images/connect-help.png +%%DATADIR%%/resources/images/item-renderer-progress-middle.png +%%DATADIR%%/resources/images/icon-audio_active.png +%%DATADIR%%/resources/images/tab-collapsed.png +%%DATADIR%%/resources/images/star-no.png +%%DATADIR%%/resources/images/cc-on.png +%%DATADIR%%/resources/images/connect-android.png +%%DATADIR%%/resources/images/item-details-expander-arrow.png +%%DATADIR%%/resources/images/item-renderer-unplayed-middle.png +%%DATADIR%%/resources/images/item-renderer-pause.png +%%DATADIR%%/resources/images/resume-playback-button.png +%%DATADIR%%/resources/images/status-icon-normal.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-8-right.png +%%DATADIR%%/resources/images/resume-playback-title-right.png +%%DATADIR%%/resources/images/blue-bubble_center.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-5-right.png +%%DATADIR%%/resources/images/item-renderer-download-resume-pressed.png +%%DATADIR%%/resources/images/toggle-button-inactive_center.png +%%DATADIR%%/resources/images/device-on-far-left.png +%%DATADIR%%/resources/images/icon-store.png +%%DATADIR%%/resources/images/standard-view_pressed.png +%%DATADIR%%/resources/images/playback_track_progress_inactive_left.png +%%DATADIR%%/resources/images/device-sync_active_left.png +%%DATADIR%%/resources/images/icon-device-video.png +%%DATADIR%%/resources/images/icon-connect_active.png +%%DATADIR%%/resources/images/icon-podcast-small_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-7-right.png +%%DATADIR%%/resources/images/item-renderer-newly-cap.png +%%DATADIR%%/resources/images/item-renderer-progress-right-cap.png +%%DATADIR%%/resources/images/skip_forward_disabled.png +%%DATADIR%%/resources/images/icon-watched-folder.png +%%DATADIR%%/resources/images/item-renderer-conversion-progress-middle.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-6-left.png +%%DATADIR%%/resources/images/blue-bubble_right.png +%%DATADIR%%/resources/images/orange-bubble_right.png +%%DATADIR%%/resources/images/download-started.png +%%DATADIR%%/resources/images/pref_tab_downloads.png +%%DATADIR%%/resources/images/shuffle.png +%%DATADIR%%/resources/images/stop_disabled.png +%%DATADIR%%/resources/images/download-resume.png +%%DATADIR%%/resources/images/device-sync_inactive_left.png +%%DATADIR%%/resources/images/icon-source-small_active.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-3-left.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-left-selected.png +%%DATADIR%%/resources/images/navopen.png +%%DATADIR%%/resources/images/sync-unmounted.png +%%DATADIR%%/resources/images/pref_tab_sharing.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-middle.png +%%DATADIR%%/resources/images/titlebar-left_active.png +%%DATADIR%%/resources/images/repeat-1_active.png +%%DATADIR%%/resources/images/white-bubble_center.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-9-right.png +%%DATADIR%%/resources/images/repeat_active.png +%%DATADIR%%/resources/images/headertoolbar.png +%%DATADIR%%/resources/images/icon-device-audio.png +%%DATADIR%%/resources/images/item-renderer-remove-pressed.png +%%DATADIR%%/resources/images/item-renderer-dl-speed.png +%%DATADIR%%/resources/images/icon-converting.png +%%DATADIR%%/resources/images/tab-expanded.png +%%DATADIR%%/resources/images/item-renderer-download-pause.png +%%DATADIR%%/resources/images/device-off-middle-right.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-7-left.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-selected-middle.png +%%DATADIR%%/resources/images/standard-view_active.png +%%DATADIR%%/resources/images/item-renderer-keep-selected.png +%%DATADIR%%/resources/images/titlebar-middle_active.png +%%DATADIR%%/resources/images/progress_timeline_inactive_left.png +%%DATADIR%%/resources/images/item-renderer-download-pause-pressed.png +%%DATADIR%%/resources/images/icon-store-small.png +%%DATADIR%%/resources/images/item-renderer-background-middle.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-9-left.png +%%DATADIR%%/resources/images/save-as-podcast.png +%%DATADIR%%/resources/images/icon-source.png +%%DATADIR%%/resources/images/navdownload.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-right-pressed.png +%%DATADIR%%/resources/images/playback_track_inactive_right.png +%%DATADIR%%/resources/images/star-probably.png +%%DATADIR%%/resources/images/filter_center.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-right-selected.png +%%DATADIR%%/resources/images/item-renderer-download-stop-pressed.png +%%DATADIR%%/resources/images/status-icon-unplayed.png +%%DATADIR%%/resources/images/item-renderer-progress-throbber-9-middle.png +%%DATADIR%%/resources/images/item-renderer-dl-stats-left-cap.png +%%DATADIR%%/resources/images/item-renderer-rounded-button-middle-pressed.png +%%DATADIR%%/resources/images/torrent-info-up-rate.png +%%DATADIR%%/resources/images/item-renderer-download-button-large-right-pressed.png +%%DATADIR%%/resources/testdata/moviedata.json +%%DATADIR%%/resources/testdata/pop.mp3 +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test4.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test6.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.17325mp3.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test5.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test14.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test12.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test2.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg.unknown_encoder.txt +%%DATADIR%%/resources/testdata/conversions/README +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test11.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test10.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg.mp4.mp3.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test3.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test9.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test1.txt +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test1.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test12.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test3.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test10.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test14.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test4.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test8.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test9.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.17325mp3.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test5.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test13.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test2.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test11.txt.output +%%DATADIR%%/resources/testdata/conversions/output/ffmpeg_info.test6.txt.output +%%DATADIR%%/resources/testdata/conversions/ffmpeg2theora.mp4.oggtheora.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg.error_while_decoding_stream.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test8.txt +%%DATADIR%%/resources/testdata/conversions/ffmpeg_info.test13.txt +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___vodo_net_feeds_promoted.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___www_linktv_org_rss_hq_globalpulse.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___feeds_feedburner_com_earth-touch_podcast_720p.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/ooze.rss +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___feeds_miroguide_com_miroguide_featured.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/usvideo.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___feeds_miroguide_com_miroguide_new.xml +%%DATADIR%%/resources/testdata/feedparsertests/feeds/http___feeds_thisamericanlife_org_talpodcast.xml +%%DATADIR%%/resources/testdata/feedparsertests/output +%%DATADIR%%/resources/testdata/feedparsertests/output/ooze.rss.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___feeds_feedburner_com_earth-touch_podcast_720p.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___feeds_thisamericanlife_org_talpodcast.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___feeds_miroguide_com_miroguide_featured.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___vodo_net_feeds_promoted.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___www_linktv_org_rss_hq_globalpulse.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/usvideo.xml.output +%%DATADIR%%/resources/testdata/feedparsertests/output/http___feeds_miroguide_com_miroguide_new.xml.output +%%DATADIR%%/resources/testdata/httpserver/auth-failed.txt +%%DATADIR%%/resources/testdata/metadata/mp3-0.mp3 +%%DATADIR%%/resources/testdata/metadata/mp3-1.mp3 +%%DATADIR%%/resources/testdata/metadata/mp4-0.mp4 +%%DATADIR%%/resources/testdata/metadata/drm.m4v +%%DATADIR%%/resources/testdata/metadata/webm-0.webm +%%DATADIR%%/resources/testdata/metadata/mp3-2.mp3 +%%DATADIR%%/resources/testdata/metadata/theora_with_ogg_extension.ogg +%%DATADIR%%/resources/devices/generic_phone.py +%%DATADIR%%/resources/devices/android.py +%%DATADIR%%/resources/extensions/testharness.py +%%DATADIR%%/resources/extensions/README +%%DATADIR%%/resources/extensions/__init__.py +%%DATADIR%%/resources/extensions/watchhistory.miroext +%%DATADIR%%/resources/extensions/watchhistory/__init__.py +%%DATADIR%%/resources/extensions/watchhistory/main.py share/pixmaps/miro.xpm @dirrm %%DATADIR%%/resources/testdata/stripperdata @dirrm %%DATADIR%%/resources/testdata/locale/fr/LC_MESSAGES @dirrm %%DATADIR%%/resources/testdata/locale/fr @dirrm %%DATADIR%%/resources/testdata/locale @dirrm %%DATADIR%%/resources/testdata/httpserver +@dirrm %%DATADIR%%/resources/testdata/conversions/output +@dirrm %%DATADIR%%/resources/testdata/conversions +@dirrm %%DATADIR%%/resources/testdata/feedparsertests/feeds +@dirrm %%DATADIR%%/resources/testdata/feedparsertests/output +@dirrm %%DATADIR%%/resources/testdata/feedparsertests +@dirrm %%DATADIR%%/resources/testdata/metadata @dirrm %%DATADIR%%/resources/testdata @dirrm %%DATADIR%%/resources/searchengines @dirrm %%DATADIR%%/resources/images +@dirrm %%DATADIR%%/resources/extensions/watchhistory +@dirrm %%DATADIR%%/resources/extensions +@dirrm %%DATADIR%%/resources/devices @dirrm %%DATADIR%%/resources/conversions @dirrm %%DATADIR%%/resources @dirrm %%DATADIR%% @@ -1005,6 +1566,16 @@ share/pixmaps/miro.xpm @dirrmtry share/locale/zh_HK @dirrmtry share/locale/zu/LC_MESSAGES @dirrmtry share/locale/zu +@dirrmtry share/locale/dv/LC_MESSAGES +@dirrmtry share/locale/dv +@dirrmtry share/locale/jv/LC_MESSAGES +@dirrmtry share/locale/jv +@dirrmtry share/locale/ltg/LC_MESSAGES +@dirrmtry share/locale/ltg +@dirrmtry share/locale/swch/LC_MESSAGES +@dirrmtry share/locale/swch +@dirrmtry share/locale/ta_LK/LC_MESSAGES +@dirrmtry share/locale/ta_LK @dirrmtry share/applications @dirrm %%PYTHON_SITELIBDIR%%/miro/test @dirrm %%PYTHON_SITELIBDIR%%/miro/plat/renderers @@ -1018,6 +1589,9 @@ share/pixmaps/miro.xpm @dirrm %%PYTHON_SITELIBDIR%%/miro/frontends @dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon/private @dirrm %%PYTHON_SITELIBDIR%%/miro/dl_daemon +@dirrm %%PYTHON_SITELIBDIR%%/miro/libdaap +@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends/profilewidgets +@dirrm %%PYTHON_SITELIBDIR%%/miro/frontends @dirrm %%PYTHON_SITELIBDIR%%/miro @exec %%LOCALBASE%%/bin/update-mime-database %D/share/mime @unexec %%LOCALBASE%%/bin/update-mime-database %D/share/mime |