aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--multimedia/mythtv/Makefile44
-rw-r--r--multimedia/mythtv/distinfo5
-rw-r--r--multimedia/mythtv/files/patch-configure54
-rw-r--r--multimedia/mythtv/files/patch-external__FFmpeg__configure31
-rw-r--r--multimedia/mythtv/files/patch-external__FFmpeg__libavcodec__Makefile11
-rw-r--r--multimedia/mythtv/files/patch-libs__libmyth__mythdeque.h49
-rw-r--r--multimedia/mythtv/files/patch-libs__libmythtv__recordingprofile.h11
-rw-r--r--multimedia/mythtv/files/patch-libs__libmythtv__videodev_myth.h39
-rw-r--r--multimedia/mythtv/files/patch-libs__libmythupnp__eventing.h29
-rw-r--r--multimedia/mythtv/pkg-plist908
10 files changed, 845 insertions, 336 deletions
diff --git a/multimedia/mythtv/Makefile b/multimedia/mythtv/Makefile
index a7ae8c8d14a2..795e8c11566b 100644
--- a/multimedia/mythtv/Makefile
+++ b/multimedia/mythtv/Makefile
@@ -7,7 +7,7 @@
# $FreeBSD$
PORTNAME= mythtv
-PORTVERSION= 0.23.1
+PORTVERSION= 0.24
CATEGORIES= multimedia
MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \
http://ftp.osuosl.org/pub/mythtv/old_releases/ \
@@ -19,8 +19,7 @@ COMMENT= MythTV is a homebrew PVR project
LIB_DEPENDS= mp3lame.0:${PORTSDIR}/audio/lame \
freetype.9:${PORTSDIR}/print/freetype2
-BUILD_DEPENDS= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat \
- ${SITE_PERL}/${PERL_ARCH}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-SAX-Expat
+BUILD_DEPENDS= v4l_compat>=1.0.20100321:${PORTSDIR}/multimedia/v4l_compat
RUN_DEPENDS= tv_check:${PORTSDIR}/textproc/p5-xmltv \
wget:${PORTSDIR}/ftp/wget
@@ -30,16 +29,12 @@ ONLY_FOR_ARCHS= i386 amd64
USE_BZIP2= yes
USE_QT_VER= 4
QT_COMPONENTS= gui sql network script linguist_build l10n sql-mysql_run \
- moc_build qmake_build rcc_build uic_build
+ moc_build qmake_build rcc_build uic_build imageformats
QT_NONSTANDARD= yes
USE_MYSQL= 51
USE_GMAKE= yes
HAS_CONFIGURE= yes
USE_PERL= yes
-USE_PYTHON= yes
-INSTALLS_EGGINFO=yes
-PYDISTUTILS_PKGNAME=MythTV
-PYDISTUTILS_PKGVERSION=${PORTVERSION}
USE_LDCONFIG= ${PREFIX}/lib/mythtv/filters
REINPLACE_ARGS= -i ""
USE_RC_SUBR= mythbackend
@@ -55,20 +50,38 @@ CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QT
CONFIGURE_ARGS= --prefix=${PREFIX} --dvb-path=${LOCALBASE}/include \
--extra-cflags=-g --extra-cxxflags=-g --enable-v4l \
- --enable-ivtv --enable-xvmc --disable-xvmcw --disable-xvmc-pro \
- --disable-directfb --enable-glx-procaddrarb
+ --enable-ivtv --enable-xvmc --disable-xvmcw \
+ --disable-directfb --disable-audio-alsa
QMAKESPEC?= ${LOCALBASE}/share/qt4/mkspecs/freebsd-g++
-OPTIONS= LIRC "Native LIRC Support" off \
+OPTIONS= BINDINGS "Perl and Python bindings" off \
+ LIRC "Native LIRC Support" off \
MYSQL_LOCAL "RUN_DEPEND on selected MySQL server" off \
OPENGL "OpenGL support" on \
VDPAU "VDPAU support (nvidia only)" off
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
SUB_FILES= pkg-message
+.if defined(WITH_BINDINGS)
+USE_PYTHON= yes
+INSTALLS_EGGINFO=yes
+PYDISTUTILS_PKGNAME=MythTV
+PYDISTUTILS_PKGVERSION=${PORTVERSION}.0
+
+BUILD_DEPENDS+= py*-lxml>=0:${PORTSDIR}/devel/py-lxml \
+ ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:${PORTSDIR}/databases/py-MySQLdb
+RUN_DEPENDS+= py*-lxml>=0:${PORTSDIR}/devel/py-lxml \
+ ${PYTHON_PKGNAMEPREFIX}MySQLdb>=1.2.2:${PORTSDIR}/databases/py-MySQLdb
+CONFIGURE_ARGS+=--without-bindings=perl
+PLIST_SUB+= BINDINGS=""
+.else
+CONFIGURE_ARGS+=--without-bindings=perl,python
+PLIST_SUB+= BINDINGS="@comment "
+.endif
+
.if defined(WITH_LIRC)
LIB_DEPENDS+= lirc_client.1:${PORTSDIR}/comms/lirc
.endif
@@ -95,15 +108,10 @@ post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/configure \
${WRKSRC}/libs/libmythtv/libmythtv.pro \
- ${WRKSRC}/libs/libavformat/libavformat.pro \
${WRKSRC}/bindings/perl/MythTV/Recording.pm \
${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \
${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
- ${WRKSRC}/contrib/encoding_converting/mythencode/mythencode.pl \
- ${WRKSRC}/contrib/user_jobs/firewire_primer.pl \
- ${WRKSRC}/contrib/user_jobs/mythvidexport.py \
- ${WRKSRC}/contrib/info/mythname/mythname.pl \
${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
post-install:
@@ -111,4 +119,4 @@ post-install:
@${CP} ${WRKSRC}/database/mc.sql ${PREFIX}/share/mythtv/database
@${CAT} ${PKGMESSAGE}
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>
diff --git a/multimedia/mythtv/distinfo b/multimedia/mythtv/distinfo
index 5a7663de065c..3e62ff488323 100644
--- a/multimedia/mythtv/distinfo
+++ b/multimedia/mythtv/distinfo
@@ -1,3 +1,2 @@
-MD5 (mythtv-0.23.1.tar.bz2) = 3379a5fd12ae866cd10c5b5d23439898
-SHA256 (mythtv-0.23.1.tar.bz2) = d228efeba1c547257895b2b403c448619d0c587db5a6d6c1d7585ca07f54b61c
-SIZE (mythtv-0.23.1.tar.bz2) = 26626412
+SHA256 (mythtv-0.24.tar.bz2) = 6370c06df110a6f7954efac1e062560058100fa1fd1f219f327f1daeee84df06
+SIZE (mythtv-0.24.tar.bz2) = 29595590
diff --git a/multimedia/mythtv/files/patch-configure b/multimedia/mythtv/files/patch-configure
index 476f2b1a6362..40981fe8fcd8 100644
--- a/multimedia/mythtv/files/patch-configure
+++ b/multimedia/mythtv/files/patch-configure
@@ -1,31 +1,49 @@
---- configure.orig 2010-03-30 00:09:16.000000000 +0200
-+++ configure 2010-04-06 19:10:20.000000000 +0200
-@@ -666,21 +666,21 @@
+--- configure.orig 2010-11-08 18:40:43.000000000 +0100
++++ configure 2010-11-11 19:23:31.000000000 +0100
+@@ -691,21 +691,21 @@
log check_cc "$@"
cat > $TMPC
log_file $TMPC
-- check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS "$@" -c -o $TMPO $TMPC
-+ check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPC
+- check_cmd $cc $CPPFLAGS $CFLAGS "$@" -c -o $TMPO $TMPC
++ check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPC
}
check_cpp(){
log check_cpp "$@"
cat > $TMPC
log_file $TMPC
-- check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS "$@" -E -o $TMPO $TMPC
-+ check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS -I${prefix}/include "$@" -E -o $TMPO $TMPC
+- check_cmd $cc $CPPFLAGS $CFLAGS "$@" -E -o $TMPO $TMPC
++ check_cmd $cc $CPPFLAGS $CFLAGS -I${prefix}/include "$@" -E -o $TMPO $TMPC
}
check_cxx(){
log check_cxx "$@"
cat > $TMPCXX
log_file $TMPCXX
-- check_cmd $cxx $ECXXFLAGS "$@" -c -o $TMPO $TMPCXX
-+ check_cmd $cxx $ECXXFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPCXX
+- check_cmd $cxx $CXXPPFLAGS $ECXXFLAGS "$@" -c -o $TMPO $TMPCXX
++ check_cmd $cxx $CXXPPFLAGS $ECXXFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPCXX
}
check_as(){
-@@ -2841,7 +2841,6 @@
+@@ -1865,7 +1865,7 @@
+
+ # machine
+ arch_default=$(uname -m)
+-cpu="generic"
++cpu="i686"
+ processor=`uname -p 2>/dev/null`
+ processor_flags=""
+ tune="generic"
+@@ -2826,7 +2826,7 @@
+ i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|k8-sse3|opteron-sse3|athlon64-sse3|core2|amdfam10|barcelona|atom)
+ cpuflags="-march=$cpu"
+ enable cmov
+- enable fast_cmov
++ disable fast_cmov
+ ;;
+ # targets that do support conditional mov but on which it's slow
+ pentium4|pentium4m|prescott|nocona)
+@@ -3026,7 +3026,6 @@
enable malloc_aligned
# Workaround compile errors from missing u_int/uint def
CPPFLAGS=`echo $CPPFLAGS | sed 's/-D_POSIX_C_SOURCE=200112//'`
@@ -33,12 +51,20 @@
enable backend
;;
bsd/os)
-@@ -4581,6 +4580,8 @@
+@@ -4742,6 +4741,8 @@
# directories, it cannot be modified.
- QMAKE_LIBDIR_QT -= $libdir
- LATE_LIBS += -L$libdir
+ QMAKE_LIBDIR_QT-=${sysroot}${libdir}
+ LATE_LIBS+=-L${sysroot}${libdir}
+CONFIG_INCLUDEPATH=
+FREETYPE_CFLAGS -= -I/usr/local/include
EOF
- diff $TMPH $MYTH_CONFIG_H >/dev/null 2>&1
+ #echo "endif # FFMPEG_CONFIG_MAK" >> config.mak
+@@ -4778,6 +4779,7 @@
+ BINDIR=\$(INSTALL_ROOT)$bindir
+ DATADIR=\$(INSTALL_ROOT)$datadir
+ MANDIR=\$(INSTALL_ROOT)$mandir
++CFLAGS+=-I/usr/local/include
+ endif # FFMPEG_CONFIG_MAK
+ EOF
+
diff --git a/multimedia/mythtv/files/patch-external__FFmpeg__configure b/multimedia/mythtv/files/patch-external__FFmpeg__configure
new file mode 100644
index 000000000000..8fe0073fafd3
--- /dev/null
+++ b/multimedia/mythtv/files/patch-external__FFmpeg__configure
@@ -0,0 +1,31 @@
+--- external/FFmpeg/configure.orig 2010-08-23 18:54:20.000000000 +0200
++++ external/FFmpeg/configure 2010-11-01 21:13:19.000000000 +0100
+@@ -1528,8 +1528,8 @@
+ nm_opts='-g'
+
+ # machine
+-arch_default=$(uname -m)
+-cpu="generic"
++arch_default=$(uname -p)
++cpu="i686"
+
+ # OS
+ target_os_default=$(tolower $(uname -s))
+@@ -2108,7 +2108,7 @@
+ i686|pentiumpro|pentium[23]|pentium-m|athlon|athlon-tbird|athlon-4|athlon-[mx]p|athlon64|k8|opteron|athlon-fx|core2|amdfam10|barcelona)
+ cpuflags="-march=$cpu"
+ enable cmov
+- enable fast_cmov
++ disable fast_cmov
+ ;;
+ # targets that do support conditional mov but on which it's slow
+ pentium4|pentium4m|prescott|nocona)
+@@ -3063,7 +3063,7 @@
+ SRC_PATH_BARE=$source_path
+ BUILD_ROOT="$PWD"
+ CC_IDENT=$cc_ident
+-ARCH=$arch
++FFMPEG_ARCH=$arch
+ CC=$cc
+ AS=$as
+ LD=$ld
diff --git a/multimedia/mythtv/files/patch-external__FFmpeg__libavcodec__Makefile b/multimedia/mythtv/files/patch-external__FFmpeg__libavcodec__Makefile
new file mode 100644
index 000000000000..2f3a9b67c3f1
--- /dev/null
+++ b/multimedia/mythtv/files/patch-external__FFmpeg__libavcodec__Makefile
@@ -0,0 +1,11 @@
+--- external/FFmpeg/libavcodec/Makefile.orig 2010-11-01 21:14:42.000000000 +0100
++++ external/FFmpeg/libavcodec/Makefile 2010-11-01 20:30:35.000000000 +0100
+@@ -631,7 +631,7 @@
+ # well.
+ OBJS-$(!CONFIG_SMALL) += inverse.o
+
+--include $(SUBDIR)$(ARCH)/Makefile
++-include $(SUBDIR)x86/Makefile
+
+ SKIPHEADERS = %_tablegen.h
+ SKIPHEADERS-$(CONFIG_DXVA2) += dxva2.h dxva2_internal.h
diff --git a/multimedia/mythtv/files/patch-libs__libmyth__mythdeque.h b/multimedia/mythtv/files/patch-libs__libmyth__mythdeque.h
deleted file mode 100644
index a911b0c9573f..000000000000
--- a/multimedia/mythtv/files/patch-libs__libmyth__mythdeque.h
+++ /dev/null
@@ -1,49 +0,0 @@
---- ./libs/libmyth/mythdeque.h (revision 20349)
-+++ ./libs/libmyth/mythdeque.h (revision 26434)
-@@ -4,6 +4,12 @@
- #define __MYTH_DEQUE_H__
-
-+#include <QString>
- #include <deque>
- using namespace std;
-+
-+template<typename T>
-+inline T myth_deque_init(const T*) { return (T)(0); }
-+template<>
-+inline QString myth_deque_init(const QString*) { return QString(); }
-
- /** \class MythDeque
-@@ -19,6 +25,7 @@
- T dequeue()
- {
-+ T *dummy = NULL;
- if (deque<T>::empty())
-- return (T)(0);
-+ return myth_deque_init(dummy);
- T item = deque<T>::front();
- deque<T>::pop_front();
-@@ -66,14 +73,20 @@
-
- /// \brief Returns item at head of list. O(1).
-- T head() { return (deque<T>::size()) ? deque<T>::front() : (T)(NULL); }
-+ T head()
-+ { if (!deque<T>::empty()) return deque<T>::front();
-+ T *dummy = NULL; return myth_deque_init(dummy); }
- /// \brief Returns item at head of list. O(1).
- const T head() const
-- { return (deque<T>::size()) ? deque<T>::front() : (T)(NULL); }
-+ { if (!deque<T>::empty()) return deque<T>::front();
-+ T *dummy = NULL; return myth_deque_init(dummy); }
-
- /// \brief Returns item at tail of list. O(1).
-- T tail() { return (deque<T>::size()) ? deque<T>::back() : (T)(NULL); }
-+ T tail()
-+ { if (!deque<T>::empty()) return deque<T>::back();
-+ T *dummy = NULL; return myth_deque_init(dummy); }
- /// \brief Returns item at tail of list. O(1).
- const T tail() const
-- { return (deque<T>::size()) ? deque<T>::back() : (T)(NULL); }
-+ { if (!deque<T>::empty()) return deque<T>::back();
-+ T *dummy = NULL; return myth_deque_init(dummy); }
- };
-
diff --git a/multimedia/mythtv/files/patch-libs__libmythtv__recordingprofile.h b/multimedia/mythtv/files/patch-libs__libmythtv__recordingprofile.h
deleted file mode 100644
index ce37bfe29256..000000000000
--- a/multimedia/mythtv/files/patch-libs__libmythtv__recordingprofile.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- ./libs/libmythtv/recordingprofile.h.orig 2009-10-22 03:30:12.000000000 +0400
-+++ ./libs/libmythtv/recordingprofile.h 2010-12-01 23:01:20.247699483 +0300
-@@ -84,7 +84,7 @@
-
- public:
- // initializers
-- RecordingProfile(QString profName = NULL);
-+ RecordingProfile(QString profName = QString());
- virtual void loadByID(int id);
- virtual bool loadByType(const QString &name, const QString &cardtype);
- virtual bool loadByGroup(const QString &name, const QString &group);
diff --git a/multimedia/mythtv/files/patch-libs__libmythtv__videodev_myth.h b/multimedia/mythtv/files/patch-libs__libmythtv__videodev_myth.h
deleted file mode 100644
index 718621d6c57c..000000000000
--- a/multimedia/mythtv/files/patch-libs__libmythtv__videodev_myth.h
+++ /dev/null
@@ -1,39 +0,0 @@
---- libs/libmythtv/videodev_myth.h.orig 2009-07-06 22:42:28.000000000 +0200
-+++ libs/libmythtv/videodev_myth.h 2009-11-15 13:08:20.000000000 +0100
-@@ -11,6 +11,36 @@
- typedef uint8_t __u8;
- typedef uint32_t __u64;
- typedef int32_t __s64; // HACK. Non 64bit FreeBSD kernels require this for ioctls
-+
-+typedef struct fb_var_screeninfo
-+{
-+ int xres;
-+ int yres;
-+ int bits_per_pixel;
-+ int xres_virtual;
-+ int yres_virtual;
-+ int xoffset;
-+ int yoffset;
-+ int nonstd;
-+ int activate;
-+};
-+
-+typedef struct fb_fix_screeninfo
-+{
-+ int smem_start;
-+};
-+
-+#define FB_ACTIVATE_NOW 0
-+
-+#define FBIOBLANK 0
-+#define FBIOGET_FSCREENINFO 0
-+#define FBIOGET_VSCREENINFO 0
-+#define FBIOPAN_DISPLAY 0
-+#define FBIOPUT_VSCREENINFO 0
-+
-+#define VESA_NO_BLANKING 0
-+#define VESA_VSYNC_SUSPEND 0
-+
- #else
- #include <linux/types.h>
- #include <linux/version.h>
diff --git a/multimedia/mythtv/files/patch-libs__libmythupnp__eventing.h b/multimedia/mythtv/files/patch-libs__libmythupnp__eventing.h
deleted file mode 100644
index 72ccc8be963b..000000000000
--- a/multimedia/mythtv/files/patch-libs__libmythupnp__eventing.h
+++ /dev/null
@@ -1,29 +0,0 @@
---- ./libs/libmythupnp/eventing.h (revision 23038)
-+++ ./libs/libmythupnp/eventing.h (revision 26434)
-@@ -174,4 +174,9 @@
- //////////////////////////////////////////////////////////////////////////////
-
-+template<typename T>
-+inline T state_var_init(const T*) { return (T)(0); }
-+template<>
-+inline QString state_var_init(const QString*) { return QString(); }
-+
- class UPNP_PUBLIC StateVariables
- {
-@@ -232,7 +237,8 @@
- T GetValue( const QString &sName )
- {
-+ T *dummy = NULL;
- SVMap::iterator it = m_map.find(sName);
- if (it == m_map.end())
-- return T(0);
-+ return state_var_init(dummy);
-
- StateVariable< T > *pVariable =
-@@ -242,5 +248,5 @@
- return pVariable->GetValue();
-
-- return T(0);
-+ return state_var_init(dummy);
- }
-
diff --git a/multimedia/mythtv/pkg-plist b/multimedia/mythtv/pkg-plist
index 8e066b227e8c..d83c7ba5261f 100644
--- a/multimedia/mythtv/pkg-plist
+++ b/multimedia/mythtv/pkg-plist
@@ -1,4 +1,4 @@
-@comment $FreeBSD: /tmp/pcvs/ports/multimedia/mythtv/pkg-plist,v 1.8 2010-08-06 09:27:41 decke Exp $
+@comment $FreeBSD: /tmp/pcvs/ports/multimedia/mythtv/pkg-plist,v 1.9 2011-01-04 17:45:25 decke Exp $
bin/mythavtest
bin/mythbackend
bin/mythcommflag
@@ -6,15 +6,41 @@ bin/mythfilldatabase
bin/mythfrontend
bin/mythjobqueue
bin/mythlcdserver
-bin/mythpython
+bin/mythpreviewgen
+%%BINDINGS%%bin/mythpython
bin/mythreplex
bin/mythshutdown
bin/mythtranscode
bin/mythtv-setup
bin/mythtvosd
bin/mythwelcome
+%%BINDINGS%%bin/mythwikiscripts
include/mythtv/audiooutput.h
+include/mythtv/audiooutputsettings.h
include/mythtv/audiosettings.h
+include/mythtv/autodeletedeque.h
+include/mythtv/bluray/attributes.h
+include/mythtv/bluray/bdparse.h
+include/mythtv/bluray/bits.h
+include/mythtv/bluray/bluray.h
+include/mythtv/bluray/clpi_parse.h
+include/mythtv/bluray/dl.h
+include/mythtv/bluray/file.h
+include/mythtv/bluray/file_mythiowrapper.h
+include/mythtv/bluray/filesystem.h
+include/mythtv/bluray/hdmv_insn.h
+include/mythtv/bluray/hdmv_vm.h
+include/mythtv/bluray/index_parse.h
+include/mythtv/bluray/log_control.h
+include/mythtv/bluray/logging.h
+include/mythtv/bluray/macro.h
+include/mythtv/bluray/mobj_parse.h
+include/mythtv/bluray/mpls_parse.h
+include/mythtv/bluray/mutex.h
+include/mythtv/bluray/navigation.h
+include/mythtv/bluray/sound_parse.h
+include/mythtv/bluray/strutl.h
+include/mythtv/bluray/uo_mask_table.h
include/mythtv/compat.h
include/mythtv/dbutil.h
include/mythtv/dialogbox.h
@@ -29,28 +55,40 @@ include/mythtv/dvdread/nav_types.h
include/mythtv/exitcodes.h
include/mythtv/generictree.h
include/mythtv/httpcomms.h
+include/mythtv/iso3166.h
+include/mythtv/iso639.h
include/mythtv/langsettings.h
include/mythtv/lcddevice.h
include/mythtv/libavcodec/avcodec.h
+include/mythtv/libavcodec/avfft.h
include/mythtv/libavcodec/dxva2.h
include/mythtv/libavcodec/mmx.h
include/mythtv/libavcodec/opt.h
include/mythtv/libavcodec/vaapi.h
include/mythtv/libavcodec/vdpau.h
include/mythtv/libavcodec/xvmc.h
+include/mythtv/libavcore/avcore.h
+include/mythtv/libavcore/imgutils.h
+include/mythtv/libavcore/parseutils.h
+include/mythtv/libavdevice/avdevice.h
+include/mythtv/libavfilter/avfilter.h
include/mythtv/libavformat/avformat.h
include/mythtv/libavformat/avio.h
-include/mythtv/libavformat/rtp.h
-include/mythtv/libavformat/rtsp.h
-include/mythtv/libavformat/rtspcodes.h
+include/mythtv/libavutil/adler32.h
+include/mythtv/libavutil/attributes.h
include/mythtv/libavutil/avconfig.h
include/mythtv/libavutil/avstring.h
include/mythtv/libavutil/avutil.h
include/mythtv/libavutil/base64.h
+include/mythtv/libavutil/bswap.h
include/mythtv/libavutil/common.h
include/mythtv/libavutil/crc.h
+include/mythtv/libavutil/error.h
+include/mythtv/libavutil/eval.h
include/mythtv/libavutil/fifo.h
include/mythtv/libavutil/intfloat_readwrite.h
+include/mythtv/libavutil/intreadwrite.h
+include/mythtv/libavutil/lfg.h
include/mythtv/libavutil/log.h
include/mythtv/libavutil/lzo.h
include/mythtv/libavutil/mathematics.h
@@ -58,59 +96,77 @@ include/mythtv/libavutil/md5.h
include/mythtv/libavutil/mem.h
include/mythtv/libavutil/pixdesc.h
include/mythtv/libavutil/pixfmt.h
+include/mythtv/libavutil/random_seed.h
include/mythtv/libavutil/rational.h
include/mythtv/libavutil/sha1.h
include/mythtv/libmyth/audiooutput.h
+include/mythtv/libmyth/audiooutputsettings.h
include/mythtv/libmyth/audiosettings.h
+include/mythtv/libmyth/autodeletedeque.h
include/mythtv/libmyth/compat.h
include/mythtv/libmyth/dbutil.h
include/mythtv/libmyth/dialogbox.h
include/mythtv/libmyth/exitcodes.h
include/mythtv/libmyth/generictree.h
include/mythtv/libmyth/httpcomms.h
+include/mythtv/libmyth/iso3166.h
+include/mythtv/libmyth/iso639.h
include/mythtv/libmyth/langsettings.h
include/mythtv/libmyth/lcddevice.h
include/mythtv/libmyth/managedlist.h
include/mythtv/libmyth/mcodecs.h
include/mythtv/libmyth/msocketdevice.h
+include/mythtv/libmyth/mythcdrom.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/mythcorecontext.h
+include/mythtv/libmyth/mythcoreutil.h
include/mythtv/libmyth/mythdb.h
include/mythtv/libmyth/mythdbcon.h
include/mythtv/libmyth/mythdbparams.h
include/mythtv/libmyth/mythdeque.h
include/mythtv/libmyth/mythdialogs.h
include/mythtv/libmyth/mythdirs.h
+include/mythtv/libmyth/mythdownloadmanager.h
include/mythtv/libmyth/mythevent.h
include/mythtv/libmyth/mythexp.h
include/mythtv/libmyth/mythhttppool.h
+include/mythtv/libmyth/mythlocale.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/mythrssmanager.h
include/mythtv/libmyth/mythsocket.h
include/mythtv/libmyth/mythsocket_cb.h
include/mythtv/libmyth/mythstorage.h
+include/mythtv/libmyth/mythsystem.h
include/mythtv/libmyth/mythterminal.h
include/mythtv/libmyth/mythtimer.h
+include/mythtv/libmyth/mythtranslation.h
include/mythtv/libmyth/mythuifilebrowser.h
include/mythtv/libmyth/mythverbose.h
include/mythtv/libmyth/mythversion.h
include/mythtv/libmyth/mythwidgets.h
include/mythtv/libmyth/mythwizard.h
+include/mythtv/libmyth/netgrabbermanager.h
+include/mythtv/libmyth/netutils.h
include/mythtv/libmyth/oldsettings.h
include/mythtv/libmyth/output.h
include/mythtv/libmyth/programinfo.h
+include/mythtv/libmyth/programtypes.h
include/mythtv/libmyth/recordingtypes.h
include/mythtv/libmyth/remotefile.h
include/mythtv/libmyth/remoteutil.h
+include/mythtv/libmyth/rssparse.h
include/mythtv/libmyth/schemawizard.h
include/mythtv/libmyth/settings.h
include/mythtv/libmyth/storagegroup.h
+include/mythtv/libmyth/storagegroupeditor.h
include/mythtv/libmyth/uilistbtntype.h
include/mythtv/libmyth/uitypes.h
include/mythtv/libmyth/util.h
@@ -121,24 +177,33 @@ include/mythtv/libmyth/xmlparse.h
include/mythtv/libmythdb/compat.h
include/mythtv/libmythdb/exitcodes.h
include/mythtv/libmythdb/httpcomms.h
+include/mythtv/libmythdb/iso3166.h
+include/mythtv/libmythdb/iso639.h
include/mythtv/libmythdb/lcddevice.h
include/mythtv/libmythdb/mcodecs.h
include/mythtv/libmythdb/msocketdevice.h
include/mythtv/libmythdb/mythconfig.h
include/mythtv/libmythdb/mythconfig.mak
+include/mythtv/libmythdb/mythcorecontext.h
+include/mythtv/libmythdb/mythcoreutil.h
include/mythtv/libmythdb/mythdb.h
include/mythtv/libmythdb/mythdbcon.h
include/mythtv/libmythdb/mythdbparams.h
include/mythtv/libmythdb/mythdirs.h
+include/mythtv/libmythdb/mythdownloadmanager.h
include/mythtv/libmythdb/mythevent.h
include/mythtv/libmythdb/mythexp.h
+include/mythtv/libmythdb/mythlocale.h
include/mythtv/libmythdb/mythobservable.h
include/mythtv/libmythdb/mythsocket.h
include/mythtv/libmythdb/mythsocket_cb.h
include/mythtv/libmythdb/mythstorage.h
+include/mythtv/libmythdb/mythsystem.h
include/mythtv/libmythdb/mythtimer.h
+include/mythtv/libmythdb/mythtranslation.h
include/mythtv/libmythdb/mythverbose.h
include/mythtv/libmythdb/mythversion.h
+include/mythtv/libmythdb/storagegroup.h
include/mythtv/libmythui/mythdialogbox.h
include/mythtv/libmythui/mythfontproperties.h
include/mythtv/libmythui/mythgenerictree.h
@@ -152,7 +217,6 @@ include/mythtv/libmythui/mythprogressdialog.h
include/mythtv/libmythui/mythrect.h
include/mythtv/libmythui/mythscreenstack.h
include/mythtv/libmythui/mythscreentype.h
-include/mythtv/libmythui/mythsystem.h
include/mythtv/libmythui/myththemebase.h
include/mythtv/libmythui/myththemedmenu.h
include/mythtv/libmythui/mythuibutton.h
@@ -160,6 +224,7 @@ include/mythtv/libmythui/mythuibuttonlist.h
include/mythtv/libmythui/mythuibuttontree.h
include/mythtv/libmythui/mythuicheckbox.h
include/mythtv/libmythui/mythuiclock.h
+include/mythtv/libmythui/mythuieditbar.h
include/mythtv/libmythui/mythuigroup.h
include/mythtv/libmythui/mythuiguidegrid.h
include/mythtv/libmythui/mythuihelper.h
@@ -174,52 +239,80 @@ include/mythtv/libmythui/mythuitype.h
include/mythtv/libmythui/mythuiutils.h
include/mythtv/libmythui/mythuiwebbrowser.h
include/mythtv/libmythui/mythvirtualkeyboard.h
+include/mythtv/libmythui/themeinfo.h
include/mythtv/libmythui/x11colors.h
include/mythtv/libmythui/xmlparsebase.h
+include/mythtv/libpostproc/postprocess.h
include/mythtv/libswscale/swscale.h
include/mythtv/managedlist.h
include/mythtv/mcodecs.h
+include/mythtv/metadata/cleanup.h
+include/mythtv/metadata/dbaccess.h
+include/mythtv/metadata/dirscan.h
+include/mythtv/metadata/globals.h
+include/mythtv/metadata/metadatacommon.h
+include/mythtv/metadata/metadatadownload.h
+include/mythtv/metadata/metadataimagedownload.h
+include/mythtv/metadata/parentalcontrols.h
+include/mythtv/metadata/quicksp.h
+include/mythtv/metadata/videometadata.h
+include/mythtv/metadata/videometadatalistmanager.h
+include/mythtv/metadata/videoscan.h
+include/mythtv/metadata/videoutils.h
include/mythtv/mpeg2dec/mpeg2.h
include/mythtv/msocketdevice.h
+include/mythtv/mythcdrom.h
include/mythtv/mythconfig.h
include/mythtv/mythconfig.mak
include/mythtv/mythconfigdialogs.h
include/mythtv/mythconfiggroups.h
include/mythtv/mythcontext.h
+include/mythtv/mythcorecontext.h
+include/mythtv/mythcoreutil.h
include/mythtv/mythdb.h
include/mythtv/mythdbcon.h
include/mythtv/mythdbparams.h
include/mythtv/mythdeque.h
include/mythtv/mythdialogs.h
include/mythtv/mythdirs.h
+include/mythtv/mythdownloadmanager.h
include/mythtv/mythevent.h
include/mythtv/mythexp.h
include/mythtv/mythhttppool.h
+include/mythtv/mythlocale.h
include/mythtv/mythmedia.h
include/mythtv/mythmediamonitor.h
include/mythtv/mythobservable.h
include/mythtv/mythplugin.h
include/mythtv/mythpluginapi.h
+include/mythtv/mythrssmanager.h
include/mythtv/mythsocket.h
include/mythtv/mythsocket_cb.h
include/mythtv/mythstorage.h
+include/mythtv/mythsystem.h
include/mythtv/mythterminal.h
include/mythtv/mythtimer.h
+include/mythtv/mythtranslation.h
include/mythtv/mythuifilebrowser.h
include/mythtv/mythverbose.h
include/mythtv/mythversion.h
include/mythtv/mythwidgets.h
include/mythtv/mythwizard.h
+include/mythtv/netgrabbermanager.h
+include/mythtv/netutils.h
include/mythtv/oldsettings.h
include/mythtv/output.h
include/mythtv/programinfo.h
+include/mythtv/programtypes.h
include/mythtv/recordingtypes.h
include/mythtv/remotefile.h
include/mythtv/remoteutil.h
+include/mythtv/rssparse.h
include/mythtv/samplerate.h
include/mythtv/schemawizard.h
include/mythtv/settings.h
include/mythtv/storagegroup.h
+include/mythtv/storagegroupeditor.h
include/mythtv/uilistbtntype.h
include/mythtv/uitypes.h
include/mythtv/upnp/broadcast.h
@@ -252,55 +345,122 @@ include/mythtv/virtualkeyboard_qt.h
include/mythtv/visual.h
include/mythtv/volumebase.h
include/mythtv/xmlparse.h
-lib/libmyth-0.23.1.so
-lib/libmyth-0.23.1.so.0
-lib/libmyth-0.23.1.so.0.23
-lib/libmyth-0.23.1.so.0.23.1
-lib/libmythavcodec-0.23.1.so
-lib/libmythavcodec-0.23.1.so.0
-lib/libmythavcodec-0.23.1.so.0.23
-lib/libmythavcodec-0.23.1.so.0.23.1
-lib/libmythavformat-0.23.1.so
-lib/libmythavformat-0.23.1.so.0
-lib/libmythavformat-0.23.1.so.0.23
-lib/libmythavformat-0.23.1.so.0.23.1
-lib/libmythavutil-0.23.1.so
-lib/libmythavutil-0.23.1.so.0
-lib/libmythavutil-0.23.1.so.0.23
-lib/libmythavutil-0.23.1.so.0.23.1
-lib/libmythdb-0.23.1.so
-lib/libmythdb-0.23.1.so.0
-lib/libmythdb-0.23.1.so.0.23
-lib/libmythdb-0.23.1.so.0.23.1
-lib/libmythdvdnav-0.23.1.a
-lib/libmythfreemheg-0.23.1.so
-lib/libmythfreemheg-0.23.1.so.0
-lib/libmythfreemheg-0.23.1.so.0.23
-lib/libmythfreemheg-0.23.1.so.0.23.1
-lib/libmythhdhomerun-0.23.1.so
-lib/libmythhdhomerun-0.23.1.so.0
-lib/libmythhdhomerun-0.23.1.so.0.23
-lib/libmythhdhomerun-0.23.1.so.0.23.1
-lib/libmythlivemedia-0.23.1.so
-lib/libmythlivemedia-0.23.1.so.0
-lib/libmythlivemedia-0.23.1.so.0.23
-lib/libmythlivemedia-0.23.1.so.0.23.1
-lib/libmythswscale-0.23.1.so
-lib/libmythswscale-0.23.1.so.0
-lib/libmythswscale-0.23.1.so.0.23
-lib/libmythswscale-0.23.1.so.0.23.1
-lib/libmythtv-0.23.1.so
-lib/libmythtv-0.23.1.so.0
-lib/libmythtv-0.23.1.so.0.23
-lib/libmythtv-0.23.1.so.0.23.1
-lib/libmythui-0.23.1.so
-lib/libmythui-0.23.1.so.0
-lib/libmythui-0.23.1.so.0.23
-lib/libmythui-0.23.1.so.0.23.1
-lib/libmythupnp-0.23.1.so
-lib/libmythupnp-0.23.1.so.0
-lib/libmythupnp-0.23.1.so.0.23
-lib/libmythupnp-0.23.1.so.0.23.1
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/__init__.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/__init__.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/altdict.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/altdict.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/connections.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/connections.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/database.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/database.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/dataheap.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/dataheap.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/exceptions.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/exceptions.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/logging.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/logging.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/methodheap.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/methodheap.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/msearch.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/msearch.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/mythproto.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/mythproto.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/static.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/static.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/system.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/system.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT/tmdbQuery.xsl
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT/tmdbVideo.xsl
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/XSLT/tvdbQuery.xsl
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/XSLT/tvdbVideo.xsl
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/__init__.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/__init__.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/cache.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/cache.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdbXslt.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdbXslt.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_api.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_api.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_exceptions.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_exceptions.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_ui.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_ui.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/utility.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/utility.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/wikiscripts/__init__.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/wikiscripts/__init__.pyc
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/wikiscripts/wikiscripts.py
+%%BINDINGS%%%%PYTHON_SITELIBDIR%%/MythTV/wikiscripts/wikiscripts.pyc
+lib/libmyth-0.24.so
+lib/libmyth-0.24.so.0
+lib/libmyth-0.24.so.0.24
+lib/libmyth-0.24.so.0.24.0
+lib/libmythavcodec.so
+lib/libmythavcodec.so.52
+lib/libmythavcodec.so.52.86.1
+lib/libmythavcore.so
+lib/libmythavcore.so.0
+lib/libmythavcore.so.0.6.0
+lib/libmythavdevice.so
+lib/libmythavdevice.so.52
+lib/libmythavdevice.so.52.2.1
+lib/libmythavfilter.so
+lib/libmythavfilter.so.1
+lib/libmythavfilter.so.1.37.0
+lib/libmythavformat.so
+lib/libmythavformat.so.52
+lib/libmythavformat.so.52.78.3
+lib/libmythavutil.so
+lib/libmythavutil.so.50
+lib/libmythavutil.so.50.24.0
+lib/libmythbluray-0.24.a
+lib/libmythdb-0.24.so
+lib/libmythdb-0.24.so.0
+lib/libmythdb-0.24.so.0.24
+lib/libmythdb-0.24.so.0.24.0
+lib/libmythdvdnav-0.24.a
+lib/libmythfreemheg-0.24.so
+lib/libmythfreemheg-0.24.so.0
+lib/libmythfreemheg-0.24.so.0.24
+lib/libmythfreemheg-0.24.so.0.24.0
+lib/libmythhdhomerun-0.24.so
+lib/libmythhdhomerun-0.24.so.0
+lib/libmythhdhomerun-0.24.so.0.24
+lib/libmythhdhomerun-0.24.so.0.24.0
+lib/libmythlivemedia-0.24.so
+lib/libmythlivemedia-0.24.so.0
+lib/libmythlivemedia-0.24.so.0.24
+lib/libmythlivemedia-0.24.so.0.24.0
+lib/libmythmetadata-0.24.so
+lib/libmythmetadata-0.24.so.0
+lib/libmythmetadata-0.24.so.0.24
+lib/libmythmetadata-0.24.so.0.24.0
+lib/libmythpostproc.so
+lib/libmythpostproc.so.51
+lib/libmythpostproc.so.51.2.0
+lib/libmythswscale.so
+lib/libmythswscale.so.0
+lib/libmythswscale.so.0.11.0
+lib/libmythtv-0.24.so
+lib/libmythtv-0.24.so.0
+lib/libmythtv-0.24.so.0.24
+lib/libmythtv-0.24.so.0.24.0
+lib/libmythui-0.24.so
+lib/libmythui-0.24.so.0
+lib/libmythui-0.24.so.0.24
+lib/libmythui-0.24.so.0.24.0
+lib/libmythupnp-0.24.so
+lib/libmythupnp-0.24.so.0
+lib/libmythupnp-0.24.so.0.24
+lib/libmythupnp-0.24.so.0.24.0
lib/mythtv/filters/libadjust.so
lib/mythtv/filters/libbobdeint.so
lib/mythtv/filters/libcrop.so
@@ -313,27 +473,31 @@ lib/mythtv/filters/libivtc.so
lib/mythtv/filters/libkerneldeint.so
lib/mythtv/filters/liblinearblend.so
lib/mythtv/filters/libonefield.so
+lib/mythtv/filters/libpostprocess.so
lib/mythtv/filters/libquickdnr.so
lib/mythtv/filters/libyadif.so
-%%DATADIR%%/devicemaster.xml
-%%DATADIR%%/deviceslave.xml
-%%DATADIR%%/mythconverg_backup.pl
-%%DATADIR%%/mythconverg_restore.pl
-%%DATADIR%%/setup.xml
%%DATADIR%%/CDS_scpd.xml
%%DATADIR%%/CMGR_scpd.xml
-%%DATADIR%%/FreeMono.ttf
-%%DATADIR%%/FreeSans.ttf
-%%DATADIR%%/FreeSansBold.ttf
%%DATADIR%%/MFEXML_scpd.xml
%%DATADIR%%/MSRR_scpd.xml
%%DATADIR%%/MXML_scpd.xml
%%DATADIR%%/database/mc.sql
+%%DATADIR%%/devicemaster.xml
+%%DATADIR%%/deviceslave.xml
+%%DATADIR%%/fonts/FreeMono.ttf
+%%DATADIR%%/fonts/FreeSans.ttf
+%%DATADIR%%/fonts/FreeSansBold.ttf
+%%DATADIR%%/fonts/Tiresias Infofont Bold.ttf
+%%DATADIR%%/fonts/Tiresias Infofont Italic.ttf
+%%DATADIR%%/fonts/Tiresias Infofont.ttf
+%%DATADIR%%/fonts/tiresias_gpl3.txt
+%%DATADIR%%/i18n/mythfrontend_bg.qm
%%DATADIR%%/i18n/mythfrontend_ca.qm
%%DATADIR%%/i18n/mythfrontend_cs.qm
%%DATADIR%%/i18n/mythfrontend_da.qm
%%DATADIR%%/i18n/mythfrontend_de.qm
%%DATADIR%%/i18n/mythfrontend_el.qm
+%%DATADIR%%/i18n/mythfrontend_en_ca.qm
%%DATADIR%%/i18n/mythfrontend_en_gb.qm
%%DATADIR%%/i18n/mythfrontend_en_us.qm
%%DATADIR%%/i18n/mythfrontend_es.qm
@@ -354,27 +518,167 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/i18n/mythfrontend_sl.qm
%%DATADIR%%/i18n/mythfrontend_sv.qm
%%DATADIR%%/i18n/mythfrontend_tr.qm
-%%DATADIR%%/themes/BlackCurves-OSD/BlackCurves-preview.png
-%%DATADIR%%/themes/BlackCurves-OSD/COPYING
-%%DATADIR%%/themes/BlackCurves-OSD/DejaVuSans.ttf
-%%DATADIR%%/themes/BlackCurves-OSD/cut_point.png
-%%DATADIR%%/themes/BlackCurves-OSD/fill_green.png
-%%DATADIR%%/themes/BlackCurves-OSD/fill_red.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd.xml
-%%DATADIR%%/themes/BlackCurves-OSD/osd_browse_info.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_channel_editor.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_channel_number.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_notify.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_popup.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_program_info.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_scroll.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_settings.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_status.png
-%%DATADIR%%/themes/BlackCurves-OSD/osd_status_frame.png
-%%DATADIR%%/themes/BlackCurves-OSD/phone.png
-%%DATADIR%%/themes/BlackCurves-OSD/position_marker.png
-%%DATADIR%%/themes/BlackCurves-OSD/select.png
-%%DATADIR%%/themes/BlackCurves-OSD/themeinfo.xml
+%%DATADIR%%/internetcontent/bbciplayer.py
+%%DATADIR%%/internetcontent/bliptv.py
+%%DATADIR%%/internetcontent/comedycentral.py
+%%DATADIR%%/internetcontent/dailymotion.py
+%%DATADIR%%/internetcontent/hulu.py
+%%DATADIR%%/internetcontent/mnvsearch.py
+%%DATADIR%%/internetcontent/mtv.py
+%%DATADIR%%/internetcontent/nature.py
+%%DATADIR%%/internetcontent/nv_perl_libs/mnvcommonsubs.pm
+%%DATADIR%%/internetcontent/nv_python_libs/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/bbciplayer/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/bbciplayer/bbciplayer_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/bbciplayer/bbciplayer_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/bliptv/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/bliptv/bliptv_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/bliptv/bliptv_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/common/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/common/common_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/common/common_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/bbciplayer.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/bliptv.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/cinemarv.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/comedycentral.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/hubble.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/mevio.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/nasa.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/pbs.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/spitzer.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/thewb.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/tributeca.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/HTML/youtube.html
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/bbc_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/customeHtmlPageList.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/bbciplayer.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/comedycentralMashup.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/hulu.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/mnvMashupsConfig.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/natureMashup.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/spaceMashup.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/technologyMashup.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/tedtalks.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/thewb.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/trailersMashup.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs/README
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/hulu_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/mashups_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/pbs_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/rev3_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/tedtalks_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XML/thewb_config.xml
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/bleedingedgeRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/bliptvRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/chandraRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/chrisPirilloRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/cinemarvRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/cnetRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/comedycentralRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/crankygeeksRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/dailyappRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/discoveryNowRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/divefilmRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/earthtouchRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/ecogeeksRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/howcastRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/hubblecastRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/jplRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/linuxActionRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/macmostRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/nasaRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/pbsRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/pbsUser_config.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/revision3RSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/skyAtNightRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/spitzerRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/tedtalksHTML_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/tedtalksRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/terraRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/traileraddictRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/tributecaHTML_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/youtubeRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT/youtubeTrailersRSS_item.xsl
+%%DATADIR%%/internetcontent/nv_python_libs/dailymotion/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/dailymotion/dailymotion_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/dailymotion/dailymotion_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/hulu/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/hulu/hulu_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/hulu/hulu_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/mainProcess.py
+%%DATADIR%%/internetcontent/nv_python_libs/mashups/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/mashups/mashups_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/mashups/mashups_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/mnvsearch/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/mnvsearch/mnvsearch_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/mnvsearch/mnvsearch_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/mtv/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/mtv/mtv_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/mtv/mtv_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/pbs/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/pbs/pbs_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/pbs/pbs_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/rev3/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/rev3/rev3_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/rev3/rev3_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/tedtalks/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/tedtalks/tedtalks_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/tedtalks/tedtalks_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/thewb/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/thewb/thewb_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/thewb/thewb_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/oauth/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/oauth/oauth_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/vimeo_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/vimeo_data.pyc
+%%DATADIR%%/internetcontent/nv_python_libs/vimeo/vimeo_exceptions.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/bliptvXSL_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/chrisPirillo_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/cinemarv_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/comedycentral_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/hubbleCast_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/linuxAction_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/mevio_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/nasa_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/pbsXSL_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/revision3XSL_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/skyAtNight_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/spitzer_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/tedtalksXSL_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/traileraddicts_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/tributeca_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions/youtubeXSL_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/youtube/__init__.py
+%%DATADIR%%/internetcontent/nv_python_libs/youtube/youtube_api.py
+%%DATADIR%%/internetcontent/nv_python_libs/youtube/youtube_exceptions.py
+%%DATADIR%%/internetcontent/pbs.py
+%%DATADIR%%/internetcontent/rev3.py
+%%DATADIR%%/internetcontent/space.py
+%%DATADIR%%/internetcontent/technology.py
+%%DATADIR%%/internetcontent/tedtalks.py
+%%DATADIR%%/internetcontent/thewb.py
+%%DATADIR%%/internetcontent/topdocumentaryfilm.pl
+%%DATADIR%%/internetcontent/trailers.py
+%%DATADIR%%/internetcontent/twit.tv.pl
+%%DATADIR%%/internetcontent/vimeo.py
+%%DATADIR%%/internetcontent/youtube.py
+%%DATADIR%%/locales/da_dk.xml
+%%DATADIR%%/locales/de_de.xml
+%%DATADIR%%/locales/en_ca.xml
+%%DATADIR%%/locales/en_gb.xml
+%%DATADIR%%/locales/en_us.xml
+%%DATADIR%%/locales/et_ee.xml
+%%DATADIR%%/locales/fr_ca.xml
+%%DATADIR%%/locales/fr_fr.xml
+%%DATADIR%%/locales/nb_no.xml
+%%DATADIR%%/locales/ru_ru.xml
+%%DATADIR%%/metadata/Movie/tmdb.py
+%%DATADIR%%/metadata/Television/ttvdb.py
+%%DATADIR%%/mythconverg_backup.pl
+%%DATADIR%%/mythconverg_restore.pl
+%%DATADIR%%/setup.xml
%%DATADIR%%/themes/DVR/dvr-preview.png
%%DATADIR%%/themes/DVR/main_settings.xml
%%DATADIR%%/themes/DVR/mainmenu.xml
@@ -386,25 +690,6 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/DVR/tv_settings.xml
%%DATADIR%%/themes/DVR/tvmenu.xml
%%DATADIR%%/themes/DVR/util_menu.xml
-%%DATADIR%%/themes/Gray-OSD/DejaVuSans-Bold.ttf
-%%DATADIR%%/themes/Gray-OSD/DejaVuSans-Oblique.ttf
-%%DATADIR%%/themes/Gray-OSD/DejaVuSans.ttf
-%%DATADIR%%/themes/Gray-OSD/cut_end.png
-%%DATADIR%%/themes/Gray-OSD/cut_start.png
-%%DATADIR%%/themes/Gray-OSD/fill_green.png
-%%DATADIR%%/themes/Gray-OSD/fill_red.png
-%%DATADIR%%/themes/Gray-OSD/gray-osd-preview.png
-%%DATADIR%%/themes/Gray-OSD/osd-bar-mid.png
-%%DATADIR%%/themes/Gray-OSD/osd-channel-edit.png
-%%DATADIR%%/themes/Gray-OSD/osd-editmode.png
-%%DATADIR%%/themes/Gray-OSD/osd-notify.png
-%%DATADIR%%/themes/Gray-OSD/osd-small.png
-%%DATADIR%%/themes/Gray-OSD/osd.xml
-%%DATADIR%%/themes/Gray-OSD/popup.png
-%%DATADIR%%/themes/Gray-OSD/position_marker.png
-%%DATADIR%%/themes/Gray-OSD/selector.png
-%%DATADIR%%/themes/Gray-OSD/slider_frame.png
-%%DATADIR%%/themes/Gray-OSD/themeinfo.xml
%%DATADIR%%/themes/MythCenter-wide/README
%%DATADIR%%/themes/MythCenter-wide/appear-ui.xml
%%DATADIR%%/themes/MythCenter-wide/base.xml
@@ -413,7 +698,22 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page1.html
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page2.html
%%DATADIR%%/themes/MythCenter-wide/menu-ui.xml
-%%DATADIR%%/themes/MythCenter-wide/preview.jpg
+%%DATADIR%%/themes/MythCenter-wide/osd.xml
+%%DATADIR%%/themes/MythCenter-wide/osd/bd.png
+%%DATADIR%%/themes/MythCenter-wide/osd/dvd.png
+%%DATADIR%%/themes/MythCenter-wide/osd/info.png
+%%DATADIR%%/themes/MythCenter-wide/osd/input.png
+%%DATADIR%%/themes/MythCenter-wide/osd/message.png
+%%DATADIR%%/themes/MythCenter-wide/osd/prog_bot.png
+%%DATADIR%%/themes/MythCenter-wide/osd/prog_top.png
+%%DATADIR%%/themes/MythCenter-wide/osd/progressbar_bg.png
+%%DATADIR%%/themes/MythCenter-wide/osd/progressbar_cut.png
+%%DATADIR%%/themes/MythCenter-wide/osd/progressbar_fill.png
+%%DATADIR%%/themes/MythCenter-wide/osd/recording.png
+%%DATADIR%%/themes/MythCenter-wide/osd/sd.png
+%%DATADIR%%/themes/MythCenter-wide/osd/tv.png
+%%DATADIR%%/themes/MythCenter-wide/osd/video.png
+%%DATADIR%%/themes/MythCenter-wide/preview.png
%%DATADIR%%/themes/MythCenter-wide/qtlook.txt
%%DATADIR%%/themes/MythCenter-wide/recordings-ui.xml
%%DATADIR%%/themes/MythCenter-wide/schedule-ui.xml
@@ -443,6 +743,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter-wide/ui/horizon.png
%%DATADIR%%/themes/MythCenter-wide/ui/mythtv_logo.png
%%DATADIR%%/themes/MythCenter-wide/ui/up.png
+%%DATADIR%%/themes/MythCenter-wide/video-ui.xml
%%DATADIR%%/themes/MythCenter-wide/watermark/alarmclock.png
%%DATADIR%%/themes/MythCenter-wide/watermark/appearance.png
%%DATADIR%%/themes/MythCenter-wide/watermark/big_arrow_down.png
@@ -488,6 +789,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter-wide/watermark/weather.png
%%DATADIR%%/themes/MythCenter-wide/watermark/zoneminder.png
%%DATADIR%%/themes/MythCenter-wide/welcome-ui.xml
+%%DATADIR%%/themes/MythCenter-wide/zoneminder-ui.xml
%%DATADIR%%/themes/MythCenter/README
%%DATADIR%%/themes/MythCenter/base.xml
%%DATADIR%%/themes/MythCenter/cr-lines.png
@@ -495,7 +797,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter/htmls/progdetails_page1.html
%%DATADIR%%/themes/MythCenter/htmls/progdetails_page2.html
%%DATADIR%%/themes/MythCenter/menu-ui.xml
-%%DATADIR%%/themes/MythCenter/preview.jpg
+%%DATADIR%%/themes/MythCenter/osd.xml
+%%DATADIR%%/themes/MythCenter/preview.png
%%DATADIR%%/themes/MythCenter/qtlook.txt
%%DATADIR%%/themes/MythCenter/recordings-ui.xml
%%DATADIR%%/themes/MythCenter/schedule-ui.xml
@@ -601,8 +904,15 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/menu/menubackground.png
%%DATADIR%%/themes/Terra/menu/menuframe.png
%%DATADIR%%/themes/Terra/music-ui.xml
+%%DATADIR%%/themes/Terra/music/miniplayer_pauseicon.png
+%%DATADIR%%/themes/Terra/music/miniplayer_playicon.png
+%%DATADIR%%/themes/Terra/music/miniplayer_stopicon.png
%%DATADIR%%/themes/Terra/netvision-ui.xml
%%DATADIR%%/themes/Terra/news-ui.xml
+%%DATADIR%%/themes/Terra/osd.xml
+%%DATADIR%%/themes/Terra/osd/editorbackground.png
+%%DATADIR%%/themes/Terra/osd/infobackground.png
+%%DATADIR%%/themes/Terra/osd/messagebackground.png
%%DATADIR%%/themes/Terra/popups/alt_menu_background.png
%%DATADIR%%/themes/Terra/popups/busy/busy_0.png
%%DATADIR%%/themes/Terra/popups/busy/busy_1.png
@@ -635,6 +945,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/popups/busy/busy_8.png
%%DATADIR%%/themes/Terra/popups/busy/busy_9.png
%%DATADIR%%/themes/Terra/popups/confirmation_background.png
+%%DATADIR%%/themes/Terra/popups/edit_background.png
%%DATADIR%%/themes/Terra/popups/largemenubackground.png
%%DATADIR%%/themes/Terra/popups/menu_background.png
%%DATADIR%%/themes/Terra/popups/menu_button.png
@@ -689,6 +1000,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/shared/bronze_star.png
%%DATADIR%%/themes/Terra/shared/cross.png
%%DATADIR%%/themes/Terra/shared/directory.png
+%%DATADIR%%/themes/Terra/shared/disabled.png
+%%DATADIR%%/themes/Terra/shared/error.png
%%DATADIR%%/themes/Terra/shared/gold_star.png
%%DATADIR%%/themes/Terra/shared/horizlist_internal_left_arrow.png
%%DATADIR%%/themes/Terra/shared/horizlist_internal_right_arrow.png
@@ -709,19 +1022,26 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/shared/list_left_arrow.png
%%DATADIR%%/themes/Terra/shared/list_right_arrow.png
%%DATADIR%%/themes/Terra/shared/list_up_arrow.png
+%%DATADIR%%/themes/Terra/shared/normal.png
%%DATADIR%%/themes/Terra/shared/playlist.png
+%%DATADIR%%/themes/Terra/shared/running.png
+%%DATADIR%%/themes/Terra/shared/selected_disabled.png
+%%DATADIR%%/themes/Terra/shared/selected_error.png
+%%DATADIR%%/themes/Terra/shared/selected_normal.png
+%%DATADIR%%/themes/Terra/shared/selected_running.png
%%DATADIR%%/themes/Terra/shared/selected_state_mask.png
+%%DATADIR%%/themes/Terra/shared/selected_warning.png
%%DATADIR%%/themes/Terra/shared/silver_star.png
%%DATADIR%%/themes/Terra/shared/super_gold_star.png
%%DATADIR%%/themes/Terra/shared/tick.png
%%DATADIR%%/themes/Terra/shared/updirectory.png
+%%DATADIR%%/themes/Terra/shared/warning.png
%%DATADIR%%/themes/Terra/shared/watched.png
%%DATADIR%%/themes/Terra/status-ui.xml
%%DATADIR%%/themes/Terra/themeinfo.xml
%%DATADIR%%/themes/Terra/video-ui.xml
%%DATADIR%%/themes/Terra/video/browserlistbackground.png
%%DATADIR%%/themes/Terra/video/browserlistframe.png
-%%DATADIR%%/themes/Terra/video/filters_background.png
%%DATADIR%%/themes/Terra/video/info_background.png
%%DATADIR%%/themes/Terra/video/info_poster_mask.png
%%DATADIR%%/themes/Terra/video/managerlistbackground.png
@@ -812,6 +1132,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default-wide/def-ro-lines.png
%%DATADIR%%/themes/default-wide/filler.png
%%DATADIR%%/themes/default-wide/md_progress_background.png
+%%DATADIR%%/themes/default-wide/osd.xml
%%DATADIR%%/themes/default-wide/pd-background.png
%%DATADIR%%/themes/default-wide/pf-background.png
%%DATADIR%%/themes/default-wide/pf-lines.png
@@ -940,8 +1261,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/keyboard/de_ui.xml
%%DATADIR%%/themes/default/keyboard/dk.xml
%%DATADIR%%/themes/default/keyboard/dk_ui.xml
-%%DATADIR%%/themes/default/keyboard/en_uk.xml
-%%DATADIR%%/themes/default/keyboard/en_uk_ui.xml
+%%DATADIR%%/themes/default/keyboard/en_gb.xml
+%%DATADIR%%/themes/default/keyboard/en_gb_ui.xml
%%DATADIR%%/themes/default/keyboard/en_us.xml
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
%%DATADIR%%/themes/default/keyboard/es.xml
@@ -1015,10 +1336,257 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/leftright_off.png
%%DATADIR%%/themes/default/leftright_on.png
%%DATADIR%%/themes/default/leftright_pushed.png
+%%DATADIR%%/themes/default/locale/ad.png
+%%DATADIR%%/themes/default/locale/ae.png
+%%DATADIR%%/themes/default/locale/af.png
+%%DATADIR%%/themes/default/locale/ag.png
+%%DATADIR%%/themes/default/locale/ai.png
+%%DATADIR%%/themes/default/locale/al.png
+%%DATADIR%%/themes/default/locale/am.png
+%%DATADIR%%/themes/default/locale/an.png
+%%DATADIR%%/themes/default/locale/ao.png
+%%DATADIR%%/themes/default/locale/ar.png
+%%DATADIR%%/themes/default/locale/as.png
+%%DATADIR%%/themes/default/locale/at.png
+%%DATADIR%%/themes/default/locale/au.png
+%%DATADIR%%/themes/default/locale/aw.png
+%%DATADIR%%/themes/default/locale/ax.png
+%%DATADIR%%/themes/default/locale/az.png
+%%DATADIR%%/themes/default/locale/ba.png
+%%DATADIR%%/themes/default/locale/bb.png
+%%DATADIR%%/themes/default/locale/bd.png
+%%DATADIR%%/themes/default/locale/be.png
+%%DATADIR%%/themes/default/locale/bf.png
+%%DATADIR%%/themes/default/locale/bg.png
+%%DATADIR%%/themes/default/locale/bh.png
+%%DATADIR%%/themes/default/locale/bi.png
+%%DATADIR%%/themes/default/locale/bj.png
+%%DATADIR%%/themes/default/locale/bl.png
+%%DATADIR%%/themes/default/locale/bm.png
+%%DATADIR%%/themes/default/locale/bn.png
+%%DATADIR%%/themes/default/locale/bo.png
+%%DATADIR%%/themes/default/locale/br.png
+%%DATADIR%%/themes/default/locale/bs.png
+%%DATADIR%%/themes/default/locale/bt.png
+%%DATADIR%%/themes/default/locale/bv.png
+%%DATADIR%%/themes/default/locale/bw.png
+%%DATADIR%%/themes/default/locale/by.png
+%%DATADIR%%/themes/default/locale/bz.png
+%%DATADIR%%/themes/default/locale/ca.png
+%%DATADIR%%/themes/default/locale/cc.png
+%%DATADIR%%/themes/default/locale/cd.png
+%%DATADIR%%/themes/default/locale/cf.png
+%%DATADIR%%/themes/default/locale/cg.png
+%%DATADIR%%/themes/default/locale/ch.png
+%%DATADIR%%/themes/default/locale/ci.png
+%%DATADIR%%/themes/default/locale/ck.png
+%%DATADIR%%/themes/default/locale/cl.png
+%%DATADIR%%/themes/default/locale/cm.png
+%%DATADIR%%/themes/default/locale/cn.png
+%%DATADIR%%/themes/default/locale/co.png
+%%DATADIR%%/themes/default/locale/cr.png
+%%DATADIR%%/themes/default/locale/cu.png
+%%DATADIR%%/themes/default/locale/cv.png
+%%DATADIR%%/themes/default/locale/cx.png
+%%DATADIR%%/themes/default/locale/cy.png
+%%DATADIR%%/themes/default/locale/cz.png
+%%DATADIR%%/themes/default/locale/de.png
+%%DATADIR%%/themes/default/locale/dj.png
+%%DATADIR%%/themes/default/locale/dk.png
+%%DATADIR%%/themes/default/locale/dm.png
+%%DATADIR%%/themes/default/locale/do.png
+%%DATADIR%%/themes/default/locale/dz.png
+%%DATADIR%%/themes/default/locale/ec.png
+%%DATADIR%%/themes/default/locale/ee.png
+%%DATADIR%%/themes/default/locale/eg.png
+%%DATADIR%%/themes/default/locale/eng.png
+%%DATADIR%%/themes/default/locale/er.png
+%%DATADIR%%/themes/default/locale/es.png
+%%DATADIR%%/themes/default/locale/et.png
+%%DATADIR%%/themes/default/locale/fi.png
+%%DATADIR%%/themes/default/locale/fj.png
+%%DATADIR%%/themes/default/locale/fk.png
+%%DATADIR%%/themes/default/locale/fm.png
+%%DATADIR%%/themes/default/locale/fo.png
+%%DATADIR%%/themes/default/locale/fr.png
+%%DATADIR%%/themes/default/locale/ga.png
+%%DATADIR%%/themes/default/locale/gb.png
+%%DATADIR%%/themes/default/locale/gd.png
+%%DATADIR%%/themes/default/locale/ge.png
+%%DATADIR%%/themes/default/locale/gf.png
+%%DATADIR%%/themes/default/locale/gg.png
+%%DATADIR%%/themes/default/locale/gh.png
+%%DATADIR%%/themes/default/locale/gi.png
+%%DATADIR%%/themes/default/locale/gl.png
+%%DATADIR%%/themes/default/locale/gm.png
+%%DATADIR%%/themes/default/locale/gn.png
+%%DATADIR%%/themes/default/locale/gp.png
+%%DATADIR%%/themes/default/locale/gq.png
+%%DATADIR%%/themes/default/locale/gr.png
+%%DATADIR%%/themes/default/locale/gs.png
+%%DATADIR%%/themes/default/locale/gt.png
+%%DATADIR%%/themes/default/locale/gu.png
+%%DATADIR%%/themes/default/locale/gw.png
+%%DATADIR%%/themes/default/locale/gy.png
+%%DATADIR%%/themes/default/locale/hk.png
+%%DATADIR%%/themes/default/locale/hn.png
+%%DATADIR%%/themes/default/locale/hr.png
+%%DATADIR%%/themes/default/locale/ht.png
+%%DATADIR%%/themes/default/locale/hu.png
+%%DATADIR%%/themes/default/locale/id.png
+%%DATADIR%%/themes/default/locale/ie.png
+%%DATADIR%%/themes/default/locale/il.png
+%%DATADIR%%/themes/default/locale/im.png
+%%DATADIR%%/themes/default/locale/in.png
+%%DATADIR%%/themes/default/locale/io.png
+%%DATADIR%%/themes/default/locale/iq.png
+%%DATADIR%%/themes/default/locale/ir.png
+%%DATADIR%%/themes/default/locale/is.png
+%%DATADIR%%/themes/default/locale/it.png
+%%DATADIR%%/themes/default/locale/je.png
+%%DATADIR%%/themes/default/locale/jm.png
+%%DATADIR%%/themes/default/locale/jo.png
+%%DATADIR%%/themes/default/locale/jp.png
+%%DATADIR%%/themes/default/locale/ke.png
+%%DATADIR%%/themes/default/locale/kg.png
+%%DATADIR%%/themes/default/locale/kh.png
+%%DATADIR%%/themes/default/locale/ki.png
+%%DATADIR%%/themes/default/locale/km.png
+%%DATADIR%%/themes/default/locale/kn.png
+%%DATADIR%%/themes/default/locale/kp.png
+%%DATADIR%%/themes/default/locale/kr.png
+%%DATADIR%%/themes/default/locale/kw.png
+%%DATADIR%%/themes/default/locale/ky.png
+%%DATADIR%%/themes/default/locale/kz.png
+%%DATADIR%%/themes/default/locale/la.png
+%%DATADIR%%/themes/default/locale/lb.png
+%%DATADIR%%/themes/default/locale/lc.png
+%%DATADIR%%/themes/default/locale/li.png
+%%DATADIR%%/themes/default/locale/lk.png
+%%DATADIR%%/themes/default/locale/lr.png
+%%DATADIR%%/themes/default/locale/ls.png
+%%DATADIR%%/themes/default/locale/lt.png
+%%DATADIR%%/themes/default/locale/lu.png
+%%DATADIR%%/themes/default/locale/lv.png
+%%DATADIR%%/themes/default/locale/ly.png
+%%DATADIR%%/themes/default/locale/ma.png
+%%DATADIR%%/themes/default/locale/mc.png
+%%DATADIR%%/themes/default/locale/md.png
+%%DATADIR%%/themes/default/locale/me.png
+%%DATADIR%%/themes/default/locale/mf.png
+%%DATADIR%%/themes/default/locale/mg.png
+%%DATADIR%%/themes/default/locale/mh.png
+%%DATADIR%%/themes/default/locale/mk.png
+%%DATADIR%%/themes/default/locale/ml.png
+%%DATADIR%%/themes/default/locale/mm.png
+%%DATADIR%%/themes/default/locale/mn.png
+%%DATADIR%%/themes/default/locale/mo.png
+%%DATADIR%%/themes/default/locale/mp.png
+%%DATADIR%%/themes/default/locale/mq.png
+%%DATADIR%%/themes/default/locale/mr.png
+%%DATADIR%%/themes/default/locale/ms.png
+%%DATADIR%%/themes/default/locale/mt.png
+%%DATADIR%%/themes/default/locale/mu.png
+%%DATADIR%%/themes/default/locale/mv.png
+%%DATADIR%%/themes/default/locale/mw.png
+%%DATADIR%%/themes/default/locale/mx.png
+%%DATADIR%%/themes/default/locale/my.png
+%%DATADIR%%/themes/default/locale/mz.png
+%%DATADIR%%/themes/default/locale/na.png
+%%DATADIR%%/themes/default/locale/nc.png
+%%DATADIR%%/themes/default/locale/ne.png
+%%DATADIR%%/themes/default/locale/nf.png
+%%DATADIR%%/themes/default/locale/ng.png
+%%DATADIR%%/themes/default/locale/ni.png
+%%DATADIR%%/themes/default/locale/nl.png
+%%DATADIR%%/themes/default/locale/no.png
+%%DATADIR%%/themes/default/locale/np.png
+%%DATADIR%%/themes/default/locale/nr.png
+%%DATADIR%%/themes/default/locale/nu.png
+%%DATADIR%%/themes/default/locale/nz.png
+%%DATADIR%%/themes/default/locale/om.png
+%%DATADIR%%/themes/default/locale/pa.png
+%%DATADIR%%/themes/default/locale/pe.png
+%%DATADIR%%/themes/default/locale/pf.png
+%%DATADIR%%/themes/default/locale/pg.png
+%%DATADIR%%/themes/default/locale/ph.png
+%%DATADIR%%/themes/default/locale/pk.png
+%%DATADIR%%/themes/default/locale/pl.png
+%%DATADIR%%/themes/default/locale/pm.png
+%%DATADIR%%/themes/default/locale/pn.png
+%%DATADIR%%/themes/default/locale/pr.png
+%%DATADIR%%/themes/default/locale/ps.png
+%%DATADIR%%/themes/default/locale/pt.png
+%%DATADIR%%/themes/default/locale/pw.png
+%%DATADIR%%/themes/default/locale/py.png
+%%DATADIR%%/themes/default/locale/qa.png
+%%DATADIR%%/themes/default/locale/re.png
+%%DATADIR%%/themes/default/locale/ro.png
+%%DATADIR%%/themes/default/locale/rs.png
+%%DATADIR%%/themes/default/locale/ru.png
+%%DATADIR%%/themes/default/locale/rw.png
+%%DATADIR%%/themes/default/locale/sa.png
+%%DATADIR%%/themes/default/locale/sb.png
+%%DATADIR%%/themes/default/locale/sc.png
+%%DATADIR%%/themes/default/locale/sct.png
+%%DATADIR%%/themes/default/locale/sd.png
+%%DATADIR%%/themes/default/locale/se.png
+%%DATADIR%%/themes/default/locale/sg.png
+%%DATADIR%%/themes/default/locale/sh.png
+%%DATADIR%%/themes/default/locale/si.png
+%%DATADIR%%/themes/default/locale/sj.png
+%%DATADIR%%/themes/default/locale/sk.png
+%%DATADIR%%/themes/default/locale/sl.png
+%%DATADIR%%/themes/default/locale/sm.png
+%%DATADIR%%/themes/default/locale/sn.png
+%%DATADIR%%/themes/default/locale/so.png
+%%DATADIR%%/themes/default/locale/sr.png
+%%DATADIR%%/themes/default/locale/st.png
+%%DATADIR%%/themes/default/locale/sv.png
+%%DATADIR%%/themes/default/locale/sy.png
+%%DATADIR%%/themes/default/locale/sz.png
+%%DATADIR%%/themes/default/locale/tc.png
+%%DATADIR%%/themes/default/locale/td.png
+%%DATADIR%%/themes/default/locale/tf.png
+%%DATADIR%%/themes/default/locale/tg.png
+%%DATADIR%%/themes/default/locale/th.png
+%%DATADIR%%/themes/default/locale/tj.png
+%%DATADIR%%/themes/default/locale/tk.png
+%%DATADIR%%/themes/default/locale/tl.png
+%%DATADIR%%/themes/default/locale/tm.png
+%%DATADIR%%/themes/default/locale/tn.png
+%%DATADIR%%/themes/default/locale/to.png
+%%DATADIR%%/themes/default/locale/tr.png
+%%DATADIR%%/themes/default/locale/tt.png
+%%DATADIR%%/themes/default/locale/tv.png
+%%DATADIR%%/themes/default/locale/tw.png
+%%DATADIR%%/themes/default/locale/tz.png
+%%DATADIR%%/themes/default/locale/ua.png
+%%DATADIR%%/themes/default/locale/ug.png
+%%DATADIR%%/themes/default/locale/um.png
+%%DATADIR%%/themes/default/locale/us.png
+%%DATADIR%%/themes/default/locale/uy.png
+%%DATADIR%%/themes/default/locale/uz.png
+%%DATADIR%%/themes/default/locale/va.png
+%%DATADIR%%/themes/default/locale/vc.png
+%%DATADIR%%/themes/default/locale/ve.png
+%%DATADIR%%/themes/default/locale/vg.png
+%%DATADIR%%/themes/default/locale/vi.png
+%%DATADIR%%/themes/default/locale/vn.png
+%%DATADIR%%/themes/default/locale/vu.png
+%%DATADIR%%/themes/default/locale/wf.png
+%%DATADIR%%/themes/default/locale/wls.png
+%%DATADIR%%/themes/default/locale/ws.png
+%%DATADIR%%/themes/default/locale/ye.png
+%%DATADIR%%/themes/default/locale/yt.png
+%%DATADIR%%/themes/default/locale/za.png
+%%DATADIR%%/themes/default/locale/zm.png
+%%DATADIR%%/themes/default/locale/zw.png
%%DATADIR%%/themes/default/mono.png
%%DATADIR%%/themes/default/mythdialogbox-background.png
%%DATADIR%%/themes/default/mythfilebrowser-background.png
%%DATADIR%%/themes/default/mythprogressdialog-background.png
+%%DATADIR%%/themes/default/osd.xml
%%DATADIR%%/themes/default/pd-background.png
%%DATADIR%%/themes/default/pf-background.png
%%DATADIR%%/themes/default/pf-lines.png
@@ -1048,6 +1616,17 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/schedule_recording.png
%%DATADIR%%/themes/default/selectbar.png
%%DATADIR%%/themes/default/settings-ui.xml
+%%DATADIR%%/themes/default/shared/0_stars.png
+%%DATADIR%%/themes/default/shared/10_stars.png
+%%DATADIR%%/themes/default/shared/1_stars.png
+%%DATADIR%%/themes/default/shared/2_stars.png
+%%DATADIR%%/themes/default/shared/3_stars.png
+%%DATADIR%%/themes/default/shared/4_stars.png
+%%DATADIR%%/themes/default/shared/5_stars.png
+%%DATADIR%%/themes/default/shared/6_stars.png
+%%DATADIR%%/themes/default/shared/7_stars.png
+%%DATADIR%%/themes/default/shared/8_stars.png
+%%DATADIR%%/themes/default/shared/9_stars.png
%%DATADIR%%/themes/default/shared/directory.png
%%DATADIR%%/themes/default/shared/executable.png
%%DATADIR%%/themes/default/shared/file.png
@@ -1082,6 +1661,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/very_wide_button_pushed_background.png
%%DATADIR%%/themes/default/very_wide_button_selected_background.png
%%DATADIR%%/themes/default/watched.png
+%%DATADIR%%/themes/default/welcome-ui.xml
%%DATADIR%%/themes/default/wide.png
%%DATADIR%%/themes/default/wide_button_background.png
%%DATADIR%%/themes/default/wide_button_pushed_background.png
@@ -1102,23 +1682,6 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/defaultmenu/tv_settings.xml
%%DATADIR%%/themes/defaultmenu/tvmenu.xml
%%DATADIR%%/themes/defaultmenu/util_menu.xml
-%%DATADIR%%/themes/isthmus/cut_end.png
-%%DATADIR%%/themes/isthmus/cut_start.png
-%%DATADIR%%/themes/isthmus/fill_green.png
-%%DATADIR%%/themes/isthmus/fill_red.png
-%%DATADIR%%/themes/isthmus/isthmus-preview.png
-%%DATADIR%%/themes/isthmus/news_scroller.png
-%%DATADIR%%/themes/isthmus/osd-alert.png
-%%DATADIR%%/themes/isthmus/osd-channel-edit.png
-%%DATADIR%%/themes/isthmus/osd-mid.png
-%%DATADIR%%/themes/isthmus/osd.xml
-%%DATADIR%%/themes/isthmus/phone.png
-%%DATADIR%%/themes/isthmus/popup.png
-%%DATADIR%%/themes/isthmus/position_marker.png
-%%DATADIR%%/themes/isthmus/red.png
-%%DATADIR%%/themes/isthmus/selector.png
-%%DATADIR%%/themes/isthmus/slider_frame.png
-%%DATADIR%%/themes/isthmus/themeinfo.xml
%%DATADIR%%/themes/mediacentermenu/advanced.xml
%%DATADIR%%/themes/mediacentermenu/info_settings.xml
%%DATADIR%%/themes/mediacentermenu/main_settings.xml
@@ -1133,69 +1696,38 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/mediacentermenu/tv_schedule.xml
%%DATADIR%%/themes/mediacentermenu/tv_search.xml
%%DATADIR%%/themes/mediacentermenu/tv_settings.xml
-%%DATADIR%%/themes/default/welcome-ui.xml
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.py
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_api.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.py
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_exceptions.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.py
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/tmdb_ui.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.py
-%%PYTHON_SITELIBDIR%%/MythTV/tmdb/__init__.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/cache.py
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/cache.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_api.py
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_api.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_exceptions.py
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_exceptions.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_ui.py
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/tvdb_ui.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/__init__.py
-%%PYTHON_SITELIBDIR%%/MythTV/ttvdb/__init__.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/MythBase.py
-%%PYTHON_SITELIBDIR%%/MythTV/MythBase.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/MythData.py
-%%PYTHON_SITELIBDIR%%/MythTV/MythData.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/MythFunc.py
-%%PYTHON_SITELIBDIR%%/MythTV/MythFunc.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/MythStatic.py
-%%PYTHON_SITELIBDIR%%/MythTV/MythStatic.pyc
-%%PYTHON_SITELIBDIR%%/MythTV/__init__.py
-%%PYTHON_SITELIBDIR%%/MythTV/__init__.pyc
-%%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV/.packlist
-%%SITE_PERL%%/IO/Socket/INET/MythTV.pm
-%%SITE_PERL%%/MythTV/Recording.pm
-%%SITE_PERL%%/MythTV/Channel.pm
-%%SITE_PERL%%/MythTV/StorageGroup.pm
-%%SITE_PERL%%/MythTV/Program.pm
-%%SITE_PERL%%/MythTV.pm
+%%DATADIR%%/themes/mythuitheme.dtd
@dirrm include/mythtv/upnp
+@dirrm include/mythtv/libpostproc
@dirrm include/mythtv/mpeg2dec
+@dirrm include/mythtv/metadata
@dirrm include/mythtv/libswscale
@dirrm include/mythtv/libmythui
@dirrm include/mythtv/libmythdb
@dirrm include/mythtv/libmyth
@dirrm include/mythtv/libavutil
@dirrm include/mythtv/libavformat
+@dirrm include/mythtv/libavfilter
+@dirrm include/mythtv/libavdevice
+@dirrm include/mythtv/libavcore
@dirrm include/mythtv/libavcodec
@dirrm include/mythtv/dvdread
@dirrm include/mythtv/dvdnav
+@dirrm include/mythtv/bluray
@dirrm include/mythtv
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/wikiscripts
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/ttvdb/XSLT
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/ttvdb
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb/XSLT
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb
+%%BINDINGS%%@dirrm %%PYTHON_SITELIBDIR%%/MythTV
@dirrm lib/mythtv/filters
-@dirrm lib/mythtv
-@dirrm %%SITE_PERL%%/MythTV
-@dirrmtry %%SITE_PERL%%/IO/Socket/INET
-@dirrmtry %%SITE_PERL%%/IO/Socket
-@dirrmtry %%SITE_PERL%%/IO
-@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV
-@dirrm %%PYTHON_SITELIBDIR%%/MythTV/ttvdb
-@dirrm %%PYTHON_SITELIBDIR%%/MythTV/tmdb
-@dirrm %%PYTHON_SITELIBDIR%%/MythTV
+@dirrmtry lib/mythtv
@dirrm %%DATADIR%%/themes/mediacentermenu
-@dirrm %%DATADIR%%/themes/isthmus
@dirrm %%DATADIR%%/themes/defaultmenu
@dirrm %%DATADIR%%/themes/default/shared
@dirrm %%DATADIR%%/themes/default/recording
+@dirrm %%DATADIR%%/themes/default/locale
@dirrm %%DATADIR%%/themes/default/keyboard
@dirrm %%DATADIR%%/themes/default/htmls
@dirrm %%DATADIR%%/themes/default/busyimages
@@ -1211,6 +1743,8 @@ lib/mythtv/filters/libyadif.so
@dirrm %%DATADIR%%/themes/Terra/recordings
@dirrm %%DATADIR%%/themes/Terra/popups/busy
@dirrm %%DATADIR%%/themes/Terra/popups
+@dirrm %%DATADIR%%/themes/Terra/osd
+@dirrm %%DATADIR%%/themes/Terra/music
@dirrm %%DATADIR%%/themes/Terra/menu
@dirrm %%DATADIR%%/themes/Terra/htmls
@dirrm %%DATADIR%%/themes/Terra/guide
@@ -1225,13 +1759,41 @@ lib/mythtv/filters/libyadif.so
@dirrm %%DATADIR%%/themes/MythCenter-wide/watermark
@dirrm %%DATADIR%%/themes/MythCenter-wide/ui
@dirrm %%DATADIR%%/themes/MythCenter-wide/title
+@dirrm %%DATADIR%%/themes/MythCenter-wide/osd
@dirrm %%DATADIR%%/themes/MythCenter-wide/htmls
@dirrm %%DATADIR%%/themes/MythCenter-wide
@dirrm %%DATADIR%%/themes/MythCenter
-@dirrm %%DATADIR%%/themes/Gray-OSD
@dirrm %%DATADIR%%/themes/DVR
-@dirrm %%DATADIR%%/themes/BlackCurves-OSD
@dirrmtry %%DATADIR%%/themes
+@dirrm %%DATADIR%%/metadata/Television
+@dirrm %%DATADIR%%/metadata/Movie
+@dirrm %%DATADIR%%/metadata
+@dirrm %%DATADIR%%/locales
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/youtube
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/xsltfunctions
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/vimeo/oauth
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/vimeo
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/thewb
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/tedtalks
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/rev3
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/pbs
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/mtv
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/mnvsearch
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/mashups
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/hulu
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/dailymotion
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/configs/XSLT
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/configs/XML/defaultUserPrefs
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/configs/XML
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/configs/HTML
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/configs
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/common
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/bliptv
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs/bbciplayer
+@dirrm %%DATADIR%%/internetcontent/nv_python_libs
+@dirrm %%DATADIR%%/internetcontent/nv_perl_libs
+@dirrm %%DATADIR%%/internetcontent
@dirrm %%DATADIR%%/i18n
+@dirrm %%DATADIR%%/fonts
@dirrm %%DATADIR%%/database
@dirrmtry %%DATADIR%%