MythTV is a "Personal Video Recorder", i.e. a computer-based video

recorder.  It supports pausing and rewinding live TV, multiple tuner
cards, hardware or software video compression, onscreen program guides
and a distributed architecture.

WWW: http://www.mythtv.org

NOTE: This is the frontend portion of MythTV, suitable for connecting to
a backend MythTV server on a different machine.

PR:		ports/127856
Submitted by:	Bernhard Froehlich <decke at bluelife dot at>
This commit is contained in:
Greg Larkin 2009-01-15 21:24:56 +00:00
parent 4b629a8d48
commit 0b199bfa22
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=226189
17 changed files with 1122 additions and 0 deletions

View File

@ -0,0 +1,87 @@
#
# Ports collection makefile for: mythtv-frontend
# Date created: 14 September 2008
# Whom: Bernhard Fröhlich <decke@bluelife.at>
#
# $FreeBSD$
PORTNAME= mythtv-frontend
PORTVERSION= 0.21
CATEGORIES= multimedia
MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \
http://ftp.oregonstate.edu/pub/mythtv/
DISTNAME= mythtv-${PORTVERSION}
MAINTAINER= decke@bluelife.at
COMMENT= MythTV is a homebrew PVR project
LIB_DEPENDS= mp3lame.0:${PORTSDIR}/audio/lame \
freetype.9:${PORTSDIR}/print/freetype2
BUILD_DEPENDS= qmake:${PORTSDIR}/devel/qmake
RUN_DEPENDS= ${LOCALBASE}/lib/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt-mysql-plugin
CONFLICTS= mythtv-[0-9]*
ONLY_FOR_ARCHS= i386 amd64
USE_BZIP2= yes
USE_QT_VER= 3
QT_NONSTANDARD= yes
USE_GMAKE= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= yes
DATADIR= ${PREFIX}/share/mythtv
MAKE_ENV= QTDIR="${QT_PREFIX}" \
QMAKESPEC="${QMAKESPEC}"
CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" \
QTDIR="${QT_PREFIX}" KDEDIR="${KDE_PREFIX}" \
CFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --prefix="${PREFIX}" --disable-v4l --disable-ivtv --disable-firewire \
--disable-dvb --disable-dbox2 --disable-hdhomerun --disable-iptv \
--without-bindings=perl,python --enable-xvmc --enable-xvmc-pro --disable-xvmcw \
--enable-glx-procaddrarb
QMAKESPEC?= ${LOCALBASE}/share/qt/mkspecs/freebsd-g++
OPTIONS= ARTS "arts sound driver" off \
JACK "JACK sound driver" off \
OPENGL "OpenGL video support (see pre-build message)" off
.include <bsd.port.pre.mk>
pre-everything::
@${ECHO_MSG}
@${ECHO_MSG} "If you want OpenGL video support in MythTV, please"
@${ECHO_MSG} "hit Ctrl-C right now and install QT 3.3 with OpenGL"
@${ECHO_MSG} "support with the following command, if it isn't"
@${ECHO_MSG} "already:"
@${ECHO_MSG}
@${ECHO_MSG} " cd /usr/ports/x11-toolkits/qt33"
@${ECHO_MSG} " make WITH_OPENGL=yes install clean"
@${ECHO_MSG}
@sleep 3
.if defined(WITH_ARTS)
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
CONFIGURE_ARGS+= --enable-audio-arts
.else
CONFIGURE_ARGS+= --disable-audio-arts
.endif
.if defined(WITH_JACK)
LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack
CONFIGURE_ARGS+= --enable-audio-jack
.else
CONFIGURE_ARGS+= --disable-audio-jack
.endif
.if defined(WITH_OPENGL)
CONFIGURE_ARGS+= --disable-opengl-video
.else
CONFIGURE_ARGS+= --enable-opengl-video
.endif
.include <bsd.port.post.mk>

View File

@ -0,0 +1,3 @@
MD5 (mythtv-0.21.tar.bz2) = 49fc135e1cde90cd935c1229467fa37e
SHA256 (mythtv-0.21.tar.bz2) = 33a878a8fc3efdd74519b09b4ec3d16fa9d3a0436b321c13344e5f3ab723c5e4
SIZE (mythtv-0.21.tar.bz2) = 14230687

View File

@ -0,0 +1,55 @@
Index: configure
===================================================================
--- configure (revision 16772)
+++ configure (revision 16895)
@@ -164,4 +164,5 @@
echo " --disable-x11 disable X11 support"
echo " --x11-path=X11LOC location of X11 include files [$x11_include_path-path]"
+# echo " --enable-glx-procaddrarb use glXGetProcAddressARB() instead of glXGetProcAddress()"
echo " --disable-xrandr disable X11 resolution switching"
echo " --disable-xv disable XVideo (X11 video output accel.)"
@@ -905,4 +906,5 @@
dvdv
fribidi
+ glx_proc_addr_arb
'
@@ -1190,4 +1192,5 @@
xvmc_vld="yes"
xvmcw="yes"
+glx_proc_addr_arb="no"
# libraries
@@ -1353,4 +1356,8 @@
;;
--xvmc-lib=*) xvmc_lib="$optval"
+ ;;
+ --enable-glx-procaddrarb) glx_proc_addr_arb="yes"
+ ;;
+ --disable-glx-procaddrarb) glx_proc_addr_arb="no"
;;
--enable-mac-accel) dvdv="yes"
Index: libs/libmythtv/libmythtv.pro
===================================================================
--- libs/libmythtv/libmythtv.pro (revision 16142)
+++ libs/libmythtv/libmythtv.pro (revision 16895)
@@ -313,4 +313,6 @@
using_opengl_video:SOURCES += openglvideo.cpp
+ using_glx_proc_addr_arb:DEFINES += USING_GLX_PROC_ADDR_ARB
+
# Misc. frontend
HEADERS += guidegrid.h infostructs.h
Index: /branches/release-0-21-fixes/mythtv/libs/libmythtv/util-opengl.cpp
===================================================================
--- libs/libmythtv/util-opengl.cpp (revision 15141)
+++ libs/libmythtv/util-opengl.cpp (revision 16895)
@@ -307,5 +307,7 @@
__GLXextFuncPtr ret = NULL;
-#if GLX_VERSION_1_4
+#if USING_GLX_PROC_ADDR_ARB
+ X11S(ret = glXGetProcAddressARB((const GLubyte*)procName.latin1()));
+#elif GLX_VERSION_1_4
X11S(ret = glXGetProcAddress((const GLubyte*)procName.latin1()));
#elif GLX_ARB_get_proc_address

View File

@ -0,0 +1,11 @@
--- configure.orig 2008-03-04 22:23:23.000000000 +0100
+++ configure 2008-11-04 20:12:25.000000000 +0100
@@ -1466,7 +1466,7 @@
x86_64|amd64)
arch="x86_32"
enable fast_unaligned
- canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
+ canon_arch="`$cxx -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
if [ -z "`echo $CFLAGS | grep -- -m32`" ]; then
arch="x86_64"

View File

@ -0,0 +1,19 @@
--- configure.orig 2008-11-10 22:44:26.000000000 +0100
+++ configure 2008-11-10 22:45:16.000000000 +0100
@@ -274,13 +274,13 @@
exit 1
}
-# "tr '[a-z]' '[A-Z]'" is a workaround for Solaris tr not grokking "tr a-z A-Z"
+# Avoid locale weirdness, besides we really just want to translate ASCII.
toupper(){
- echo "$@" | tr '[a-z]' '[A-Z]'
+ echo "$@" | tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ
}
tolower(){
- echo "$@" | tr '[A-Z]' '[a-z]'
+ echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
}
set_all(){

View File

@ -0,0 +1,11 @@
--- libs/libavcodec/h264.c.orig 2008-11-02 21:53:29.000000000 +0100
+++ libs/libavcodec/h264.c 2008-11-02 21:54:24.000000000 +0100
@@ -5366,7 +5366,7 @@
return ctx + 4 * cat;
}
-static const attribute_used uint8_t last_coeff_flag_offset_8x8[63] = {
+const attribute_used uint8_t last_coeff_flag_offset_8x8[63] = {
0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
3, 3, 3, 3, 3, 3, 3, 3, 4, 4, 4, 4, 4, 4, 4, 4,

View File

@ -0,0 +1,13 @@
--- libs/libavcodec/libavcodec.pro.orig 2008-11-02 21:49:28.000000000 +0100
+++ libs/libavcodec/libavcodec.pro 2008-11-02 21:51:42.000000000 +0100
@@ -13,6 +13,10 @@
DEFINES -= MMX
DEFINES += HAVE_AV_CONFIG_H _LARGEFILE_SOURCE
+contains(ARCH_X86_64,yes) {
+ CFLAGS += -DBROKEN_RELOCATIONS
+}
+
# Debug mode on x86 must compile without -fPIC and with -O,
# otherwise gcc runs out of registers.
# libavcodec rev 7671 needs another register

View File

@ -0,0 +1,13 @@
--- libs/libmyth/util.cpp 2008-09-14 23:29:09.000000000 +0200
+++ libs/libmyth/util.cpp 2008-09-14 23:28:01.000000000 +0200
@@ -54,6 +54,10 @@
#include <sys/mount.h> // for struct statfs
#endif
+#ifdef __FreeBSD__
+#include <sys/mount.h>
+#endif
+
#ifdef USE_LIRC
#include "lircevent.h"
#endif

View File

@ -0,0 +1,13 @@
--- libs/libmythfreemheg/Programs.cpp 2007-03-29 21:44:23.000000000 +0200
+++ libs/libmythfreemheg/Programs.cpp 2008-09-15 20:07:39.000000000 +0200
@@ -32,6 +32,10 @@
#include <sys/timeb.h>
#include <time.h>
+#ifdef __FreeBSD__
+#include <sys/time.h>
+#endif
+
#include "../../config.h"
/*

View File

@ -0,0 +1,10 @@
--- libs/libmythtv/libmythtv.pro.orig 2008-02-18 23:59:32.000000000 +0100
+++ libs/libmythtv/libmythtv.pro 2008-09-22 11:56:52.000000000 +0200
@@ -49,6 +49,7 @@
DEFINES += _LARGEFILE_SOURCE
+QMAKE_CXXFLAGS = -I../libmyth -I../libavcodec -I../libavutil -I../libmythmpeg2 $${QMAKE_CXXFLAGS}
QMAKE_CXXFLAGS += $${FREETYPE_CFLAGS}
QMAKE_LFLAGS_SHLIB += $${FREETYPE_LIBS}

View File

@ -0,0 +1,12 @@
--- libs/libmythdvdnav/dvd_input.c 2008-09-14 22:40:08.000000000 +0200
+++ libs/libmythdvdnav/dvd_input.c 2008-09-14 22:40:22.000000000 +0200
@@ -24,6 +24,9 @@
#include <fcntl.h>
#include <unistd.h>
+#define off64_t off_t
+#define lseek64 lseek
+
#include "dvd_reader.h"
#include "dvd_input.h"

View File

@ -0,0 +1,11 @@
--- programs/mythfrontend/main.cpp 2008-09-17 20:22:31.000000000 +0200
+++ programs/mythfrontend/main.cpp 2008-09-17 20:22:58.000000000 +0200
@@ -577,7 +577,7 @@
void haltnow()
{
QString halt_cmd = gContext->GetSetting("HaltCommand",
- "sudo /sbin/halt -p");
+ "/sbin/shutdown -p now");
if (!halt_cmd.isEmpty())
system(halt_cmd.ascii());
}

View File

@ -0,0 +1,10 @@
--- programs/mythtranscode/mythtranscode.pro.orig 2008-09-23 11:10:01.000000000 +0200
+++ programs/mythtranscode/mythtranscode.pro 2008-09-23 11:10:42.000000000 +0200
@@ -20,3 +20,7 @@
INCLUDEPATH += replex
INCLUDEPATH += ../../libs/libavcodec ../../libs/libavformat \
../../libs/libavutil ../../libs/libmythmpeg2
+
+QMAKE_CXXFLAGS = -I../../libs/libavcodec -I../../libs/libavformat \
+ -I../../libs/libavutil -I../../libs/libmythmpeg2 \
+ $${QMAKE_CXXFLAGS}

View File

@ -0,0 +1,13 @@
--- programs/programs.pro.orig 2008-12-30 14:08:30.000000000 -0500
+++ programs/programs.pro 2008-12-30 14:08:40.000000000 -0500
@@ -10,10 +10,6 @@
SUBDIRS += mythwelcome mythshutdown mythtranscode/replex
}
-using_backend {
- SUBDIRS += mythbackend mythfilldatabase mythtv-setup
-}
-
using_frontend:using_backend {
SUBDIRS += mythtranscode
}

View File

@ -0,0 +1,13 @@
--- settings.pro.orig 2008-02-05 12:18:34.000000000 +0100
+++ settings.pro 2008-09-17 14:29:22.000000000 +0200
@@ -50,8 +50,8 @@
# and we do that in their Makefiles if CONFIG has mac_bundle
macx: CONFIG += console
-INCLUDEPATH += $${PREFIX}/include
-INCLUDEPATH += $$CONFIG_INCLUDEPATH
+#INCLUDEPATH += $${PREFIX}/include
+#INCLUDEPATH += $$CONFIG_INCLUDEPATH
# remove warn_{on|off} from CONFIG since we set it in our CFLAGS
CONFIG -= warn_on warn_off

View File

@ -0,0 +1,6 @@
MythTV is a "Personal Video Recorder", i.e. a computer-based video
recorder. It supports pausing and rewinding live TV, multiple tuner
cards, hardware or software video compression, onscreen program guides
and a distributed architecture.
WWW: http://www.mythtv.org

View File

@ -0,0 +1,822 @@
@comment $FreeBSD$
bin/mythcommflag
bin/mythfrontend
bin/mythjobqueue
bin/mythlcdserver
bin/mythreplex
bin/mythshutdown
bin/mythtranscode
bin/mythtv
bin/mythtvosd
bin/mythwelcome
include/mythtv/audiooutput.h
include/mythtv/compat.h
include/mythtv/dialogbox.h
include/mythtv/dvdnav/dvd_reader.h
include/mythtv/dvdnav/dvd_types.h
include/mythtv/dvdnav/dvdnav.h
include/mythtv/dvdnav/dvdnav_events.h
include/mythtv/dvdnav/ifo_read.h
include/mythtv/dvdnav/ifo_types.h
include/mythtv/dvdnav/nav_print.h
include/mythtv/dvdnav/nav_read.h
include/mythtv/dvdnav/nav_types.h
include/mythtv/exitcodes.h
include/mythtv/ffmpeg/adler32.h
include/mythtv/ffmpeg/aes.h
include/mythtv/ffmpeg/avcodec.h
include/mythtv/ffmpeg/avformat.h
include/mythtv/ffmpeg/avio.h
include/mythtv/ffmpeg/avstring.h
include/mythtv/ffmpeg/avutil.h
include/mythtv/ffmpeg/base64.h
include/mythtv/ffmpeg/common.h
include/mythtv/ffmpeg/crc.h
include/mythtv/ffmpeg/fifo.h
include/mythtv/ffmpeg/integer.h
include/mythtv/ffmpeg/internal.h
include/mythtv/ffmpeg/intfloat_readwrite.h
include/mythtv/ffmpeg/lls.h
include/mythtv/ffmpeg/log.h
include/mythtv/ffmpeg/lzo.h
include/mythtv/ffmpeg/mathematics.h
include/mythtv/ffmpeg/md5.h
include/mythtv/ffmpeg/mem.h
include/mythtv/ffmpeg/mmx.h
include/mythtv/ffmpeg/opt.h
include/mythtv/ffmpeg/random.h
include/mythtv/ffmpeg/rational.h
include/mythtv/ffmpeg/rtp.h
include/mythtv/ffmpeg/rtsp.h
include/mythtv/ffmpeg/rtspcodes.h
include/mythtv/ffmpeg/sha1.h
include/mythtv/ffmpeg/softfloat.h
include/mythtv/ffmpeg/tree.h
include/mythtv/ffmpeg/x86_cpu.h
include/mythtv/generictree.h
include/mythtv/httpcomms.h
include/mythtv/langsettings.h
include/mythtv/lcddevice.h
include/mythtv/libmyth/audiooutput.h
include/mythtv/libmyth/compat.h
include/mythtv/libmyth/dialogbox.h
include/mythtv/libmyth/exitcodes.h
include/mythtv/libmyth/generictree.h
include/mythtv/libmyth/httpcomms.h
include/mythtv/libmyth/langsettings.h
include/mythtv/libmyth/lcddevice.h
include/mythtv/libmyth/managedlist.h
include/mythtv/libmyth/mythconfig.h
include/mythtv/libmyth/mythconfig.mak
include/mythtv/libmyth/mythconfigdialogs.h
include/mythtv/libmyth/mythconfiggroups.h
include/mythtv/libmyth/mythcontext.h
include/mythtv/libmyth/mythdbcon.h
include/mythtv/libmyth/mythdialogs.h
include/mythtv/libmyth/mythevent.h
include/mythtv/libmyth/mythexp.h
include/mythtv/libmyth/mythmedia.h
include/mythtv/libmyth/mythmediamonitor.h
include/mythtv/libmyth/mythobservable.h
include/mythtv/libmyth/mythplugin.h
include/mythtv/libmyth/mythpluginapi.h
include/mythtv/libmyth/mythsocket.h
include/mythtv/libmyth/mythstorage.h
include/mythtv/libmyth/mythverbose.h
include/mythtv/libmyth/mythwidgets.h
include/mythtv/libmyth/mythwizard.h
include/mythtv/libmyth/oldsettings.h
include/mythtv/libmyth/output.h
include/mythtv/libmyth/qmdcodec.h
include/mythtv/libmyth/remotefile.h
include/mythtv/libmyth/settings.h
include/mythtv/libmyth/storagegroup.h
include/mythtv/libmyth/uilistbtntype.h
include/mythtv/libmyth/uitypes.h
include/mythtv/libmyth/util.h
include/mythtv/libmyth/virtualkeyboard.h
include/mythtv/libmyth/visual.h
include/mythtv/libmyth/volumebase.h
include/mythtv/libmyth/volumecontrol.h
include/mythtv/libmyth/xmlparse.h
include/mythtv/libmythtv/programinfo.h
include/mythtv/libmythtv/recordingtypes.h
include/mythtv/libmythtv/remoteutil.h
include/mythtv/libmythui/mythdialogbox.h
include/mythtv/libmythui/mythfontproperties.h
include/mythtv/libmythui/mythgesture.h
include/mythtv/libmythui/mythimage.h
include/mythtv/libmythui/mythlistbutton.h
include/mythtv/libmythui/mythmainwindow.h
include/mythtv/libmythui/mythpainter.h
include/mythtv/libmythui/mythpainter_ogl.h
include/mythtv/libmythui/mythpainter_qt.h
include/mythtv/libmythui/mythscreenstack.h
include/mythtv/libmythui/mythscreentype.h
include/mythtv/libmythui/myththemebase.h
include/mythtv/libmythui/myththemedmenu.h
include/mythtv/libmythui/mythuibutton.h
include/mythtv/libmythui/mythuiclock.h
include/mythtv/libmythui/mythuiimage.h
include/mythtv/libmythui/mythuistatetype.h
include/mythtv/libmythui/mythuitext.h
include/mythtv/libmythui/mythuitype.h
include/mythtv/libmythui/xmlparsebase.h
include/mythtv/managedlist.h
include/mythtv/mpeg2dec/mpeg2.h
include/mythtv/mythconfig.h
include/mythtv/mythconfig.mak
include/mythtv/mythconfigdialogs.h
include/mythtv/mythconfiggroups.h
include/mythtv/mythcontext.h
include/mythtv/mythdbcon.h
include/mythtv/mythdialogs.h
include/mythtv/mythevent.h
include/mythtv/mythexp.h
include/mythtv/mythmedia.h
include/mythtv/mythmediamonitor.h
include/mythtv/mythobservable.h
include/mythtv/mythplugin.h
include/mythtv/mythpluginapi.h
include/mythtv/mythsocket.h
include/mythtv/mythstorage.h
include/mythtv/mythverbose.h
include/mythtv/mythwidgets.h
include/mythtv/mythwizard.h
include/mythtv/oldsettings.h
include/mythtv/output.h
include/mythtv/qmdcodec.h
include/mythtv/remotefile.h
include/mythtv/samplerate.h
include/mythtv/settings.h
include/mythtv/storagegroup.h
include/mythtv/uilistbtntype.h
include/mythtv/uitypes.h
include/mythtv/upnp/broadcast.h
include/mythtv/upnp/bufferedsocketdevice.h
include/mythtv/upnp/configuration.h
include/mythtv/upnp/eventing.h
include/mythtv/upnp/httprequest.h
include/mythtv/upnp/httpserver.h
include/mythtv/upnp/multicast.h
include/mythtv/upnp/mythxmlclient.h
include/mythtv/upnp/soapclient.h
include/mythtv/upnp/ssdp.h
include/mythtv/upnp/ssdpcache.h
include/mythtv/upnp/taskqueue.h
include/mythtv/upnp/threadpool.h
include/mythtv/upnp/upnp.h
include/mythtv/upnp/upnpcds.h
include/mythtv/upnp/upnpcdsobjects.h
include/mythtv/upnp/upnpcmgr.h
include/mythtv/upnp/upnpdevice.h
include/mythtv/upnp/upnpimpl.h
include/mythtv/upnp/upnptaskcache.h
include/mythtv/upnp/upnptaskevent.h
include/mythtv/upnp/upnptasknotify.h
include/mythtv/upnp/upnptasksearch.h
include/mythtv/upnp/upnputil.h
include/mythtv/util.h
include/mythtv/virtualkeyboard.h
include/mythtv/visual.h
include/mythtv/volumebase.h
include/mythtv/volumecontrol.h
include/mythtv/xmlparse.h
lib/libmyth-0.21.so
lib/libmyth-0.21.so.0
lib/libmyth-0.21.so.0.21
lib/libmyth-0.21.so.0.21.0
lib/libmythavcodec-0.21.so
lib/libmythavcodec-0.21.so.0
lib/libmythavcodec-0.21.so.0.21
lib/libmythavcodec-0.21.so.0.21.0
lib/libmythavformat-0.21.so
lib/libmythavformat-0.21.so.0
lib/libmythavformat-0.21.so.0.21
lib/libmythavformat-0.21.so.0.21.0
lib/libmythavutil-0.21.so
lib/libmythavutil-0.21.so.0
lib/libmythavutil-0.21.so.0.21
lib/libmythavutil-0.21.so.0.21.0
lib/libmythdvdnav-0.21.a
lib/libmythfreemheg-0.21.so
lib/libmythfreemheg-0.21.so.0
lib/libmythfreemheg-0.21.so.0.21
lib/libmythfreemheg-0.21.so.0.21.0
lib/libmythlivemedia-0.21.so
lib/libmythlivemedia-0.21.so.0
lib/libmythlivemedia-0.21.so.0.21
lib/libmythlivemedia-0.21.so.0.21.0
lib/libmythtv-0.21.so
lib/libmythtv-0.21.so.0
lib/libmythtv-0.21.so.0.21
lib/libmythtv-0.21.so.0.21.0
lib/libmythui-0.21.so
lib/libmythui-0.21.so.0
lib/libmythui-0.21.so.0.21
lib/libmythui-0.21.so.0.21.0
lib/libmythupnp-0.21.so
lib/libmythupnp-0.21.so.0
lib/libmythupnp-0.21.so.0.21
lib/libmythupnp-0.21.so.0.21.0
lib/mythtv/filters/libadjust.so
lib/mythtv/filters/libbobdeint.so
lib/mythtv/filters/libconvert.so
lib/mythtv/filters/libcrop.so
lib/mythtv/filters/libdenoise3d.so
lib/mythtv/filters/libforce.so
lib/mythtv/filters/libgreedyhdeint.so
lib/mythtv/filters/libinvert.so
lib/mythtv/filters/libivtc.so
lib/mythtv/filters/libkerneldeint.so
lib/mythtv/filters/liblinearblend.so
lib/mythtv/filters/libonefield.so
lib/mythtv/filters/libquickdnr.so
lib/mythtv/filters/libyadif.so
%%DATADIR%%/CDS_scpd.xml
%%DATADIR%%/CMGR_scpd.xml
%%DATADIR%%/FreeMono.ttf
%%DATADIR%%/FreeSans.ttf
%%DATADIR%%/FreeSansBold.ttf
%%DATADIR%%/MSRR_scpd.xml
%%DATADIR%%/i18n/mythfrontend_ca.qm
%%DATADIR%%/i18n/mythfrontend_cz.qm
%%DATADIR%%/i18n/mythfrontend_de.qm
%%DATADIR%%/i18n/mythfrontend_dk.qm
%%DATADIR%%/i18n/mythfrontend_en_gb.qm
%%DATADIR%%/i18n/mythfrontend_es.qm
%%DATADIR%%/i18n/mythfrontend_et.qm
%%DATADIR%%/i18n/mythfrontend_fi.qm
%%DATADIR%%/i18n/mythfrontend_fr.qm
%%DATADIR%%/i18n/mythfrontend_he.qm
%%DATADIR%%/i18n/mythfrontend_is.qm
%%DATADIR%%/i18n/mythfrontend_it.qm
%%DATADIR%%/i18n/mythfrontend_ja.qm
%%DATADIR%%/i18n/mythfrontend_nb.qm
%%DATADIR%%/i18n/mythfrontend_nl.qm
%%DATADIR%%/i18n/mythfrontend_pl.qm
%%DATADIR%%/i18n/mythfrontend_pt.qm
%%DATADIR%%/i18n/mythfrontend_pt_br.qm
%%DATADIR%%/i18n/mythfrontend_ru.qm
%%DATADIR%%/i18n/mythfrontend_si.qm
%%DATADIR%%/i18n/mythfrontend_sv.qm
%%DATADIR%%/i18n/mythfrontend_tr.qm
%%DATADIR%%/i18n/mythfrontend_zh_tw.qm
%%DATADIR%%/info_menu.xml
%%DATADIR%%/info_settings.xml
%%DATADIR%%/library.xml
%%DATADIR%%/main_settings.xml
%%DATADIR%%/mainmenu.xml
%%DATADIR%%/manage_recordings.xml
%%DATADIR%%/media_settings.xml
%%DATADIR%%/optical_menu.xml
%%DATADIR%%/recpriorities_settings.xml
%%DATADIR%%/themes/DVR/dvr-preview.png
%%DATADIR%%/themes/DVR/main_settings.xml
%%DATADIR%%/themes/DVR/mainmenu.xml
%%DATADIR%%/themes/DVR/recpriorities_settings.xml
%%DATADIR%%/themes/DVR/themeinfo.xml
%%DATADIR%%/themes/DVR/tv_lists.xml
%%DATADIR%%/themes/DVR/tv_schedule.xml
%%DATADIR%%/themes/DVR/tv_search.xml
%%DATADIR%%/themes/DVR/tv_settings.xml
%%DATADIR%%/themes/DVR/tvmenu.xml
%%DATADIR%%/themes/DVR/util_menu.xml
%%DATADIR%%/themes/G.A.N.T/README
%%DATADIR%%/themes/G.A.N.T/arrow_down.png
%%DATADIR%%/themes/G.A.N.T/arrow_up.png
%%DATADIR%%/themes/G.A.N.T/bar.png
%%DATADIR%%/themes/G.A.N.T/base.xml
%%DATADIR%%/themes/G.A.N.T/bkg/grey.png
%%DATADIR%%/themes/G.A.N.T/cloudy.png
%%DATADIR%%/themes/G.A.N.T/fair.png
%%DATADIR%%/themes/G.A.N.T/flurries.png
%%DATADIR%%/themes/G.A.N.T/fog.png
%%DATADIR%%/themes/G.A.N.T/gantdown.png
%%DATADIR%%/themes/G.A.N.T/gantleft.png
%%DATADIR%%/themes/G.A.N.T/gantright.png
%%DATADIR%%/themes/G.A.N.T/gantup.png
%%DATADIR%%/themes/G.A.N.T/lshowers.png
%%DATADIR%%/themes/G.A.N.T/mcloudy.png
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_off.png
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_on.png
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_pushed.png
%%DATADIR%%/themes/G.A.N.T/mm_checked.png
%%DATADIR%%/themes/G.A.N.T/mm_checked_high.png
%%DATADIR%%/themes/G.A.N.T/mm_ffw.png
%%DATADIR%%/themes/G.A.N.T/mm_leftright_off.png
%%DATADIR%%/themes/G.A.N.T/mm_leftright_on.png
%%DATADIR%%/themes/G.A.N.T/mm_leftright_pushed.png
%%DATADIR%%/themes/G.A.N.T/mm_next.png
%%DATADIR%%/themes/G.A.N.T/mm_pause.png
%%DATADIR%%/themes/G.A.N.T/mm_play.png
%%DATADIR%%/themes/G.A.N.T/mm_prev.png
%%DATADIR%%/themes/G.A.N.T/mm_rating.png
%%DATADIR%%/themes/G.A.N.T/mm_rew.png
%%DATADIR%%/themes/G.A.N.T/mm_selectionbar.png
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_off.png
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_on.png
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_pushed.png
%%DATADIR%%/themes/G.A.N.T/mm_stop.png
%%DATADIR%%/themes/G.A.N.T/mm_track_info_background.png
%%DATADIR%%/themes/G.A.N.T/mm_unchecked.png
%%DATADIR%%/themes/G.A.N.T/mm_unchecked_high.png
%%DATADIR%%/themes/G.A.N.T/mm_waiting.png
%%DATADIR%%/themes/G.A.N.T/music-ui.xml
%%DATADIR%%/themes/G.A.N.T/myth_logo.png
%%DATADIR%%/themes/G.A.N.T/pcloudy.png
%%DATADIR%%/themes/G.A.N.T/preview.jpg
%%DATADIR%%/themes/G.A.N.T/qtlook.txt
%%DATADIR%%/themes/G.A.N.T/rainsnow.png
%%DATADIR%%/themes/G.A.N.T/rk-selectbar.png
%%DATADIR%%/themes/G.A.N.T/showers.png
%%DATADIR%%/themes/G.A.N.T/snowshow.png
%%DATADIR%%/themes/G.A.N.T/sunny.png
%%DATADIR%%/themes/G.A.N.T/text-blank.png
%%DATADIR%%/themes/G.A.N.T/theme.xml
%%DATADIR%%/themes/G.A.N.T/themeinfo.xml
%%DATADIR%%/themes/G.A.N.T/thunshowers.png
%%DATADIR%%/themes/G.A.N.T/title/title_dvd.png
%%DATADIR%%/themes/G.A.N.T/title/title_dvd_setup.png
%%DATADIR%%/themes/G.A.N.T/title/title_gallery.png
%%DATADIR%%/themes/G.A.N.T/title/title_game_setup.png
%%DATADIR%%/themes/G.A.N.T/title/title_info_center.png
%%DATADIR%%/themes/G.A.N.T/title/title_info_settings.png
%%DATADIR%%/themes/G.A.N.T/title/title_main.png
%%DATADIR%%/themes/G.A.N.T/title/title_manage.png
%%DATADIR%%/themes/G.A.N.T/title/title_media_library.png
%%DATADIR%%/themes/G.A.N.T/title/title_media_settings.png
%%DATADIR%%/themes/G.A.N.T/title/title_music.png
%%DATADIR%%/themes/G.A.N.T/title/title_music_setup.png
%%DATADIR%%/themes/G.A.N.T/title/title_netflix.png
%%DATADIR%%/themes/G.A.N.T/title/title_optical_discs.png
%%DATADIR%%/themes/G.A.N.T/title/title_priorities.png
%%DATADIR%%/themes/G.A.N.T/title/title_schedule.png
%%DATADIR%%/themes/G.A.N.T/title/title_search.png
%%DATADIR%%/themes/G.A.N.T/title/title_search_lists.png
%%DATADIR%%/themes/G.A.N.T/title/title_search_words.png
%%DATADIR%%/themes/G.A.N.T/title/title_setup.png
%%DATADIR%%/themes/G.A.N.T/title/title_tv.png
%%DATADIR%%/themes/G.A.N.T/title/title_tv_settings.png
%%DATADIR%%/themes/G.A.N.T/title/title_utilities.png
%%DATADIR%%/themes/G.A.N.T/title/title_video.png
%%DATADIR%%/themes/G.A.N.T/title/title_video_setup.png
%%DATADIR%%/themes/G.A.N.T/type/autoexpire.png
%%DATADIR%%/themes/G.A.N.T/type/bookmark.png
%%DATADIR%%/themes/G.A.N.T/type/commflagged.png
%%DATADIR%%/themes/G.A.N.T/type/cutlist.png
%%DATADIR%%/themes/G.A.N.T/type/processing.png
%%DATADIR%%/themes/G.A.N.T/ui.xml
%%DATADIR%%/themes/G.A.N.T/unknown.png
%%DATADIR%%/themes/G.A.N.T/watermark/archive.png
%%DATADIR%%/themes/G.A.N.T/watermark/camera.png
%%DATADIR%%/themes/G.A.N.T/watermark/cd.png
%%DATADIR%%/themes/G.A.N.T/watermark/cd_music.png
%%DATADIR%%/themes/G.A.N.T/watermark/cd_play.png
%%DATADIR%%/themes/G.A.N.T/watermark/check.png
%%DATADIR%%/themes/G.A.N.T/watermark/clock.png
%%DATADIR%%/themes/G.A.N.T/watermark/conflict.png
%%DATADIR%%/themes/G.A.N.T/watermark/delete.png
%%DATADIR%%/themes/G.A.N.T/watermark/dvd.png
%%DATADIR%%/themes/G.A.N.T/watermark/eject.png
%%DATADIR%%/themes/G.A.N.T/watermark/game.png
%%DATADIR%%/themes/G.A.N.T/watermark/globe.png
%%DATADIR%%/themes/G.A.N.T/watermark/log.png
%%DATADIR%%/themes/G.A.N.T/watermark/music.png
%%DATADIR%%/themes/G.A.N.T/watermark/music_playlist.png
%%DATADIR%%/themes/G.A.N.T/watermark/newspaper.png
%%DATADIR%%/themes/G.A.N.T/watermark/padlock.png
%%DATADIR%%/themes/G.A.N.T/watermark/paint.png
%%DATADIR%%/themes/G.A.N.T/watermark/pizza.png
%%DATADIR%%/themes/G.A.N.T/watermark/previous.png
%%DATADIR%%/themes/G.A.N.T/watermark/refresh.png
%%DATADIR%%/themes/G.A.N.T/watermark/rip_cd.png
%%DATADIR%%/themes/G.A.N.T/watermark/search.png
%%DATADIR%%/themes/G.A.N.T/watermark/stop.png
%%DATADIR%%/themes/G.A.N.T/watermark/telephone.png
%%DATADIR%%/themes/G.A.N.T/watermark/tv.png
%%DATADIR%%/themes/G.A.N.T/watermark/tv2.png
%%DATADIR%%/themes/G.A.N.T/watermark/tv_recorded.png
%%DATADIR%%/themes/G.A.N.T/watermark/video.png
%%DATADIR%%/themes/G.A.N.T/watermark/video_folder.png
%%DATADIR%%/themes/G.A.N.T/watermark/weather.png
%%DATADIR%%/themes/G.A.N.T/watermark/webcam.png
%%DATADIR%%/themes/G.A.N.T/watermark/wrench.png
%%DATADIR%%/themes/blue/APPEARANCE.png
%%DATADIR%%/themes/blue/FILE_TYPES.png
%%DATADIR%%/themes/blue/FINDER.png
%%DATADIR%%/themes/blue/GAME_SCAN.png
%%DATADIR%%/themes/blue/MANUAL.png
%%DATADIR%%/themes/blue/MEDIA_LIBRARY.png
%%DATADIR%%/themes/blue/MUSIC_PLAY.png
%%DATADIR%%/themes/blue/MUSIC_SCAN.png
%%DATADIR%%/themes/blue/POWER_SEARCH.png
%%DATADIR%%/themes/blue/SEARCH_CAT.png
%%DATADIR%%/themes/blue/SEARCH_CHAN.png
%%DATADIR%%/themes/blue/SEARCH_KEYWORDS.png
%%DATADIR%%/themes/blue/SEARCH_LISTS.png
%%DATADIR%%/themes/blue/SEARCH_MOVIES.png
%%DATADIR%%/themes/blue/SEARCH_NEW.png
%%DATADIR%%/themes/blue/SEARCH_PEOPLE.png
%%DATADIR%%/themes/blue/SEARCH_TIME.png
%%DATADIR%%/themes/blue/SEARCH_TITLES.png
%%DATADIR%%/themes/blue/SEARCH_WORDS.png
%%DATADIR%%/themes/blue/SETTINGS.png
%%DATADIR%%/themes/blue/UPCOMING.png
%%DATADIR%%/themes/blue/autoexpire.png
%%DATADIR%%/themes/blue/background.png
%%DATADIR%%/themes/blue/bar.png
%%DATADIR%%/themes/blue/base.xml
%%DATADIR%%/themes/blue/blankbutton_off.png
%%DATADIR%%/themes/blue/blankbutton_on.png
%%DATADIR%%/themes/blue/blankbutton_pushed.png
%%DATADIR%%/themes/blue/blankicon.jpg
%%DATADIR%%/themes/blue/bookmark.png
%%DATADIR%%/themes/blue/button_off.png
%%DATADIR%%/themes/blue/button_on.png
%%DATADIR%%/themes/blue/button_template.psd
%%DATADIR%%/themes/blue/cd.png
%%DATADIR%%/themes/blue/checked.png
%%DATADIR%%/themes/blue/checked_high.png
%%DATADIR%%/themes/blue/conflict.png
%%DATADIR%%/themes/blue/cr-background.png
%%DATADIR%%/themes/blue/cr-lines.png
%%DATADIR%%/themes/blue/cr-selectbar.png
%%DATADIR%%/themes/blue/cutlist.png
%%DATADIR%%/themes/blue/delete.png
%%DATADIR%%/themes/blue/downarrow.png
%%DATADIR%%/themes/blue/dvd.png
%%DATADIR%%/themes/blue/eject.png
%%DATADIR%%/themes/blue/ff_button_off.png
%%DATADIR%%/themes/blue/ff_button_on.png
%%DATADIR%%/themes/blue/ff_button_pushed.png
%%DATADIR%%/themes/blue/gallery-ui.xml
%%DATADIR%%/themes/blue/game-ui.xml
%%DATADIR%%/themes/blue/game.png
%%DATADIR%%/themes/blue/gg-background.png
%%DATADIR%%/themes/blue/gg-vid-background.png
%%DATADIR%%/themes/blue/home.png
%%DATADIR%%/themes/blue/images.png
%%DATADIR%%/themes/blue/leftarrow.png
%%DATADIR%%/themes/blue/leftright_off.png
%%DATADIR%%/themes/blue/leftright_on.png
%%DATADIR%%/themes/blue/leftright_pushed.png
%%DATADIR%%/themes/blue/logo_template.psd
%%DATADIR%%/themes/blue/mm_waiting.png
%%DATADIR%%/themes/blue/music-ui.xml
%%DATADIR%%/themes/blue/mv-vbrowser.png
%%DATADIR%%/themes/blue/mv-vlist.png
%%DATADIR%%/themes/blue/mv-vmanager.png
%%DATADIR%%/themes/blue/mv_filerequest.png
%%DATADIR%%/themes/blue/myth_tv_logo.png
%%DATADIR%%/themes/blue/news.png
%%DATADIR%%/themes/blue/next_button_off.png
%%DATADIR%%/themes/blue/next_button_on.png
%%DATADIR%%/themes/blue/next_button_pushed.png
%%DATADIR%%/themes/blue/pause_button_off.png
%%DATADIR%%/themes/blue/pause_button_on.png
%%DATADIR%%/themes/blue/pause_button_pushed.png
%%DATADIR%%/themes/blue/play.png
%%DATADIR%%/themes/blue/play_button_off.png
%%DATADIR%%/themes/blue/play_button_on.png
%%DATADIR%%/themes/blue/play_button_pushed.png
%%DATADIR%%/themes/blue/play_cd.png
%%DATADIR%%/themes/blue/playlist.png
%%DATADIR%%/themes/blue/prev_button_off.png
%%DATADIR%%/themes/blue/prev_button_on.png
%%DATADIR%%/themes/blue/prev_button_pushed.png
%%DATADIR%%/themes/blue/preview.jpg
%%DATADIR%%/themes/blue/previous.png
%%DATADIR%%/themes/blue/processing.png
%%DATADIR%%/themes/blue/progfind_background.png
%%DATADIR%%/themes/blue/progfind_lines.png
%%DATADIR%%/themes/blue/progfind_sel1.png
%%DATADIR%%/themes/blue/progfind_sel2.png
%%DATADIR%%/themes/blue/progfind_sel3.png
%%DATADIR%%/themes/blue/progfind_top.png
%%DATADIR%%/themes/blue/qtlook.txt
%%DATADIR%%/themes/blue/record.png
%%DATADIR%%/themes/blue/recpriorities.png
%%DATADIR%%/themes/blue/rew_button_off.png
%%DATADIR%%/themes/blue/rew_button_on.png
%%DATADIR%%/themes/blue/rew_button_pushed.png
%%DATADIR%%/themes/blue/rightarrow.png
%%DATADIR%%/themes/blue/rip_cd.png
%%DATADIR%%/themes/blue/rip_dvd.png
%%DATADIR%%/themes/blue/rk-lines.png
%%DATADIR%%/themes/blue/rolines.png
%%DATADIR%%/themes/blue/search_template.psd
%%DATADIR%%/themes/blue/selectionbar.png
%%DATADIR%%/themes/blue/setup.png
%%DATADIR%%/themes/blue/showstatus.png
%%DATADIR%%/themes/blue/stop_button_off.png
%%DATADIR%%/themes/blue/stop_button_on.png
%%DATADIR%%/themes/blue/stop_button_pushed.png
%%DATADIR%%/themes/blue/text_button_off.png
%%DATADIR%%/themes/blue/text_button_on.png
%%DATADIR%%/themes/blue/text_button_pushed.png
%%DATADIR%%/themes/blue/theme.xml
%%DATADIR%%/themes/blue/themeinfo.xml
%%DATADIR%%/themes/blue/track_info_background.png
%%DATADIR%%/themes/blue/trans-background.png
%%DATADIR%%/themes/blue/trans-game-background.png
%%DATADIR%%/themes/blue/trans-gameshowings.png
%%DATADIR%%/themes/blue/trans-mmbackground.png
%%DATADIR%%/themes/blue/trans-rk-background.png
%%DATADIR%%/themes/blue/trans-showings.png
%%DATADIR%%/themes/blue/trans-sr-background.png
%%DATADIR%%/themes/blue/trans-titles.png
%%DATADIR%%/themes/blue/trans-vm-background.png
%%DATADIR%%/themes/blue/ui.xml
%%DATADIR%%/themes/blue/unchecked.png
%%DATADIR%%/themes/blue/unchecked_high.png
%%DATADIR%%/themes/blue/uparrow.png
%%DATADIR%%/themes/blue/video-ui.xml
%%DATADIR%%/themes/blue/videobutton.png
%%DATADIR%%/themes/blue/watch_dvd.png
%%DATADIR%%/themes/blue/watch_tv.png
%%DATADIR%%/themes/blue/watch_vcd.png
%%DATADIR%%/themes/blue/weather.png
%%DATADIR%%/themes/blue/webpage.png
%%DATADIR%%/themes/blueosd/blueosd-preview.png
%%DATADIR%%/themes/blueosd/cut-end.png
%%DATADIR%%/themes/blueosd/cut-start.png
%%DATADIR%%/themes/blueosd/fill-blue.png
%%DATADIR%%/themes/blueosd/grey.png
%%DATADIR%%/themes/blueosd/osd-alert.png
%%DATADIR%%/themes/blueosd/osd-big.png
%%DATADIR%%/themes/blueosd/osd-callerid.png
%%DATADIR%%/themes/blueosd/osd-channel-edit.png
%%DATADIR%%/themes/blueosd/osd-mid.png
%%DATADIR%%/themes/blueosd/osd-small.png
%%DATADIR%%/themes/blueosd/osd.xml
%%DATADIR%%/themes/blueosd/position-indicator.png
%%DATADIR%%/themes/blueosd/red.png
%%DATADIR%%/themes/blueosd/themeinfo.xml
%%DATADIR%%/themes/classic/classic-preview.png
%%DATADIR%%/themes/classic/main_settings.xml
%%DATADIR%%/themes/classic/mainmenu.xml
%%DATADIR%%/themes/classic/recpriorities_settings.xml
%%DATADIR%%/themes/classic/themeinfo.xml
%%DATADIR%%/themes/classic/tv_schedule.xml
%%DATADIR%%/themes/classic/tv_search.xml
%%DATADIR%%/themes/classic/tv_settings.xml
%%DATADIR%%/themes/classic/tvmenu.xml
%%DATADIR%%/themes/default-wide/appear-ui.xml
%%DATADIR%%/themes/default-wide/bar.png
%%DATADIR%%/themes/default-wide/controls-ui.xml
%%DATADIR%%/themes/default-wide/cr-lines.png
%%DATADIR%%/themes/default-wide/cr-selectbar.png
%%DATADIR%%/themes/default-wide/def-ro-lines.png
%%DATADIR%%/themes/default-wide/filler.png
%%DATADIR%%/themes/default-wide/gallery-ui.xml
%%DATADIR%%/themes/default-wide/game-ui.xml
%%DATADIR%%/themes/default-wide/gg-background.png
%%DATADIR%%/themes/default-wide/gg-vid-background.png
%%DATADIR%%/themes/default-wide/md_progress_background.png
%%DATADIR%%/themes/default-wide/mm_blackhole_border.png
%%DATADIR%%/themes/default-wide/mm_volume_background.png
%%DATADIR%%/themes/default-wide/mm_waiting.png
%%DATADIR%%/themes/default-wide/music-sel-bg.png
%%DATADIR%%/themes/default-wide/music-ui.xml
%%DATADIR%%/themes/default-wide/mv_pushbutton_off.png
%%DATADIR%%/themes/default-wide/mv_pushbutton_on.png
%%DATADIR%%/themes/default-wide/mv_pushbutton_pushed.png
%%DATADIR%%/themes/default-wide/mytharchive-ui.xml
%%DATADIR%%/themes/default-wide/mythburn-ui.xml
%%DATADIR%%/themes/default-wide/mythnative-ui.xml
%%DATADIR%%/themes/default-wide/netflix-bg.png
%%DATADIR%%/themes/default-wide/netflix-ui.xml
%%DATADIR%%/themes/default-wide/news-ui.xml
%%DATADIR%%/themes/default-wide/pd-background.png
%%DATADIR%%/themes/default-wide/pf-background.png
%%DATADIR%%/themes/default-wide/pf-lines.png
%%DATADIR%%/themes/default-wide/pf-sel1.png
%%DATADIR%%/themes/default-wide/pf-sel2.png
%%DATADIR%%/themes/default-wide/pf-sel3.png
%%DATADIR%%/themes/default-wide/pf-top.png
%%DATADIR%%/themes/default-wide/preview.png
%%DATADIR%%/themes/default-wide/rk-lines.png
%%DATADIR%%/themes/default-wide/rk-selectbar.png
%%DATADIR%%/themes/default-wide/selectbar.png
%%DATADIR%%/themes/default-wide/solid-background.png
%%DATADIR%%/themes/default-wide/solid-container.png
%%DATADIR%%/themes/default-wide/solid-cr-background.png
%%DATADIR%%/themes/default-wide/solid-showings.png
%%DATADIR%%/themes/default-wide/status-bar.png
%%DATADIR%%/themes/default-wide/status-ui.xml
%%DATADIR%%/themes/default-wide/text_button_off.png
%%DATADIR%%/themes/default-wide/text_button_on.png
%%DATADIR%%/themes/default-wide/text_button_pushed.png
%%DATADIR%%/themes/default-wide/track_info_background.png
%%DATADIR%%/themes/default-wide/trans-background.png
%%DATADIR%%/themes/default-wide/trans-backup.png
%%DATADIR%%/themes/default-wide/trans-container.png
%%DATADIR%%/themes/default-wide/trans-cr-background.png
%%DATADIR%%/themes/default-wide/trans-rk-background.png
%%DATADIR%%/themes/default-wide/trans-showings.png
%%DATADIR%%/themes/default-wide/trans-sr-background.png
%%DATADIR%%/themes/default-wide/trans-titles.png
%%DATADIR%%/themes/default-wide/welcome-ui.xml
%%DATADIR%%/themes/default/appear-ui.xml
%%DATADIR%%/themes/default/autoexpire.png
%%DATADIR%%/themes/default/bar.png
%%DATADIR%%/themes/default/base.xml
%%DATADIR%%/themes/default/blank.png
%%DATADIR%%/themes/default/blankbutton_off.png
%%DATADIR%%/themes/default/blankbutton_on.png
%%DATADIR%%/themes/default/blankbutton_pushed.png
%%DATADIR%%/themes/default/bookmark.png
%%DATADIR%%/themes/default/bottomright.png
%%DATADIR%%/themes/default/categories.xml
%%DATADIR%%/themes/default/cc.png
%%DATADIR%%/themes/default/checked.png
%%DATADIR%%/themes/default/checked_high.png
%%DATADIR%%/themes/default/commflagged.png
%%DATADIR%%/themes/default/cr-lines.png
%%DATADIR%%/themes/default/cr-selectbar.png
%%DATADIR%%/themes/default/cutlist.png
%%DATADIR%%/themes/default/dd.png
%%DATADIR%%/themes/default/def-ro-lines.png
%%DATADIR%%/themes/default/downarrow.png
%%DATADIR%%/themes/default/dummy1280x720p29.97.ts
%%DATADIR%%/themes/default/dummy1920x1088p29.97.ts
%%DATADIR%%/themes/default/dummy640x480p29.97.ts
%%DATADIR%%/themes/default/dummy720x480p29.97.ts
%%DATADIR%%/themes/default/dummy720x576p25.00.ts
%%DATADIR%%/themes/default/dummy768x576p50.00.ts
%%DATADIR%%/themes/default/filler.png
%%DATADIR%%/themes/default/galleryfolder.png
%%DATADIR%%/themes/default/gg-arrow-left.png
%%DATADIR%%/themes/default/gg-arrow-right.png
%%DATADIR%%/themes/default/gg-background.png
%%DATADIR%%/themes/default/gg-chans.png
%%DATADIR%%/themes/default/gg-rs-all.png
%%DATADIR%%/themes/default/gg-rs-channel.png
%%DATADIR%%/themes/default/gg-rs-findone.png
%%DATADIR%%/themes/default/gg-rs-override.png
%%DATADIR%%/themes/default/gg-rs-single.png
%%DATADIR%%/themes/default/gg-rs-timeslot.png
%%DATADIR%%/themes/default/gg-rs-weekslot.png
%%DATADIR%%/themes/default/gg-times.png
%%DATADIR%%/themes/default/gg-vid-background.png
%%DATADIR%%/themes/default/hd.png
%%DATADIR%%/themes/default/keyboard/ar_ui.xml
%%DATADIR%%/themes/default/keyboard/de_ui.xml
%%DATADIR%%/themes/default/keyboard/dk_ui.xml
%%DATADIR%%/themes/default/keyboard/en_uk_ui.xml
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
%%DATADIR%%/themes/default/keyboard/es_ui.xml
%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml
%%DATADIR%%/themes/default/keyboard/fr_ui.xml
%%DATADIR%%/themes/default/keyboard/he_ui.xml
%%DATADIR%%/themes/default/keyboard/it_ui.xml
%%DATADIR%%/themes/default/keyboard/key_down.png
%%DATADIR%%/themes/default/keyboard/key_down_back.png
%%DATADIR%%/themes/default/keyboard/key_down_del.png
%%DATADIR%%/themes/default/keyboard/key_down_done.png
%%DATADIR%%/themes/default/keyboard/key_down_move.png
%%DATADIR%%/themes/default/keyboard/key_down_shift.png
%%DATADIR%%/themes/default/keyboard/key_down_space.png
%%DATADIR%%/themes/default/keyboard/key_down_space2.png
%%DATADIR%%/themes/default/keyboard/key_downfocused.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_back.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_del.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_done.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_move.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_shift.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_space.png
%%DATADIR%%/themes/default/keyboard/key_downfocused_space2.png
%%DATADIR%%/themes/default/keyboard/key_focused.png
%%DATADIR%%/themes/default/keyboard/key_focused_back.png
%%DATADIR%%/themes/default/keyboard/key_focused_del.png
%%DATADIR%%/themes/default/keyboard/key_focused_done.png
%%DATADIR%%/themes/default/keyboard/key_focused_move.png
%%DATADIR%%/themes/default/keyboard/key_focused_shift.png
%%DATADIR%%/themes/default/keyboard/key_focused_space.png
%%DATADIR%%/themes/default/keyboard/key_focused_space2.png
%%DATADIR%%/themes/default/keyboard/key_normal.png
%%DATADIR%%/themes/default/keyboard/key_normal_back.png
%%DATADIR%%/themes/default/keyboard/key_normal_del.png
%%DATADIR%%/themes/default/keyboard/key_normal_done.png
%%DATADIR%%/themes/default/keyboard/key_normal_move.png
%%DATADIR%%/themes/default/keyboard/key_normal_shift.png
%%DATADIR%%/themes/default/keyboard/key_normal_space.png
%%DATADIR%%/themes/default/keyboard/key_normal_space2.png
%%DATADIR%%/themes/default/keyboard/ru_ui.xml
%%DATADIR%%/themes/default/keyboard/sv_ui.xml
%%DATADIR%%/themes/default/lb-arrow.png
%%DATADIR%%/themes/default/lb-check-empty.png
%%DATADIR%%/themes/default/lb-check-full.png
%%DATADIR%%/themes/default/lb-check-half.png
%%DATADIR%%/themes/default/lb-check.png
%%DATADIR%%/themes/default/lb-dnarrow-reg.png
%%DATADIR%%/themes/default/lb-dnarrow-sel.png
%%DATADIR%%/themes/default/lb-ltarrow-reg.png
%%DATADIR%%/themes/default/lb-ltarrow-sel.png
%%DATADIR%%/themes/default/lb-rtarrow-reg.png
%%DATADIR%%/themes/default/lb-rtarrow-sel.png
%%DATADIR%%/themes/default/lb-uparrow-reg.png
%%DATADIR%%/themes/default/lb-uparrow-sel.png
%%DATADIR%%/themes/default/leftarrow.png
%%DATADIR%%/themes/default/leftright_off.png
%%DATADIR%%/themes/default/leftright_on.png
%%DATADIR%%/themes/default/leftright_pushed.png
%%DATADIR%%/themes/default/mono.png
%%DATADIR%%/themes/default/mw_text_button_off.png
%%DATADIR%%/themes/default/mw_text_button_on.png
%%DATADIR%%/themes/default/mw_text_button_pushed.png
%%DATADIR%%/themes/default/mythdialogbox-background.png
%%DATADIR%%/themes/default/pd-background.png
%%DATADIR%%/themes/default/pf-background.png
%%DATADIR%%/themes/default/pf-lines.png
%%DATADIR%%/themes/default/pf-sel1.png
%%DATADIR%%/themes/default/pf-sel2.png
%%DATADIR%%/themes/default/pf-sel3.png
%%DATADIR%%/themes/default/pf-top.png
%%DATADIR%%/themes/default/preview.png
%%DATADIR%%/themes/default/processing.png
%%DATADIR%%/themes/default/rightarrow.png
%%DATADIR%%/themes/default/rk-lines.png
%%DATADIR%%/themes/default/rk-selectbar.png
%%DATADIR%%/themes/default/scrollarrow-dn.png
%%DATADIR%%/themes/default/scrollarrow-left.png
%%DATADIR%%/themes/default/scrollarrow-right.png
%%DATADIR%%/themes/default/scrollarrow-up.png
%%DATADIR%%/themes/default/selectbar.png
%%DATADIR%%/themes/default/solid-background.png
%%DATADIR%%/themes/default/solid-container.png
%%DATADIR%%/themes/default/solid-cr-background.png
%%DATADIR%%/themes/default/solid-showings.png
%%DATADIR%%/themes/default/solid-titles.png
%%DATADIR%%/themes/default/status-bar.png
%%DATADIR%%/themes/default/status-ui.xml
%%DATADIR%%/themes/default/stereo.png
%%DATADIR%%/themes/default/subs.png
%%DATADIR%%/themes/default/subs_onscreen.png
%%DATADIR%%/themes/default/surround.png
%%DATADIR%%/themes/default/text_button_off.png
%%DATADIR%%/themes/default/text_button_on.png
%%DATADIR%%/themes/default/text_button_pushed.png
%%DATADIR%%/themes/default/topleft.png
%%DATADIR%%/themes/default/trans-background.png
%%DATADIR%%/themes/default/trans-backup.png
%%DATADIR%%/themes/default/trans-container.png
%%DATADIR%%/themes/default/trans-cr-background.png
%%DATADIR%%/themes/default/trans-rk-background.png
%%DATADIR%%/themes/default/trans-showings.png
%%DATADIR%%/themes/default/trans-sr-background.png
%%DATADIR%%/themes/default/trans-titles.png
%%DATADIR%%/themes/default/unchecked.png
%%DATADIR%%/themes/default/unchecked_high.png
%%DATADIR%%/themes/default/uparrow.png
%%DATADIR%%/themes/default/watched.png
%%DATADIR%%/themes/default/welcome-ui.xml
%%DATADIR%%/themes/default/wide.png
%%DATADIR%%/themes/defaultosd/cut-end.png
%%DATADIR%%/themes/defaultosd/cut-start.png
%%DATADIR%%/themes/defaultosd/defaultosd-preview.png
%%DATADIR%%/themes/defaultosd/fill-blue.png
%%DATADIR%%/themes/defaultosd/grey.png
%%DATADIR%%/themes/defaultosd/osd-alert.png
%%DATADIR%%/themes/defaultosd/osd-big.png
%%DATADIR%%/themes/defaultosd/osd-browse.png
%%DATADIR%%/themes/defaultosd/osd-callerid.png
%%DATADIR%%/themes/defaultosd/osd-channel-edit.png
%%DATADIR%%/themes/defaultosd/osd-small.png
%%DATADIR%%/themes/defaultosd/osd.xml
%%DATADIR%%/themes/defaultosd/position-indicator.png
%%DATADIR%%/themes/defaultosd/red.png
%%DATADIR%%/themes/defaultosd/themeinfo.xml
%%DATADIR%%/tv_lists.xml
%%DATADIR%%/tv_schedule.xml
%%DATADIR%%/tv_search.xml
%%DATADIR%%/tv_settings.xml
%%DATADIR%%/tvmenu.xml
%%DATADIR%%/util_menu.xml
@dirrm include/mythtv/upnp/
@dirrm include/mythtv/mpeg2dec/
@dirrm include/mythtv/libmythui/
@dirrm include/mythtv/libmythtv/
@dirrm include/mythtv/libmyth/
@dirrm include/mythtv/ffmpeg
@dirrm include/mythtv/dvdnav
@dirrm include/mythtv
@dirrm lib/mythtv/filters/
@dirrm lib/mythtv/
@dirrm %%DATADIR%%/themes/defaultosd/
@dirrm %%DATADIR%%/themes/default/keyboard/
@dirrm %%DATADIR%%/themes/default/
@dirrm %%DATADIR%%/themes/default-wide/
@dirrm %%DATADIR%%/themes/classic/
@dirrm %%DATADIR%%/themes/blueosd/
@dirrm %%DATADIR%%/themes/blue/
@dirrm %%DATADIR%%/themes/G.A.N.T/watermark/
@dirrm %%DATADIR%%/themes/G.A.N.T/type/
@dirrm %%DATADIR%%/themes/G.A.N.T/title/
@dirrm %%DATADIR%%/themes/G.A.N.T/bkg/
@dirrm %%DATADIR%%/themes/G.A.N.T/
@dirrm %%DATADIR%%/themes/DVR/
@dirrmtry %%DATADIR%%/themes/
@dirrm %%DATADIR%%/i18n/
@dirrmtry %%DATADIR%%