View | Details | Raw Unified | Return to bug 141722
Collapse All | Expand All

(-)/usr/ports/multimedia/mythtv/Makefile (-33 / +28 lines)
Lines 7-14 Link Here
7
# $FreeBSD: ports/multimedia/mythtv/Makefile,v 1.25 2009/11/15 22:29:08 glarkin Exp $
7
# $FreeBSD: ports/multimedia/mythtv/Makefile,v 1.25 2009/11/15 22:29:08 glarkin Exp $
8
8
9
PORTNAME=	mythtv
9
PORTNAME=	mythtv
10
PORTVERSION=	0.21
10
PORTVERSION=	0.22
11
PORTREVISION=	2
12
CATEGORIES=	multimedia
11
CATEGORIES=	multimedia
13
MASTER_SITES=	ftp://ftp.osuosl.org/pub/mythtv/ \
12
MASTER_SITES=	ftp://ftp.osuosl.org/pub/mythtv/ \
14
		LOCAL/glarkin
13
		LOCAL/glarkin
Lines 18-42 Link Here
18
17
19
LIB_DEPENDS=	mp3lame.0:${PORTSDIR}/audio/lame \
18
LIB_DEPENDS=	mp3lame.0:${PORTSDIR}/audio/lame \
20
		freetype.9:${PORTSDIR}/print/freetype2
19
		freetype.9:${PORTSDIR}/print/freetype2
21
BUILD_DEPENDS=	qmake:${PORTSDIR}/devel/qmake \
20
BUILD_DEPENDS=	${SITE_PERL}/${PERL_ARCH}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-SAX-Expat
22
		${SITE_PERL}/${PERL_ARCH}/XML/Parser/Expat.pm:${PORTSDIR}/textproc/p5-XML-SAX-Expat
23
RUN_DEPENDS=	tv_check:${PORTSDIR}/textproc/p5-xmltv \
21
RUN_DEPENDS=	tv_check:${PORTSDIR}/textproc/p5-xmltv \
24
		${LOCALBASE}/lib/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt-mysql-plugin \
22
		${QT_PREFIX}/lib/qt4/plugins/sqldrivers/libqsqlmysql.so:${PORTSDIR}/databases/qt4-mysql-plugin \
25
		wget:${PORTSDIR}/ftp/wget
23
		wget:${PORTSDIR}/ftp/wget
26
24
27
ONLY_FOR_ARCHS=	i386 amd64
25
ONLY_FOR_ARCHS=	i386 amd64
28
USE_BZIP2=	yes
26
USE_BZIP2=	yes
29
USE_QT_VER=	3
27
USE_QT_VER=	4
28
QT_COMPONENTS=	gui sql network script linguist_build l10n \
29
		moc_build qmake_build rcc_build uic_build
30
USE_MYSQL=	51
30
USE_MYSQL=	51
31
USE_GMAKE=	yes
31
USE_GMAKE=	yes
32
GNU_CONFIGURE=	yes
32
HAS_CONFIGURE=	yes
33
LOCALE_CLEANUP=	LANG="" LC_ALL="" LC_COLLATE="" LC_CTYPE="" \
33
QT_NONSTANDARD=	yes
34
		LC_MESSAGES="" LC_MONETARY="" LC_NUMERIC="" \
34
USE_PERL=	yes
35
		LC_TIME=""
35
USE_PYTHON=	yes
36
CONFIGURE_ENV=	QMAKESPEC="${QMAKESPEC}" \
36
INSTALLS_EGGINFO=yes
37
		CFLAGS="${CFLAGS}" ${LOCALE_CLEANUP}
37
PYDISTUTILS_PKGNAME=MythTV
38
MAKE_ENV=	QTDIR="${QT_PREFIX}" QMAKESPEC="${QMAKESPEC}" \
38
REINPLACE_ARGS=	-i ""
39
		${LOCALE_CLEANUP}
39
40
MAKE_ENV=	QTDIR="${QT_PREFIX}" \
41
		QMAKESPEC="${QMAKESPEC}"
42
43
CONFIGURE_ENV+=	QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" CPPFLAGS="${CPPFLAGS}  ${QTCPPFLAGS}" \
44
		QTDIR="${QT_PREFIX}" LDFLAGS="-L${LOCALBASE}/lib"
45
40
USE_RC_SUBR=	mythbackend
46
USE_RC_SUBR=	mythbackend
41
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
47
USE_LDCONFIG=	${PREFIX}/lib/mythtv/filters
42
48
Lines 48-61 Link Here
48
MYTHTVGID?=	${MYTHTVUID}
54
MYTHTVGID?=	${MYTHTVUID}
49
MYTHTVDIR?=	/nonexistent
55
MYTHTVDIR?=	/nonexistent
50
56
51
CONFIG=		--enable-xvmc --enable-opengl-vsync --disable-directfb \
57
CONFIGURE_ARGS=	--enable-xvmc --enable-opengl-vsync --disable-directfb --enable-ivtv \
52
		--disable-ivtv \
58
		--disable-xvmc-pro --disable-xvmc-vld --disable-xvmcw \
53
		--disable-xvmc-pro --disable-xvmc-vld --disable-xvmcw  \
54
		--prefix=${PREFIX} --extra-cflags=-g --extra-cxxflags=-g
59
		--prefix=${PREFIX} --extra-cflags=-g --extra-cxxflags=-g
55
60
56
CONFIGURE_ARGS=	--with-qt-dir=${LOCALBASE} ${CONFIG}
61
QMAKESPEC?=	${LOCALBASE}/share/qt4/mkspecs/freebsd-g++
57
58
QMAKESPEC?=	${LOCALBASE}/share/qt/mkspecs/freebsd-g++
59
62
60
OPTIONS=	LIRC		"Native LIRC Support" Off \
63
OPTIONS=	LIRC		"Native LIRC Support" Off \
61
		MYSQL_LOCAL	"RUN_DEPEND on selected MySQL server" Off
64
		MYSQL_LOCAL	"RUN_DEPEND on selected MySQL server" Off
Lines 83-101 Link Here
83
86
84
post-patch:
87
post-patch:
85
		@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
88
		@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
86
			${WRKSRC}/configure
89
			${WRKSRC}/libs/libmythtv/libmythtv.pro \
87
90
			${WRKSRC}/libs/libavformat/libavformat.pro \
88
post-extract:
91
			${WRKSRC}/bindings/perl/MythTV/Recording.pm \
89
		@${ECHO_CMD} export QMAKESPEC=${QMAKESPEC}
92
			${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \
90
93
			${WRKSRC}/programs/scripts/database/mythconverg_backup.pl
91
do-configure:
92
		@${ECHO_CMD} CONFIGURE_ENV: ${CONFIGURE_ENV}
93
		@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
94
			./configure ${CONFIG}
95
		@${ECHO_CMD} MAKE_ENV: ${MAKE_ENV}
96
		@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} qmake \
97
			-spec ${LOCALBASE}/share/qt/mkspecs/freebsd-g++ \
98
			mythtv.pro
99
94
100
post-install:
95
post-install:
101
		@${INSTALL} -d ${PREFIX}/share/mythtv/database
96
		@${INSTALL} -d ${PREFIX}/share/mythtv/database
(-)/usr/ports/multimedia/mythtv/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (mythtv-0.21.tar.bz2) = 49fc135e1cde90cd935c1229467fa37e
1
MD5 (mythtv-0.22.tar.bz2) = e8f8b5b6a51cd7be700e215b2a1bf2c0
2
SHA256 (mythtv-0.21.tar.bz2) = 33a878a8fc3efdd74519b09b4ec3d16fa9d3a0436b321c13344e5f3ab723c5e4
2
SHA256 (mythtv-0.22.tar.bz2) = bb7212bac2cfc792c59a15a80caee8bbf469e250e6f48dc6b0856a60cb07b6fb
3
SIZE (mythtv-0.21.tar.bz2) = 14230687
3
SIZE (mythtv-0.22.tar.bz2) = 21895073
(-)/usr/ports/multimedia/mythtv/files/mythbackend.in (-9 / +12 lines)
Lines 7-29 Link Here
7
# BEFORE: LOGIN
7
# BEFORE: LOGIN
8
# KEYWORD: shutdown
8
# KEYWORD: shutdown
9
9
10
# Define mythbackend_enable in one of these places:
10
# Define mythbackend_enable in /etc/rc.conf[.local] to enable mythbackend
11
#       /etc/rc.conf
12
#       /etc/rc.conf.local
13
#
11
#
14
# DO NOT CHANGE THESE DEFAULT VALUES HERE
12
# mythbackend_enable (bool):  Set to "NO" by default.
15
#
13
#                             Set it to "YES" to enable mythbackend.
16
mythbackend_enable=${mythbackend_enable-"NO"}
14
# mythbackend_logfile (str):  Custom logfile for mythbackend.
17
PATH=${PATH}:%%PREFIX%%/bin
15
#                             (default /var/log/mythbackend.log)
16
# mythbackend_flags (str):    Additional flags for mythbackend.
18
17
19
. %%RC_SUBR%%
18
. %%RC_SUBR%%
20
19
21
name="mythbackend"
20
name="mythbackend"
22
rcvar=`set_rcvar`
21
rcvar=`set_rcvar`
23
command="%%PREFIX%%/bin/mythbackend &"
22
command="%%PREFIX%%/bin/${name}"
24
23
25
load_rc_config $name
24
load_rc_config $name
26
25
27
start_cmd="echo \"Starting ${name}.\"; ${command}"
26
: ${mythbackend_enable="NO"}
27
: ${mythbackend_logfile="/var/log/${name}.log"}
28
: ${mythbackend_flags=""}
29
30
command_args="-d -l ${mythbackend_logfile}"
28
31
29
run_rc_command "$1"
32
run_rc_command "$1"
(-)/usr/ports/multimedia/mythtv/files/patch-configure (-27 / +42 lines)
Lines 1-29 Link Here
1
--- configure.orig	2008-03-04 16:23:23.000000000 -0500
1
--- configure.orig	2009-10-09 00:30:46.000000000 +0200
2
+++ configure	2009-03-03 18:10:09.000000000 -0500
2
+++ configure	2009-12-02 19:24:10.000000000 +0100
3
@@ -1149,6 +1149,17 @@
3
@@ -633,21 +633,21 @@
4
     fi 
4
     log check_cc "$@"
5
 fi 
5
     cat > $TMPC
6
     log_file $TMPC
7
-    check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS "$@" -c -o $TMPO $TMPC
8
+    check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPC
9
 }
6
 
10
 
7
+# BSD.
11
 check_cpp(){
8
+if uname -s | grep BSD > 0; then
12
     log check_cpp "$@"
9
+    dmesg=/var/run/dmesg.boot
13
     cat > $TMPC
10
+    if test -f $dmesg ; then
14
     log_file $TMPC
11
+        processor=`grep ^CPU: $dmesg`
15
-    check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS "$@" -E -o $TMPO $TMPC
12
+# processor_flags is used only to determine whether the processor
16
+    check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS -I${prefix}/include "$@" -E -o $TMPO $TMPC
13
+# supports MMX.  The script expexts lower-case 'mmx'.  Give it to it.
17
 }
14
+        processor_flags=`grep '^  Features=' $dmesg | tr "[:upper:]" "[:lower:]"`
15
+    fi
16
+fi
17
+
18
 # OS
19
 targetos=$(tolower $(uname -s))
20
 
18
 
21
@@ -1466,7 +1477,7 @@
19
 check_cxx(){
22
   x86_64|amd64)
20
     log check_cxx "$@"
23
     arch="x86_32"
21
     cat > $TMPCXX
24
     enable fast_unaligned
22
     log_file $TMPCXX
25
-    canon_arch="`$cc -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
23
-    check_cmd $cxx $ECXXFLAGS "$@" -c -o $TMPO $TMPCXX
26
+    canon_arch="`$cxx -dumpmachine | sed -e 's,\([^-]*\)-.*,\1,'`"
24
+    check_cmd $cxx $ECXXFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPCXX
27
     if [ x"$canon_arch" = x"x86_64" -o x"$canon_arch" = x"amd64" ]; then
25
 }
28
       if [ -z "`echo $CFLAGS | grep -- -m32`"  ]; then
26
 
29
         arch="x86_64"
27
 check_as(){
28
@@ -2174,7 +2174,6 @@
29
         append CCONFIG "freebsd"
30
         # Workaround compile errors from missing u_int/uint def
31
         CFLAGS=`echo $CFLAGS | sed 's/-D_POSIX_C_SOURCE=200112//'`
32
-        disable ivtv
33
         disable need_memalign
34
         enable backend
35
         ;;
36
@@ -4254,6 +4253,8 @@
37
 #       directories, it cannot be modified.
38
 QMAKE_LIBDIR_QT -= $libdir
39
 LATE_LIBS            += -L$libdir
40
+CONFIG_INCLUDEPATH=
41
+FREETYPE_CFLAGS -= -I/usr/local/include
42
 EOF
43
 
44
 diff $TMPH $MYTH_CONFIG_H >/dev/null 2>&1
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmyth__compat.h (-11 lines)
Lines 1-11 Link Here
1
--- ./libs/libmyth/compat.h.orig	2008-02-18 02:35:01.000000000 -0500
2
+++ ./libs/libmyth/compat.h	2009-02-23 09:59:26.000000000 -0500
3
@@ -273,7 +273,7 @@
4
 
5
 // Libdvdnav now uses off64_t lseek64(), which Darwin doesn't have.
6
 // Luckily, its lseek() is already 64bit compatible
7
-#ifdef CONFIG_DARWIN
8
+#if defined(CONFIG_DARWIN) || defined(__FreeBSD__)
9
     typedef off_t off64_t;
10
     #define lseek64(f,o,w) lseek(f,o,w)
11
 #endif
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmyth__libmyth.pro (-25 lines)
Lines 1-25 Link Here
1
--- ./libs/libmyth/libmyth.pro.orig	2008-03-04 12:08:41.000000000 -0500
2
+++ ./libs/libmyth/libmyth.pro	2009-04-22 21:04:16.000000000 -0400
3
@@ -43,14 +43,14 @@
4
 SOURCES += volumebase.cpp volumecontrol.cpp virtualkeyboard.cpp xmlparse.cpp
5
 SOURCES += mythhdd.cpp mythcdrom.cpp storagegroup.cpp dbutil.cpp
6
 
7
-INCLUDEPATH += ../libmythsamplerate ../libmythsoundtouch ../libmythfreesurround
8
-INCLUDEPATH += ../libavcodec ../libavutil
9
-INCLUDEPATH += ../.. ../ ./
10
-DEPENDPATH += ../libmythsamplerate ../libmythsoundtouch
11
-DEPENDPATH += ../libmythfreesurround
12
-DEPENDPATH += ../libavcodec ../libavutil
13
-DEPENDPATH += ../ ../libmythui
14
-DEPENDPATH += ../libmythupnp
15
+INCLUDEPATH = ../libmythsamplerate ../libmythsoundtouch ../libmythfreesurround $${INCLUDEPATH}
16
+INCLUDEPATH = ../libavcodec ../libavutil $${INCLUDEPATH}
17
+INCLUDEPATH = ../.. ../ ./ $${INCLUDEPATH}
18
+DEPENDPATH = ../libmythsamplerate ../libmythsoundtouch $${DEPENDPATH}
19
+DEPENDPATH = ../libmythfreesurround $${DEPENDPATH}
20
+DEPENDPATH = ../libavcodec ../libavutil $${DEPENDPATH}
21
+DEPENDPATH = ../ ../libmythui $${DEPENDPATH}
22
+DEPENDPATH = ../libmythupnp $${DEPENDPATH}
23
 
24
 
25
 LIBS += -L../libmythsamplerate   -lmythsamplerate-$${LIBVERSION}
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmyth__util.cpp (-13 lines)
Lines 1-13 Link Here
1
--- ./libs/libmyth/util.cpp.orig	2008-02-24 10:19:20.000000000 -0500
2
+++ ./libs/libmyth/util.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -54,6 +54,10 @@
4
 #include <sys/mount.h>  // for struct statfs
5
 #endif
6
 
7
+#if defined(__FreeBSD__)
8
+#include <sys/mount.h>	// for struct statfs
9
+#endif
10
+
11
 #ifdef USE_LIRC
12
 #include "lircevent.h"
13
 #endif
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythdvdnav__dvd_input.c (-12 lines)
Lines 1-12 Link Here
1
--- ./libs/libmythdvdnav/dvd_input.c.orig	2008-01-27 14:27:40.000000000 -0500
2
+++ ./libs/libmythdvdnav/dvd_input.c	2009-02-23 09:59:26.000000000 -0500
3
@@ -27,6 +27,9 @@
4
 #include "dvd_reader.h"
5
 #include "dvd_input.h"
6
 
7
+#if defined(__FreeBSD__)
8
+#define lseek64 lseek
9
+#endif
10
 
11
 /* The function pointers that is the exported interface of this file. */
12
 dvd_input_t (*dvdinput_open)  (const char *);
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythdvdnav__dvdnav_internal.h (-12 lines)
Lines 1-12 Link Here
1
--- ./libs/libmythdvdnav/dvdnav_internal.h.orig	2008-03-07 20:03:12.000000000 -0500
2
+++ ./libs/libmythdvdnav/dvdnav_internal.h	2009-02-23 09:59:26.000000000 -0500
3
@@ -62,6 +62,9 @@
4
 #else
5
 
6
 #include <pthread.h>
7
+#if defined(__FreeBSD__)
8
+#define lseek64 lseek
9
+#endif
10
 
11
 #endif /* WIN32 */
12
 
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythfreemheg__Programs.cpp (-18 lines)
Lines 1-18 Link Here
1
--- ./libs/libmythfreemheg/Programs.cpp.orig	2007-03-29 15:44:23.000000000 -0400
2
+++ ./libs/libmythfreemheg/Programs.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -30,7 +30,15 @@
4
 #include "freemheg.h"
5
 
6
 #include <sys/timeb.h>
7
+#ifdef __FreeBSD__
8
+/* 
9
+ * This file refers to the non-POSIX structure timezone, which is
10
+ * defined in sys/time.h.
11
+ */
12
+#include <sys/time.h>
13
+#else
14
 #include <time.h>
15
+#endif
16
 
17
 #include "../../config.h"
18
 
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythtv__cardutil.cpp (-11 lines)
Lines 1-11 Link Here
1
--- ./libs/libmythtv/cardutil.cpp.orig	2008-02-02 12:42:34.000000000 -0500
2
+++ ./libs/libmythtv/cardutil.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -1473,7 +1473,7 @@
4
 {
5
     bool ok;
6
     QStringList ret;
7
-    int videofd = open(device.ascii(), O_RDWR);
8
+    int videofd = open(device.ascii(), O_RDONLY);
9
     if (videofd < 0)
10
     {
11
         ret += QObject::tr("Could not open '%1' "
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythtv__libmythtv.pro (-10 lines)
Lines 1-10 Link Here
1
--- ./libs/libmythtv/libmythtv.pro.orig	2008-02-18 17:59:32.000000000 -0500
2
+++ ./libs/libmythtv/libmythtv.pro	2009-04-22 21:04:16.000000000 -0400
3
@@ -49,6 +49,7 @@
4
 
5
 
6
 DEFINES += _LARGEFILE_SOURCE
7
+QMAKE_CXXFLAGS = -I../libmyth -I../libavcodec -I../libavutil -I../libmythmpeg2 $${QMAKE_CXXFLAGS}
8
 QMAKE_CXXFLAGS += $${FREETYPE_CFLAGS}
9
 QMAKE_LFLAGS_SHLIB += $${FREETYPE_LIBS}
10
 
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythtv__videodev_myth.h (+39 lines)
Line 0 Link Here
1
--- libs/libmythtv/videodev_myth.h.orig	2009-07-06 22:42:28.000000000 +0200
2
+++ libs/libmythtv/videodev_myth.h	2009-11-15 13:08:20.000000000 +0100
3
@@ -11,6 +11,36 @@
4
 typedef uint8_t  __u8; 
5
 typedef uint32_t __u64; 
6
 typedef int32_t  __s64;  // HACK. Non 64bit FreeBSD kernels require this for ioctls
7
+
8
+typedef struct fb_var_screeninfo
9
+{
10
+	int xres;
11
+	int yres;
12
+	int bits_per_pixel;
13
+	int xres_virtual;
14
+	int yres_virtual;
15
+	int xoffset;
16
+	int yoffset;
17
+	int nonstd;
18
+	int activate;
19
+};
20
+
21
+typedef struct fb_fix_screeninfo
22
+{
23
+	int smem_start;
24
+};
25
+
26
+#define FB_ACTIVATE_NOW 0
27
+
28
+#define FBIOBLANK 0
29
+#define FBIOGET_FSCREENINFO 0
30
+#define FBIOGET_VSCREENINFO 0
31
+#define FBIOPAN_DISPLAY 0
32
+#define FBIOPUT_VSCREENINFO 0
33
+
34
+#define VESA_NO_BLANKING 0
35
+#define VESA_VSYNC_SUSPEND 0
36
+
37
 #else
38
 #include <linux/types.h>
39
 #include <linux/version.h>
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythtv__videoout_ivtv.cpp (+12 lines)
Line 0 Link Here
1
--- libs/libmythtv/videoout_ivtv.cpp.orig	2009-11-15 13:10:38.000000000 +0100
2
+++ libs/libmythtv/videoout_ivtv.cpp	2009-11-15 13:11:08.000000000 +0100
3
@@ -19,7 +19,9 @@
4
 #include <sys/param.h>
5
 
6
 // Linux headers
7
+#if defined(__linux__)
8
 #include <linux/fb.h>
9
+#endif
10
 
11
 // C++ headers
12
 #include <map>
(-)/usr/ports/multimedia/mythtv/files/patch-libs__libmythupnp__httprequest.cpp (-49 lines)
Lines 1-49 Link Here
1
--- ./libs/libmythupnp/httprequest.cpp.orig	2008-03-03 22:14:01.000000000 -0500
2
+++ ./libs/libmythupnp/httprequest.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -21,9 +21,13 @@
4
 #if defined CONFIG_DARWIN || defined CONFIG_CYGWIN || defined(__FreeBSD__) || defined(USING_MINGW)
5
 #include "darwin-sendfile.h"
6
 #else
7
+#ifdef __FreeBSD__
8
+typedef off_t __off64_t;
9
+#else
10
 #define USE_SETSOCKOPT
11
 #include <sys/sendfile.h>
12
 #endif
13
+#endif
14
 #include <sys/types.h>
15
 #include <sys/stat.h>
16
 #include <unistd.h>
17
@@ -398,6 +402,24 @@
18
         __off64_t offset = llStart;
19
         int       file   = open( sFileName.ascii(), O_RDONLY | O_LARGEFILE );
20
         ssize_t   sent   = 0;  
21
+#ifdef __FreeBSD__
22
+
23
+	int error;
24
+        error = sendfile (file,
25
+                          getSocketHandle (),
26
+                          offset,
27
+                          llSize,
28
+                          NULL,
29
+                          NULL,
30
+                          NULL );
31
+        if (error)
32
+          fprintf (stderr,
33
+                   "Can't transfer %s: %s (%d)\n",
34
+                   sFileName.ascii(),
35
+                   strerror (errno),
36
+                   errno );
37
+
38
+#else
39
 
40
         do 
41
         {  
42
@@ -411,6 +433,7 @@
43
 	    //VERBOSE(VB_UPNP, QString("SendResponseFile : --- size = %1, offset = %2, sent = %3").arg(llSize).arg(offset).arg(sent));
44
         } 
45
         while (( sent >= 0 ) && ( llSize > 0 ));  
46
+#endif
47
 
48
         if (sent == -1)
49
         {
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythbackend__mainserver.cpp (-34 lines)
Lines 1-34 Link Here
1
--- ./programs/mythbackend/mainserver.cpp.orig	2008-03-02 23:47:04.000000000 -0500
2
+++ ./programs/mythbackend/mainserver.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -251,7 +251,7 @@
4
         return;
5
     }
6
 
7
-    readReadyLock.lock();
8
+    // readReadyLock.lock();
9
 
10
     ProcessRequestThread *prt = NULL;
11
     threadPoolLock.lock();
12
@@ -278,19 +278,19 @@
13
 
14
     prt->setup(sock);
15
 
16
-    readReadyLock.unlock();
17
+    // readReadyLock.unlock();
18
 }
19
 
20
 void MainServer::ProcessRequest(MythSocket *sock)
21
 {
22
-    sock->Lock();
23
+    // sock->Lock();
24
 
25
     if (sock->bytesAvailable() > 0)
26
     {
27
         ProcessRequestWork(sock);
28
     }
29
 
30
-    sock->Unlock();
31
+    // sock->Unlock();
32
 }
33
 
34
 void MainServer::ProcessRequestWork(MythSocket *sock)
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythbackend__scheduler.cpp (-11 lines)
Lines 1-11 Link Here
1
--- ./programs/mythbackend/scheduler.cpp.orig	2008-02-20 22:23:22.000000000 -0500
2
+++ ./programs/mythbackend/scheduler.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -2054,7 +2054,7 @@
4
     gContext->dispatch(me);
5
 
6
     QString halt_cmd = gContext->GetSetting("ServerHaltCommand",
7
-                                            "sudo /sbin/halt -p");
8
+                                            "/sbin/shutdown -p now");
9
 
10
     if (!halt_cmd.isEmpty())
11
     {
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythfrontend__main.cpp (-11 lines)
Lines 1-11 Link Here
1
--- ./programs/mythfrontend/main.cpp.orig	2008-02-23 22:25:03.000000000 -0500
2
+++ ./programs/mythfrontend/main.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -577,7 +577,7 @@
4
 void haltnow()
5
 {
6
     QString halt_cmd = gContext->GetSetting("HaltCommand", 
7
-                                            "sudo /sbin/halt -p");
8
+                                            "/sbin/shutdown -p now");
9
     if (!halt_cmd.isEmpty())
10
         system(halt_cmd.ascii());
11
 }
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythtranscode__mpeg2fix.cpp (+13 lines)
Line 0 Link Here
1
--- programs/mythtranscode/mpeg2fix.cpp.orig	2009-11-02 20:52:39.000000000 +0100
2
+++ programs/mythtranscode/mpeg2fix.cpp	2009-11-02 20:53:08.000000000 +0100
3
@@ -12,6 +12,10 @@
4
 #include <getopt.h>
5
 #include <stdint.h>
6
 
7
+#ifdef __FreeBSD__
8
+#include <sys/stat.h>
9
+#endif
10
+
11
 #include "config.h"
12
 #include "mpeg2fix.h"
13
 
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythtranscode__mythtranscode.pro (-10 lines)
Lines 1-10 Link Here
1
--- ./programs/mythtranscode/mythtranscode.pro.orig	2007-02-24 12:44:00.000000000 -0500
2
+++ ./programs/mythtranscode/mythtranscode.pro	2009-04-22 21:04:16.000000000 -0400
3
@@ -20,3 +20,7 @@
4
 INCLUDEPATH += replex
5
 INCLUDEPATH += ../../libs/libavcodec ../../libs/libavformat \
6
                ../../libs/libavutil  ../../libs/libmythmpeg2
7
+
8
+QMAKE_CXXFLAGS = -I../../libs/libavcodec -I../../libs/libavformat \
9
+                 -I../../libs/libavutil -I../../libs/libmythmpeg2 \
10
+                 $${QMAKE_CXXFLAGS}
(-)/usr/ports/multimedia/mythtv/files/patch-programs__mythtv-setup__backendsettings.cpp (-11 lines)
Lines 1-11 Link Here
1
--- ./programs/mythtv-setup/backendsettings.cpp.orig	2008-02-05 12:52:11.000000000 -0500
2
+++ ./programs/mythtv-setup/backendsettings.cpp	2009-02-23 09:59:26.000000000 -0500
3
@@ -425,7 +425,7 @@
4
 {
5
     GlobalLineEdit *gc = new GlobalLineEdit("ServerHaltCommand");
6
     gc->setLabel(QObject::tr("Server halt command"));
7
-    gc->setValue("sudo /sbin/halt -p");
8
+    gc->setValue("/sbin/shutdown -p now");
9
     gc->setHelpText(QObject::tr("The command used to halt the backends."));
10
     return gc;
11
 };
(-)/usr/ports/multimedia/mythtv/files/patch-qt3style-includes.diff (+2171 lines)
Line 0 Link Here
1
--- ./libs/libmyth/dbutil.h.orig	2009-09-20 02:29:45.000000000 +0000
2
+++ ./libs/libmyth/dbutil.h	2009-10-15 22:09:13.000000000 +0000
3
@@ -1,8 +1,8 @@
4
 #ifndef DBUTIL_H_
5
 #define DBUTIL_H_
6
 
7
-#include <qstringlist.h>
8
-#include <qmap.h>
9
+#include <QStringList>
10
+#include <QMap>
11
 
12
 #include "mythexp.h"
13
 #include "mythdbcon.h"
14
--- ./libs/libmyth/langsettings.cpp.orig	2009-10-03 22:01:21.000000000 +0000
15
+++ ./libs/libmyth/langsettings.cpp	2009-10-15 22:12:52.000000000 +0000
16
@@ -1,5 +1,5 @@
17
-#include <qapplication.h>
18
-#include <qsqldatabase.h>
19
+#include <QApplication>
20
+#include <QSqlDatabase>
21
 #include <QTranslator>
22
 
23
 using namespace std;
24
--- ./libs/libmyth/mythcontext.h.orig	2009-10-15 21:08:23.000000000 +0000
25
+++ ./libs/libmyth/mythcontext.h	2009-10-15 21:10:04.000000000 +0000
26
@@ -11,7 +11,8 @@
27
 #include <QMutex>
28
 #include <QList>
29
 
30
-#include <qevent.h>
31
+#include <QEvent>
32
+#include <QKeyEvent>
33
 
34
 #include "mythexp.h"
35
 #include "mythobservable.h"
36
--- ./libs/libmyth/mythmediamonitor.h.orig	2009-08-04 00:34:05.000000000 +0000
37
+++ ./libs/libmyth/mythmediamonitor.h	2009-10-15 22:21:14.000000000 +0000
38
@@ -2,9 +2,9 @@
39
 #define MYTH_MEDIA_MONITOR_H
40
 
41
 #include <QList>
42
-#include <qpointer.h>
43
-#include <qthread.h>
44
-#include <qstring.h>
45
+#include <QPointer>
46
+#include <QThread>
47
+#include <QString>
48
 #include <QStringList>
49
 #include <QMutex>
50
 #include <QEvent>
51
--- ./libs/libmyth/util.h.orig	2009-10-15 21:16:47.000000000 +0000
52
+++ ./libs/libmyth/util.h	2009-10-15 21:17:12.000000000 +0000
53
@@ -4,9 +4,9 @@
54
 #include <algorithm>
55
 using namespace std;
56
 
57
-#include <qstringlist.h>
58
-#include <qdatetime.h>
59
-#include <qcolor.h>
60
+#include <QStringList>
61
+#include <QDateTime>
62
+#include <QColor>
63
 #include <QPixmap>
64
 
65
 #include <stdint.h>
66
--- ./libs/libmyth/visual.h.orig	2009-04-11 00:04:30.000000000 +0000
67
+++ ./libs/libmyth/visual.h	2009-10-15 22:12:52.000000000 +0000
68
@@ -7,7 +7,7 @@
69
 #ifndef __visual_h
70
 #define __visual_h
71
 
72
-#include <qmutex.h>
73
+#include <QMutex>
74
 
75
 class Decoder;
76
 class AudioOutput;
77
--- ./libs/libmyth/volumebase.cpp.orig	2009-04-11 00:04:30.000000000 +0000
78
+++ ./libs/libmyth/volumebase.cpp	2009-10-15 22:09:13.000000000 +0000
79
@@ -1,4 +1,4 @@
80
-#include <qstring.h>
81
+#include <QString>
82
 #include <cstdio>
83
 #include <cstdlib>
84
 
85
--- ./libs/libmyth/volumebase.h.orig	2009-04-11 00:04:30.000000000 +0000
86
+++ ./libs/libmyth/volumebase.h	2009-10-15 22:09:13.000000000 +0000
87
@@ -4,7 +4,7 @@
88
 #include <iostream>
89
 using namespace std;
90
 
91
-#include <qstring.h>
92
+#include <QString>
93
 #include "mythcontext.h"
94
 
95
 typedef enum {
96
--- libs/libmyth/xmlparse.h.orig	2009-07-26 16:00:20.000000000 +0000
97
+++ libs/libmyth/xmlparse.h	2009-10-15 23:20:07.000000000 +0000
98
@@ -3,10 +3,10 @@
99
 
100
 #include "uitypes.h"
101
 #include "mythcontext.h"
102
-#include <qimage.h>
103
-#include <qrect.h>
104
-#include <qlabel.h>
105
-#include <qdom.h>
106
+#include <QImage>
107
+#include <QRect>
108
+#include <QLabel>
109
+#include <Qt/qdom.h>
110
 
111
 class MythUIHelper;
112
 
113
--- ./libs/libmythdb/decodeencode.h.orig	2009-09-28 18:46:50.000000000 +0000
114
+++ ./libs/libmythdb/decodeencode.h	2009-10-15 22:09:13.000000000 +0000
115
@@ -4,7 +4,7 @@
116
 #include <algorithm>
117
 using namespace std;
118
 
119
-#include <qstringlist.h>
120
+#include <QStringList>
121
 
122
 // This is necessary for GCC 3.3, which has llabs(long long)
123
 // // but not abs(long long) or std::llabs(long long)
124
--- ./libs/libmythdb/httpcomms.h.orig	2009-04-11 00:04:30.000000000 +0000
125
+++ ./libs/libmythdb/httpcomms.h	2009-10-15 22:14:18.000000000 +0000
126
@@ -1,8 +1,8 @@
127
 #ifndef HTTPCOMMS_H_
128
 #define HTTPCOMMS_H_
129
 
130
-#include <qurl.h>
131
-#include <qobject.h>
132
+#include <QUrl>
133
+#include <QObject>
134
 #include <QByteArray>
135
 #include <QString>
136
 #include <QTimer>
137
--- libs/libmythdb/msocketdevice_win.cpp.orig	2009-10-15 22:45:16.000000000 +0000
138
+++ libs/libmythdb/msocketdevice_win.cpp	2009-10-15 22:45:49.000000000 +0000
139
@@ -43,9 +43,8 @@
140
 
141
 #include "msocketdevice.h"
142
 #include "qwindowdefs.h"
143
-#include "qdatetime.h"
144
-
145
-#include <qcoreapplication.h>
146
+#include <QDateTime>
147
+#include <QCoreApplication>
148
 
149
 #include <string.h>
150
 
151
--- ./libs/libmythdb/mythobservable.cpp.orig	2009-04-11 00:04:30.000000000 +0000
152
+++ ./libs/libmythdb/mythobservable.cpp	2009-10-15 22:12:52.000000000 +0000
153
@@ -1,5 +1,5 @@
154
-#include <qobject.h>
155
-#include <qapplication.h>
156
+#include <QObject>
157
+#include <QApplication>
158
 
159
 #include "mythobservable.h"
160
 
161
--- ./libs/libmythdb/oldsettings.cpp.orig	2009-04-11 00:04:30.000000000 +0000
162
+++ ./libs/libmythdb/oldsettings.cpp	2009-10-15 22:09:13.000000000 +0000
163
@@ -12,7 +12,7 @@
164
 #include "oldsettings.h"
165
 #include "mythverbose.h"
166
 
167
-#include <qstring.h>
168
+#include <QString>
169
 #include <fstream>
170
 #include <cstdlib>
171
 #include <cstdio>
172
@@ -23,7 +23,7 @@
173
 
174
 using namespace std;
175
 
176
-#include <qdir.h>
177
+#include <QDir>
178
 
179
 Settings::Settings(QString strSettingsFile)
180
 {
181
--- ./libs/libmythdb/oldsettings.h.orig	2009-04-11 00:04:30.000000000 +0000
182
+++ ./libs/libmythdb/oldsettings.h	2009-10-15 22:09:13.000000000 +0000
183
@@ -9,7 +9,7 @@
184
 
185
 #ifndef OLDSETTINGS_H
186
 #define OLDSETTINGS_H
187
-#include <qstring.h>
188
+#include <QString>
189
 #include <QPixmap>
190
 #include <map>
191
 
192
--- ./libs/libmythfreemheg/BaseClasses.h.orig	2009-07-06 20:42:28.000000000 +0000
193
+++ ./libs/libmythfreemheg/BaseClasses.h	2009-10-15 22:09:13.000000000 +0000
194
@@ -27,7 +27,7 @@
195
 #include <malloc.h>
196
 #endif
197
 
198
-#include <qstring.h>
199
+#include <QString>
200
 
201
 #include "Logging.h" // For MHASSERT
202
 
203
--- ./libs/libmythfreemheg/Engine.cpp.orig	2009-07-15 19:04:28.000000000 +0000
204
+++ ./libs/libmythfreemheg/Engine.cpp	2009-10-15 22:14:18.000000000 +0000
205
@@ -20,7 +20,7 @@
206
 */
207
 
208
 #include <QStringList>
209
-#include <qregexp.h>
210
+#include <QRegExp>
211
 
212
 #include "Engine.h"
213
 #include "ParseNode.h"
214
--- ./libs/libmythfreemheg/Engine.h.orig	2009-04-11 00:04:30.000000000 +0000
215
+++ ./libs/libmythfreemheg/Engine.h	2009-10-15 22:15:44.000000000 +0000
216
@@ -30,9 +30,9 @@
217
 #include "Visible.h"
218
 #include "Actions.h"
219
 #include "Link.h"
220
-#include <qstring.h>
221
-#include <qrect.h>
222
-#include <qregion.h>
223
+#include <QString>
224
+#include <QRect>
225
+#include <QRegion>
226
 #include <QList>
227
 #include <QStack>
228
 #include <QQueue>
229
--- ./libs/libmythfreemheg/Groups.h.orig	2009-04-11 00:04:30.000000000 +0000
230
+++ ./libs/libmythfreemheg/Groups.h	2009-10-15 22:09:13.000000000 +0000
231
@@ -22,8 +22,8 @@
232
 
233
 #if !defined(GROUPCLASS_H)
234
 #define GROUPCLASS_H
235
-#include <qstring.h>
236
-#include <qdatetime.h> 
237
+#include <QString>
238
+#include <QDateTime> 
239
 #include <QList>
240
 
241
 #include "Root.h"
242
--- ./libs/libmythfreemheg/Ingredients.h.orig	2009-04-11 00:04:30.000000000 +0000
243
+++ ./libs/libmythfreemheg/Ingredients.h	2009-10-15 22:09:13.000000000 +0000
244
@@ -26,7 +26,7 @@
245
 #include "BaseClasses.h"
246
 #include "Actions.h"
247
 #include "BaseActions.h"
248
-#include <qstring.h>
249
+#include <QString>
250
 
251
 class MHParseNode;
252
 
253
--- ./libs/libmythfreemheg/Link.h.orig	2009-04-11 00:04:30.000000000 +0000
254
+++ ./libs/libmythfreemheg/Link.h	2009-10-15 22:09:13.000000000 +0000
255
@@ -28,7 +28,7 @@
256
 #include "Actions.h"
257
 #include "BaseActions.h"
258
 
259
-#include <qstring.h>
260
+#include <QString>
261
 
262
 class MHParseNode;
263
 
264
--- libs/libmythfreemheg/Logging.h.orig	2009-04-11 00:04:30.000000000 +0000
265
+++ libs/libmythfreemheg/Logging.h	2009-10-15 22:49:01.000000000 +0000
266
@@ -23,7 +23,7 @@
267
 #define LOGGING_H
268
 
269
 #include <qglobal.h> // For Q_ASSERT
270
-#include <qstring.h> // For QString
271
+#include <QString> // For QString
272
 
273
 #include "freemheg.h" // For MHLogError
274
 
275
--- ./libs/libmythfreemheg/TokenGroup.h.orig	2009-04-11 00:04:30.000000000 +0000
276
+++ ./libs/libmythfreemheg/TokenGroup.h	2009-10-15 22:21:14.000000000 +0000
277
@@ -31,7 +31,7 @@
278
 #include "BaseActions.h"
279
 #include "Actions.h"
280
 
281
-#include <qpoint.h>
282
+#include <QPoint>
283
 #include <QList>
284
 
285
 class MHEngine;
286
--- ./libs/libmythfreemheg/Visible.h.orig	2009-04-11 00:04:30.000000000 +0000
287
+++ ./libs/libmythfreemheg/Visible.h	2009-10-15 22:15:44.000000000 +0000
288
@@ -21,7 +21,7 @@
289
 
290
 #if !defined(VISIBLE_H)
291
 #define VISIBLE_H
292
-#include <qregion.h>
293
+#include <QRegion>
294
 
295
 #include "Presentable.h"
296
 // Dependencies
297
--- ./libs/libmythfreemheg/freemheg.h.orig	2009-04-11 00:04:30.000000000 +0000
298
+++ ./libs/libmythfreemheg/freemheg.h	2009-10-15 22:15:44.000000000 +0000
299
@@ -22,7 +22,7 @@
300
 #if !defined(FREEMHEG_H)
301
 #define FREEMHEG_H
302
 
303
-#include <qregion.h>
304
+#include <QRegion>
305
 #include <stdio.h>
306
 #include <stdlib.h>
307
 
308
--- ./libs/libmythfreesurround/freesurround.cpp.orig	2009-09-29 12:25:02.000000000 +0000
309
+++ ./libs/libmythfreesurround/freesurround.cpp	2009-10-15 22:09:13.000000000 +0000
310
@@ -29,8 +29,8 @@
311
 #include <map>
312
 #include <math.h>
313
 
314
-#include <qstring.h>
315
-#include <qdatetime.h>
316
+#include <QString>
317
+#include <QDateTime>
318
 
319
 using namespace std;
320
 
321
--- ./libs/libmythtv/NuppelVideoRecorder.h.orig	2009-08-23 11:07:56.000000000 +0000
322
+++ ./libs/libmythtv/NuppelVideoRecorder.h	2009-10-15 22:09:13.000000000 +0000
323
@@ -26,8 +26,8 @@
324
 using namespace std;
325
 
326
 // Qt headers
327
-#include <qstring.h>
328
-#include <qmap.h>
329
+#include <QString>
330
+#include <QMap>
331
 
332
 // MythTV headers
333
 #include "recorderbase.h"
334
--- ./libs/libmythtv/RingBuffer.h.orig	2009-10-15 21:22:42.000000000 +0000
335
+++ ./libs/libmythtv/RingBuffer.h	2009-10-15 21:23:15.000000000 +0000
336
@@ -3,9 +3,9 @@
337
 #ifndef RINGBUFFER
338
 #define RINGBUFFER
339
 
340
-#include <qstring.h>
341
-#include <qwaitcondition.h>
342
-#include <qmutex.h>
343
+#include <QString>
344
+#include <QWaitCondition>
345
+#include <QMutex>
346
 #include <pthread.h>
347
 
348
 extern "C" {
349
--- ./libs/libmythtv/ThreadedFileWriter.h.orig	2009-10-15 21:24:11.000000000 +0000
350
+++ ./libs/libmythtv/ThreadedFileWriter.h	2009-10-15 21:24:35.000000000 +0000
351
@@ -3,9 +3,9 @@
352
 #define TFW_H_
353
 
354
 #include <pthread.h>
355
-#include <qmutex.h>
356
-#include <qwaitcondition.h>
357
-#include <qstring.h>
358
+#include <QMutex>
359
+#include <QWaitCondition>
360
+#include <QString>
361
 #include <stdint.h>
362
 
363
 class ThreadedFileWriter
364
--- ./libs/libmythtv/avcinfo.h.orig	2009-04-11 00:04:30.000000000 +0000
365
+++ ./libs/libmythtv/avcinfo.h	2009-10-15 22:09:13.000000000 +0000
366
@@ -8,7 +8,7 @@
367
 #include <stdint.h>
368
 
369
 // Qt headers
370
-#include <qstring.h>
371
+#include <QString>
372
 
373
 QString guid_to_string(uint64_t guid);
374
 uint64_t string_to_guid(const QString &guid);
375
--- ./libs/libmythtv/avformatdecoder.h.orig	2009-10-14 14:51:54.000000000 +0000
376
+++ ./libs/libmythtv/avformatdecoder.h	2009-10-15 22:09:13.000000000 +0000
377
@@ -1,8 +1,8 @@
378
 #ifndef AVFORMATDECODER_H_
379
 #define AVFORMATDECODER_H_
380
 
381
-#include <qstring.h>
382
-#include <qmap.h>
383
+#include <QString>
384
+#include <QMap>
385
 #include <QList>
386
 
387
 #include "programinfo.h"
388
--- ./libs/libmythtv/cardutil.h.orig	2009-09-14 19:18:27.000000000 +0000
389
+++ ./libs/libmythtv/cardutil.h	2009-10-15 22:09:13.000000000 +0000
390
@@ -11,8 +11,8 @@
391
 using namespace std;
392
 
393
 // Qt headers
394
-#include <qstringlist.h>
395
-#include <qmap.h>
396
+#include <QStringList>
397
+#include <QMap>
398
 
399
 class InputInfo;
400
 class CardInput;
401
--- ./libs/libmythtv/cc608decoder.h.orig	2009-04-11 00:04:30.000000000 +0000
402
+++ ./libs/libmythtv/cc608decoder.h	2009-10-15 22:12:52.000000000 +0000
403
@@ -8,8 +8,8 @@
404
 #include <vector>
405
 using namespace std;
406
 
407
-#include <qmutex.h>
408
-#include <qstringlist.h>
409
+#include <QMutex>
410
+#include <QStringList>
411
 
412
 #include "format.h"
413
 
414
--- ./libs/libmythtv/cc708decoder.h.orig	2009-04-11 00:04:30.000000000 +0000
415
+++ ./libs/libmythtv/cc708decoder.h	2009-10-15 22:09:13.000000000 +0000
416
@@ -6,7 +6,7 @@
417
 
418
 #include <stdint.h>
419
 
420
-#include <qstringlist.h>
421
+#include <QStringList>
422
 
423
 #include "format.h"
424
 #include "compat.h"
425
--- ./libs/libmythtv/cc708window.h.orig	2009-04-11 00:04:30.000000000 +0000
426
+++ ./libs/libmythtv/cc708window.h	2009-10-15 22:12:52.000000000 +0000
427
@@ -7,9 +7,9 @@
428
 #include <vector>
429
 using namespace std;
430
 
431
-#include <qstring.h>
432
-#include <qmutex.h>
433
-#include <qcolor.h>
434
+#include <QString>
435
+#include <QMutex>
436
+#include <QColor>
437
 
438
 class CC708CharacterAttribute
439
 {
440
--- ./libs/libmythtv/channelbase.h.orig	2009-04-18 00:45:58.000000000 +0000
441
+++ ./libs/libmythtv/channelbase.h	2009-10-15 22:09:13.000000000 +0000
442
@@ -4,8 +4,8 @@
443
 #define CHANNELBASE_H
444
 
445
 // Qt headers
446
-#include <qmap.h>
447
-#include <qstringlist.h>
448
+#include <QMap>
449
+#include <QStringList>
450
 
451
 // MythTV headers
452
 #include "channelutil.h"
453
--- ./libs/libmythtv/channelscan/channelscan_sm.h.orig	2009-09-14 21:51:47.000000000 +0000
454
+++ ./libs/libmythtv/channelscan/channelscan_sm.h	2009-10-15 22:12:52.000000000 +0000
455
@@ -33,13 +33,13 @@
456
 #include <pthread.h> 
457
 
458
 // Qt includes
459
-#include <qobject.h>
460
-#include <qstring.h>
461
-#include <qmap.h>
462
-#include <qmutex.h>
463
+#include <QObject>
464
+#include <QString>
465
+#include <QMap>
466
+#include <QMutex>
467
 #include <QList>
468
 #include <QPair>
469
-#include <qdatetime.h>
470
+#include <QDateTime>
471
 
472
 // MythTV includes
473
 #include "frequencytables.h"
474
--- ./libs/libmythtv/channelscan/frequencytablesetting.cpp.orig	2009-08-13 23:02:30.000000000 +0000
475
+++ ./libs/libmythtv/channelscan/frequencytablesetting.cpp	2009-10-15 22:15:44.000000000 +0000
476
@@ -30,7 +30,7 @@
477
 #include "frequencytablesetting.h"
478
 
479
 // Qt headers
480
-#include <qlocale.h>
481
+#include <QLocale>
482
 
483
 ScanFrequencyTable::ScanFrequencyTable() : ComboBoxSetting(this)
484
 {
485
--- ./libs/libmythtv/channelscan/panedvbutilsimport.h.orig	2009-04-11 00:04:30.000000000 +0000
486
+++ ./libs/libmythtv/channelscan/panedvbutilsimport.h	2009-10-15 22:12:52.000000000 +0000
487
@@ -31,8 +31,8 @@
488
 #define _PANE_DVB_UTILS_IMPORT_H_
489
 
490
 // Qt headers
491
-#include <qstring.h>
492
-#include <qobject.h>
493
+#include <QString>
494
+#include <QObject>
495
 
496
 // MythTV headers
497
 #include "channelscanmiscsettings.h"
498
--- ./libs/libmythtv/channelscan/paneexistingscanimport.h.orig	2009-04-18 00:45:58.000000000 +0000
499
+++ ./libs/libmythtv/channelscan/paneexistingscanimport.h	2009-10-15 22:12:52.000000000 +0000
500
@@ -30,8 +30,8 @@
501
 #define _PANE_EXISTING_SCAN_IMPORT_H_
502
 
503
 // Qt headers
504
-#include <qstring.h>
505
-#include <qobject.h>
506
+#include <QString>
507
+#include <QObject>
508
 
509
 // MythTV headers
510
 #include "channelscanmiscsettings.h"
511
--- ./libs/libmythtv/channelscan/scaninfo.h.orig	2009-04-20 02:25:39.000000000 +0000
512
+++ ./libs/libmythtv/channelscan/scaninfo.h	2009-10-15 22:09:13.000000000 +0000
513
@@ -10,8 +10,8 @@
514
 using namespace std;
515
 
516
 // Qt headers
517
-#include <qstring.h>
518
-#include <qdatetime.h>
519
+#include <QString>
520
+#include <QDateTime>
521
 
522
 // MythTV headers
523
 #include "mythexp.h"
524
--- ./libs/libmythtv/channelscan/scanmonitor.cpp.orig	2009-09-02 22:05:54.000000000 +0000
525
+++ ./libs/libmythtv/channelscan/scanmonitor.cpp	2009-10-15 22:12:52.000000000 +0000
526
@@ -33,7 +33,7 @@
527
 #include "channelscanner.h"
528
 
529
 // Qt headers
530
-#include <qapplication.h>
531
+#include <QApplication>
532
 
533
 /// Percentage to set to after the transports have been scanned
534
 #define TRANSPORT_PCT 6
535
--- ./libs/libmythtv/channelsettings.h.orig	2009-04-11 00:04:30.000000000 +0000
536
+++ ./libs/libmythtv/channelsettings.h	2009-10-15 22:25:30.000000000 +0000
537
@@ -1,8 +1,8 @@
538
 #ifndef CHANNELSETTINGS_H
539
 #define CHANNELSETTINGS_H
540
 
541
-#include <qwidget.h>
542
-#include <qsqldatabase.h>
543
+#include <QWidget>
544
+#include <QSqlDatabase>
545
 
546
 #include <cstdlib>
547
 
548
--- ./libs/libmythtv/darwinavcinfo.h.orig	2009-04-11 00:04:30.000000000 +0000
549
+++ ./libs/libmythtv/darwinavcinfo.h	2009-10-15 22:09:13.000000000 +0000
550
@@ -16,7 +16,7 @@
551
 #include <IOKit/avc/IOFireWireAVCLib.h>
552
 
553
 // Qt headers
554
-#include <qmap.h>
555
+#include <QMap>
556
 
557
 // MythTV headers
558
 #include "avcinfo.h"
559
--- ./libs/libmythtv/dbox2channel.cpp.orig	2009-04-11 00:04:30.000000000 +0000
560
+++ ./libs/libmythtv/dbox2channel.cpp	2009-10-15 22:25:30.000000000 +0000
561
@@ -9,7 +9,7 @@
562
 using namespace std;
563
 
564
 // Qt headers
565
-#include <q3http.h>
566
+#include <Q3Http>
567
 
568
 // MythTV headers
569
 #include "mythverbose.h"
570
--- ./libs/libmythtv/dbox2channel.h.orig	2009-07-06 20:42:28.000000000 +0000
571
+++ ./libs/libmythtv/dbox2channel.h	2009-10-15 22:12:52.000000000 +0000
572
@@ -13,8 +13,8 @@
573
 #endif
574
 
575
 // Qt headers
576
-#include <qstring.h>
577
-#include <qmutex.h>
578
+#include <QString>
579
+#include <QMutex>
580
 
581
 // MythTV headers
582
 #include "channelbase.h"
583
--- ./libs/libmythtv/dbox2epg.cpp.orig	2009-05-28 22:06:48.000000000 +0000
584
+++ ./libs/libmythtv/dbox2epg.cpp	2009-10-15 22:09:13.000000000 +0000
585
@@ -4,7 +4,7 @@
586
  *  Distributed as part of MythTV under GPL v2 and later.
587
  */
588
 
589
-#include <qdatetime.h>
590
+#include <QDateTime>
591
 #include <QHttp>
592
 
593
 #include "dbox2channel.h"
594
--- ./libs/libmythtv/diseqc.h.orig	2009-04-11 00:04:30.000000000 +0000
595
+++ ./libs/libmythtv/diseqc.h	2009-10-15 22:12:52.000000000 +0000
596
@@ -15,9 +15,9 @@
597
 using namespace std;
598
 
599
 // Qt headers
600
-#include <qmap.h>
601
-#include <qstring.h>
602
-#include <qmutex.h>
603
+#include <QMap>
604
+#include <QString>
605
+#include <QMutex>
606
 
607
 class DTVMultiplex;
608
 
609
--- ./libs/libmythtv/dtvconfparser.cpp.orig	2009-08-16 21:35:50.000000000 +0000
610
+++ ./libs/libmythtv/dtvconfparser.cpp	2009-10-15 22:09:13.000000000 +0000
611
@@ -31,7 +31,7 @@
612
 
613
 // Qt headers
614
 #include <QTextStream>
615
-#include <qfile.h>
616
+#include <QFile>
617
 
618
 // MythTV headers
619
 #include "mythcontext.h"
620
--- ./libs/libmythtv/dtvconfparser.h.orig	2009-08-16 21:35:50.000000000 +0000
621
+++ ./libs/libmythtv/dtvconfparser.h	2009-10-15 22:09:13.000000000 +0000
622
@@ -41,7 +41,7 @@
623
 using namespace std;
624
 
625
 // Qt headers
626
-#include <qstring.h>
627
+#include <QString>
628
 
629
 // MythTV headers
630
 #include "dtvchannel.h"
631
--- ./libs/libmythtv/dtvconfparserhelpers.h.orig	2009-10-05 16:02:07.000000000 +0000
632
+++ ./libs/libmythtv/dtvconfparserhelpers.h	2009-10-15 22:09:13.000000000 +0000
633
@@ -32,7 +32,7 @@
634
 #ifndef _DTVCONFPARSERHELPERS_H_
635
 #define _DTVCONFPARSERHELPERS_H_
636
 
637
-#include <qstring.h>
638
+#include <QString>
639
 
640
 // The following are a set of helper classes to allow easy translation
641
 // between the different string representations of various tuning params.
642
--- ./libs/libmythtv/dtvmultiplex.h.orig	2009-09-14 21:51:47.000000000 +0000
643
+++ ./libs/libmythtv/dtvmultiplex.h	2009-10-15 22:09:13.000000000 +0000
644
@@ -11,7 +11,7 @@
645
 #include <stdint.h>
646
 
647
 // Qt headers
648
-#include <qstring.h>
649
+#include <QString>
650
 
651
 // MythTV headers
652
 #include "dtvconfparserhelpers.h"
653
--- ./libs/libmythtv/dtvrecorder.h.orig	2009-08-03 17:23:43.000000000 +0000
654
+++ ./libs/libmythtv/dtvrecorder.h	2009-10-15 22:09:13.000000000 +0000
655
@@ -12,7 +12,7 @@
656
 #include <vector>
657
 using namespace std;
658
 
659
-#include <qdatetime.h>
660
+#include <QDateTime>
661
 
662
 #include "recorderbase.h"
663
 #include "H264Parser.h"
664
--- ./libs/libmythtv/dummychannel.h.orig	2009-08-17 23:52:49.000000000 +0000
665
+++ ./libs/libmythtv/dummychannel.h	2009-10-15 22:09:13.000000000 +0000
666
@@ -6,7 +6,7 @@
667
 #ifndef DUMMYCHANNEL_H
668
 #define DUMMYCHANNEL_H
669
 
670
-#include <qstring.h>
671
+#include <QString>
672
 #include "tv_rec.h"
673
 #include "channelbase.h"
674
 
675
--- ./libs/libmythtv/dvbcam.cpp.orig	2009-04-11 00:04:30.000000000 +0000
676
+++ ./libs/libmythtv/dvbcam.cpp	2009-10-15 22:12:52.000000000 +0000
677
@@ -33,8 +33,8 @@
678
  *
679
  */
680
 
681
-#include <qdatetime.h>
682
-#include <qvariant.h>
683
+#include <QDateTime>
684
+#include <QVariant>
685
 
686
 #include <iostream>
687
 #include <vector>
688
--- ./libs/libmythtv/dvbcam.h.orig	2009-04-11 00:04:30.000000000 +0000
689
+++ ./libs/libmythtv/dvbcam.h	2009-10-15 22:12:52.000000000 +0000
690
@@ -4,7 +4,7 @@
691
 #include <deque>
692
 using namespace std;
693
 
694
-#include <qmutex.h>
695
+#include <QMutex>
696
 
697
 #include "mpegtables.h"
698
 
699
--- ./libs/libmythtv/dvbrecorder.h.orig	2009-08-04 13:48:39.000000000 +0000
700
+++ ./libs/libmythtv/dvbrecorder.h	2009-10-15 22:12:52.000000000 +0000
701
@@ -14,7 +14,7 @@
702
 using namespace std;
703
 
704
 // Qt includes
705
-#include <qmutex.h>
706
+#include <QMutex>
707
 
708
 #include "dtvrecorder.h"
709
 #include "tspacket.h"
710
--- ./libs/libmythtv/dvbsignalmonitor.h.orig	2009-10-15 22:35:53.000000000 +0000
711
+++ ./libs/libmythtv/dvbsignalmonitor.h	2009-10-15 22:36:12.000000000 +0000
712
@@ -4,7 +4,7 @@
713
 #define DVBSIGNALMONITOR_H
714
 
715
 #include "dtvsignalmonitor.h"
716
-#include "qstringlist.h"
717
+#include <QStringList>
718
 
719
 class DVBChannel;
720
 class DVBStreamHandler;
721
--- ./libs/libmythtv/dvbtypes.cpp.orig	2009-04-11 00:04:30.000000000 +0000
722
+++ ./libs/libmythtv/dvbtypes.cpp	2009-10-15 22:09:13.000000000 +0000
723
@@ -1,7 +1,7 @@
724
 // -*- Mode: c++ -*-
725
 
726
 // Qt headers
727
-#include <qstring.h>
728
+#include <QString>
729
 
730
 // MythTV headers
731
 #include "dvbtypes.h"
732
--- ./libs/libmythtv/eitcache.cpp.orig	2009-04-11 00:04:30.000000000 +0000
733
+++ ./libs/libmythtv/eitcache.cpp	2009-10-15 22:09:13.000000000 +0000
734
@@ -6,7 +6,7 @@
735
  */
736
 
737
 
738
-#include <qdatetime.h>
739
+#include <QDateTime>
740
 
741
 #include "eitcache.h"
742
 #include "mythcontext.h"
743
--- ./libs/libmythtv/eitcache.h.orig	2009-04-11 00:04:30.000000000 +0000
744
+++ ./libs/libmythtv/eitcache.h	2009-10-15 22:12:52.000000000 +0000
745
@@ -9,9 +9,9 @@
746
 #include <stdint.h>
747
 
748
 // Qt headers
749
-#include <qmap.h>
750
-#include <qmutex.h>
751
-#include <qstring.h>
752
+#include <QMap>
753
+#include <QMutex>
754
+#include <QString>
755
 
756
 #include "mythexp.h"
757
 
758
--- ./libs/libmythtv/eitscanner.h.orig	2009-04-11 00:04:30.000000000 +0000
759
+++ ./libs/libmythtv/eitscanner.h	2009-10-15 22:14:18.000000000 +0000
760
@@ -3,12 +3,12 @@
761
 #define EITSCANNER_H
762
 
763
 // Qt includes
764
-#include <qmutex.h>
765
-#include <qobject.h>
766
-#include <qdatetime.h>
767
-#include <qstringlist.h>
768
-#include <qwaitcondition.h>
769
-#include <qthread.h>
770
+#include <QMutex>
771
+#include <QObject>
772
+#include <QDateTime>
773
+#include <QStringList>
774
+#include <QWaitCondition>
775
+#include <QThread>
776
 
777
 class TVRec;
778
 class ChannelBase;
779
--- ./libs/libmythtv/firewiredevice.h.orig	2009-04-11 00:04:30.000000000 +0000
780
+++ ./libs/libmythtv/firewiredevice.h	2009-10-15 22:12:52.000000000 +0000
781
@@ -12,8 +12,8 @@
782
 using namespace std;
783
 
784
 // Qt headers
785
-#include <qstring.h>
786
-#include <qmutex.h>
787
+#include <QString>
788
+#include <QMutex>
789
 
790
 // MythTV headers
791
 #include "streamlisteners.h"
792
--- ./libs/libmythtv/firewiresignalmonitor.h.orig	2009-04-11 00:04:30.000000000 +0000
793
+++ ./libs/libmythtv/firewiresignalmonitor.h	2009-10-15 22:12:52.000000000 +0000
794
@@ -3,9 +3,9 @@
795
 #ifndef _FIREWIRESIGNALMONITOR_H_
796
 #define _FIREWIRESIGNALMONITOR_H_
797
 
798
-#include <qmap.h>
799
-#include <qmutex.h>
800
-#include <qdatetime.h>
801
+#include <QMap>
802
+#include <QMutex>
803
+#include <QDateTime>
804
 
805
 #include "dtvsignalmonitor.h"
806
 #include "firewiredevice.h"
807
--- ./libs/libmythtv/frequencytables.h.orig	2009-08-19 23:49:27.000000000 +0000
808
+++ ./libs/libmythtv/frequencytables.h	2009-10-15 22:12:52.000000000 +0000
809
@@ -9,9 +9,9 @@
810
 using namespace std;
811
 
812
 // Qt includes
813
-#include <qmap.h>
814
-#include <qstring.h>
815
-#include <qmutex.h>
816
+#include <QMap>
817
+#include <QString>
818
+#include <QMutex>
819
 
820
 // MythTV includes
821
 #include "dtvchannel.h"
822
--- ./libs/libmythtv/hdhrsignalmonitor.h.orig	2009-10-15 22:33:36.000000000 +0000
823
+++ ./libs/libmythtv/hdhrsignalmonitor.h	2009-10-15 22:33:54.000000000 +0000
824
@@ -4,7 +4,7 @@
825
 #define HDHRSIGNALMONITOR_H
826
 
827
 #include "dtvsignalmonitor.h"
828
-#include "qstringlist.h"
829
+#include <QStringList>
830
 
831
 class HDHRChannel;
832
 class HDHRStreamHandler;
833
--- ./libs/libmythtv/inputgroupmap.h.orig	2009-04-11 00:04:30.000000000 +0000
834
+++ ./libs/libmythtv/inputgroupmap.h	2009-10-15 22:09:13.000000000 +0000
835
@@ -7,7 +7,7 @@
836
 using namespace std;
837
 
838
 // Qt headers
839
-#include <qmap.h>
840
+#include <QMap>
841
 
842
 // MythTV headers
843
 #include "mythexp.h"
844
--- ./libs/libmythtv/inputinfo.h.orig	2009-04-11 00:04:30.000000000 +0000
845
+++ ./libs/libmythtv/inputinfo.h	2009-10-15 22:09:13.000000000 +0000
846
@@ -3,8 +3,8 @@
847
 #define _INPUTINFO_H_
848
 
849
 // Qt headers
850
-#include <qstringlist.h>
851
-#include <qmap.h>
852
+#include <QStringList>
853
+#include <QMap>
854
 
855
 // MythTV headers
856
 #include "channelutil.h" // for DBChanList
857
--- ./libs/libmythtv/iptv/iptvchannelinfo.h.orig	2009-04-11 00:04:30.000000000 +0000
858
+++ ./libs/libmythtv/iptv/iptvchannelinfo.h	2009-10-15 22:09:13.000000000 +0000
859
@@ -6,8 +6,8 @@
860
 #ifndef _IPTV_CHANNELINFO_H_
861
 #define _IPTV_CHANNELINFO_H_
862
 
863
-#include <qmap.h>
864
-#include <qstring.h>
865
+#include <QMap>
866
+#include <QString>
867
 
868
 class IPTVChannelInfo
869
 {
870
--- ./libs/libmythtv/iptv/iptvfeederlive.h.orig	2009-04-11 00:04:30.000000000 +0000
871
+++ ./libs/libmythtv/iptv/iptvfeederlive.h	2009-10-15 22:14:18.000000000 +0000
872
@@ -12,8 +12,8 @@
873
 using namespace std;
874
 
875
 // Qt headers
876
-#include <qwaitcondition.h>
877
-#include <qmutex.h>
878
+#include <QWaitCondition>
879
+#include <QMutex>
880
 
881
 // Mythtv headers
882
 #include "iptvfeeder.h"
883
--- ./libs/libmythtv/iptv/iptvfeederwrapper.h.orig	2009-04-11 00:04:30.000000000 +0000
884
+++ ./libs/libmythtv/iptv/iptvfeederwrapper.h	2009-10-15 22:12:52.000000000 +0000
885
@@ -10,8 +10,8 @@
886
 #include <vector>
887
 using namespace std;
888
 
889
-#include <qmutex.h>
890
-#include <qstring.h>
891
+#include <QMutex>
892
+#include <QString>
893
 
894
 class IPTVFeeder;
895
 class TSDataListener;
896
--- ./libs/libmythtv/iptv/iptvmediasink.h.orig	2009-04-11 00:04:30.000000000 +0000
897
+++ ./libs/libmythtv/iptv/iptvmediasink.h	2009-10-15 22:12:52.000000000 +0000
898
@@ -10,7 +10,7 @@
899
 #include <vector>
900
 using namespace std;
901
 
902
-#include <qmutex.h>
903
+#include <QMutex>
904
 
905
 #include <MediaSink.hh>
906
 
907
--- ./libs/libmythtv/iptvchannel.h.orig	2009-04-11 00:04:30.000000000 +0000
908
+++ ./libs/libmythtv/iptvchannel.h	2009-10-15 22:12:52.000000000 +0000
909
@@ -10,7 +10,7 @@
910
 #include "dtvchannel.h"
911
 #include "iptvchannelinfo.h"
912
 
913
-#include <qmutex.h>
914
+#include <QMutex>
915
 
916
 class IPTVFeederWrapper;
917
 
918
--- ./libs/libmythtv/iptvrecorder.h.orig	2009-04-11 00:04:30.000000000 +0000
919
+++ ./libs/libmythtv/iptvrecorder.h	2009-10-15 22:14:18.000000000 +0000
920
@@ -8,7 +8,7 @@
921
 #ifndef _IPTV_RECORDER_H_
922
 #define _IPTV_RECORDER_H_
923
 
924
-#include <qwaitcondition.h>
925
+#include <QWaitCondition>
926
 
927
 #include "dtvrecorder.h"
928
 #include "streamlisteners.h"
929
--- ./libs/libmythtv/ivtvdecoder.h.orig	2009-04-11 00:04:30.000000000 +0000
930
+++ ./libs/libmythtv/ivtvdecoder.h	2009-10-15 22:09:13.000000000 +0000
931
@@ -1,8 +1,8 @@
932
 #ifndef IVTVDECODER_H_
933
 #define IVTVDECODER_H_
934
 
935
-#include <qstring.h>
936
-#include <qmap.h>
937
+#include <QString>
938
+#include <QMap>
939
 
940
 #include "programinfo.h"
941
 #include "format.h"
942
--- ./libs/libmythtv/jobqueue.h.orig	2009-08-20 03:31:28.000000000 +0000
943
+++ ./libs/libmythtv/jobqueue.h	2009-10-15 20:56:23.000000000 +0000
944
@@ -1,13 +1,12 @@
945
 #ifndef JOBQUEUE_H_
946
 #define JOBQUEUE_H_
947
 
948
-#include <qobject.h>
949
-#include <qmap.h>
950
-#include <qmutex.h>
951
-#include <qobject.h>
952
-#include <qsqldatabase.h>
953
+#include <QObject>
954
+#include <QMap>
955
+#include <QMutex>
956
+#include <QSqlDatabase>
957
 #include <QEvent>
958
-#include <qwaitcondition.h>
959
+#include <QWaitCondition>
960
 #include <pthread.h>
961
 
962
 
963
--- ./libs/libmythtv/linuxavcinfo.h.orig	2009-04-11 00:04:30.000000000 +0000
964
+++ ./libs/libmythtv/linuxavcinfo.h	2009-10-15 22:09:13.000000000 +0000
965
@@ -11,7 +11,7 @@
966
 #include <libavc1394/rom1394.h>
967
 
968
 // Qt headers
969
-#include <qmap.h>
970
+#include <QMap>
971
 
972
 // MythTV headers
973
 #include "avcinfo.h"
974
--- ./libs/libmythtv/linuxfirewiredevice.cpp.orig	2009-06-27 22:32:06.000000000 +0000
975
+++ ./libs/libmythtv/linuxfirewiredevice.cpp	2009-10-15 22:09:13.000000000 +0000
976
@@ -28,7 +28,7 @@
977
 using namespace std;
978
 
979
 // Qt headers
980
-#include <qdatetime.h>
981
+#include <QDateTime>
982
 
983
 // MythTV headers
984
 #include "linuxfirewiredevice.h"
985
--- ./libs/libmythtv/mhi.cpp.orig	2009-07-23 14:40:59.000000000 +0000
986
+++ ./libs/libmythtv/mhi.cpp	2009-10-15 22:25:30.000000000 +0000
987
@@ -1,7 +1,7 @@
988
 #include <unistd.h>
989
 
990
 #include <QRegion>
991
-#include <qbitarray.h>
992
+#include <QBitArray>
993
 
994
 #include <QVector>
995
 
996
--- ./libs/libmythtv/mpeg/atsc_huffman.h.orig	2009-04-11 00:04:30.000000000 +0000
997
+++ ./libs/libmythtv/mpeg/atsc_huffman.h	2009-10-15 22:09:13.000000000 +0000
998
@@ -5,7 +5,7 @@
999
 #include <unistd.h>
1000
 
1001
 // Qt header
1002
-#include <qstring.h>
1003
+#include <QString>
1004
 
1005
 QString atsc_huffman1_to_string(const unsigned char *compressed,
1006
                                 uint size, uint table);
1007
--- ./libs/libmythtv/mpeg/atsctables.cpp.orig	2009-10-15 22:34:14.000000000 +0000
1008
+++ ./libs/libmythtv/mpeg/atsctables.cpp	2009-10-15 22:34:28.000000000 +0000
1009
@@ -2,7 +2,7 @@
1010
 // Copyright (c) 2003-2004, Daniel Thor Kristjansson
1011
 #include "atsctables.h"
1012
 #include "atscdescriptors.h"
1013
-#include "qstring.h"
1014
+#include <QString>
1015
 
1016
 QString MasterGuideTable::TableClassString(uint i) const 
1017
 {
1018
--- ./libs/libmythtv/mpeg/dishdescriptors.h.orig	2009-04-11 00:04:30.000000000 +0000
1019
+++ ./libs/libmythtv/mpeg/dishdescriptors.h	2009-10-15 22:09:13.000000000 +0000
1020
@@ -6,7 +6,7 @@
1021
 #include <cassert>
1022
 
1023
 using namespace std;
1024
-#include <qstring.h>
1025
+#include <QString>
1026
 
1027
 #include "mythcontext.h"
1028
 #include "atscdescriptors.h"
1029
--- ./libs/libmythtv/mpeg/dvbdescriptors.h.orig	2009-08-21 19:29:37.000000000 +0000
1030
+++ ./libs/libmythtv/mpeg/dvbdescriptors.h	2009-10-15 22:12:52.000000000 +0000
1031
@@ -6,8 +6,8 @@
1032
 #include <cassert>
1033
 #include <vector>
1034
 #include <map>
1035
-#include <qmutex.h>
1036
-#include <qstring.h>
1037
+#include <QMutex>
1038
+#include <QString>
1039
 #include "mythcontext.h"
1040
 #include "mythexp.h" // MPUBLIC - Symbol Visibility
1041
 #include "mpegdescriptors.h"
1042
--- ./libs/libmythtv/mpeg/dvbtables.cpp.orig	2009-10-15 22:35:21.000000000 +0000
1043
+++ ./libs/libmythtv/mpeg/dvbtables.cpp	2009-10-15 22:35:40.000000000 +0000
1044
@@ -5,7 +5,7 @@
1045
 
1046
 #include "dvbtables.h"
1047
 #include "dvbdescriptors.h"
1048
-#include "qstring.h"
1049
+#include <QString>
1050
 
1051
 void NetworkInformationTable::Parse(void) const
1052
 {
1053
--- ./libs/libmythtv/mpeg/dvbtables.h.orig	2009-04-19 22:07:22.000000000 +0000
1054
+++ ./libs/libmythtv/mpeg/dvbtables.h	2009-10-15 22:09:13.000000000 +0000
1055
@@ -3,7 +3,7 @@
1056
 #ifndef _DVB_TABLES_H_
1057
 #define _DVB_TABLES_H_
1058
 
1059
-#include <qstring.h>
1060
+#include <QString>
1061
 #include <stdint.h>  // uint32_t
1062
 #include "mpegtables.h"
1063
 #include "dvbdescriptors.h"
1064
--- ./libs/libmythtv/mpeg/freesat_huffman.cpp.orig	2009-06-09 21:28:48.000000000 +0000
1065
+++ ./libs/libmythtv/mpeg/freesat_huffman.cpp	2009-10-15 22:09:13.000000000 +0000
1066
@@ -1,6 +1,6 @@
1067
 #include "freesat_huffman.h"
1068
 
1069
-#include <qstring.h>
1070
+#include <QString>
1071
 
1072
 struct fsattab {
1073
     unsigned int value;
1074
--- ./libs/libmythtv/mpeg/freesat_huffman.h.orig	2009-04-11 00:04:30.000000000 +0000
1075
+++ ./libs/libmythtv/mpeg/freesat_huffman.h	2009-10-15 22:09:13.000000000 +0000
1076
@@ -5,7 +5,7 @@
1077
 #include <unistd.h>
1078
 
1079
 // Qt header
1080
-#include <qstring.h>
1081
+#include <QString>
1082
 
1083
 QString freesat_huffman_to_string(const unsigned char *compressed, uint size);
1084
 
1085
--- ./libs/libmythtv/mpeg/iso639.h.orig	2009-04-11 00:04:30.000000000 +0000
1086
+++ ./libs/libmythtv/mpeg/iso639.h	2009-10-15 22:09:13.000000000 +0000
1087
@@ -2,9 +2,9 @@
1088
 #ifndef _ISO_639_2_H_
1089
 #define _ISO_639_2_H_
1090
 
1091
-#include <qmap.h>
1092
-#include <qstring.h>
1093
-#include <qstringlist.h>
1094
+#include <QMap>
1095
+#include <QString>
1096
+#include <QStringList>
1097
 #include <vector>
1098
 #include "mythexp.h"
1099
 using namespace std;
1100
--- ./libs/libmythtv/mpeg/mpegstreamdata.h.orig	2009-08-27 19:38:29.000000000 +0000
1101
+++ ./libs/libmythtv/mpeg/mpegstreamdata.h	2009-10-15 22:09:13.000000000 +0000
1102
@@ -6,7 +6,7 @@
1103
 #include <vector>
1104
 using namespace std;
1105
 
1106
-#include <qmap.h>
1107
+#include <QMap>
1108
 #include <stdint.h>  // uint64_t
1109
 #include "tspacket.h"
1110
 #include "util.h"
1111
--- ./libs/libmythtv/mpeg/premieredescriptors.h.orig	2009-04-11 00:04:30.000000000 +0000
1112
+++ ./libs/libmythtv/mpeg/premieredescriptors.h	2009-10-15 22:09:13.000000000 +0000
1113
@@ -5,8 +5,8 @@
1114
 #include <stdint.h>
1115
 #include <inttypes.h>
1116
 
1117
-#include <qstring.h>
1118
-#include <qdatetime.h>
1119
+#include <QString>
1120
+#include <QDateTime>
1121
 
1122
 #include "mpegdescriptors.h"
1123
 
1124
--- ./libs/libmythtv/mpeg/premieretables.h.orig	2009-04-11 00:04:30.000000000 +0000
1125
+++ ./libs/libmythtv/mpeg/premieretables.h	2009-10-15 22:09:13.000000000 +0000
1126
@@ -2,7 +2,7 @@
1127
 #ifndef _PRIVATE_TABLES_H_
1128
 #define _PRIVATE_TABLES_H_
1129
 
1130
-#include <qstring.h>
1131
+#include <QString>
1132
 #include <stdint.h>  // uint32_t
1133
 #include "mpegtables.h"
1134
 #include "dvbdescriptors.h"
1135
--- ./libs/libmythtv/mpeg/tsstats.h.orig	2009-04-11 00:04:30.000000000 +0000
1136
+++ ./libs/libmythtv/mpeg/tsstats.h	2009-10-15 22:09:13.000000000 +0000
1137
@@ -3,8 +3,8 @@
1138
 #ifndef __TS_STATS__
1139
 #define __TS_STATS__
1140
 
1141
-#include <qstring.h>
1142
-#include <qmap.h>
1143
+#include <QString>
1144
+#include <QMap>
1145
 
1146
 /** \class TSStats
1147
  *  \brief Collects statistics on the number of TSPacket's seen on each PID.
1148
--- ./libs/libmythtv/openglcontext.h.orig	2009-08-31 07:53:52.000000000 +0000
1149
+++ ./libs/libmythtv/openglcontext.h	2009-10-15 22:12:52.000000000 +0000
1150
@@ -6,8 +6,8 @@
1151
 using namespace std;
1152
 
1153
 // Qt headers
1154
-#include <qstring.h>
1155
-#include <qrect.h>
1156
+#include <QString>
1157
+#include <QRect>
1158
 
1159
 #ifdef USING_X11
1160
 // MythTV headers
1161
--- ./libs/libmythtv/openglvideo.h.orig	2009-09-07 02:13:12.000000000 +0000
1162
+++ ./libs/libmythtv/openglvideo.h	2009-10-15 22:12:52.000000000 +0000
1163
@@ -5,8 +5,8 @@
1164
 #include <map>
1165
 using namespace std;
1166
 
1167
-#include <qrect.h>
1168
-#include <qmap.h>
1169
+#include <QRect>
1170
+#include <QMap>
1171
 
1172
 #include "videooutbase.h"
1173
 #include "videoouttypes.h"
1174
--- libs/libmythtv/osd.h.orig	2009-07-17 13:23:54.000000000 +0000
1175
+++ libs/libmythtv/osd.h	2009-10-15 23:19:10.000000000 +0000
1176
@@ -5,17 +5,17 @@
1177
 #include <vector>
1178
 using namespace std;
1179
 
1180
-#include <qstring.h>
1181
-#include <qstringlist.h>
1182
-#include <qrect.h>
1183
-#include <qpoint.h>
1184
+#include <QString>
1185
+#include <QStringList>
1186
+#include <QRect>
1187
+#include <QPoint>
1188
 #include <QKeyEvent>
1189
 #include <ctime>
1190
-#include <qmap.h>
1191
-#include <qdom.h>
1192
-#include <qmutex.h>
1193
-#include <qobject.h>
1194
-#include <qregexp.h>
1195
+#include <QMap>
1196
+#include <Qt/qdom.h>
1197
+#include <QMutex>
1198
+#include <QObject>
1199
+#include <QRegExp>
1200
 
1201
 // Mythtv Headers
1202
 #include "themeinfo.h"
1203
--- ./libs/libmythtv/osdsurface.h.orig	2009-04-11 00:04:30.000000000 +0000
1204
+++ ./libs/libmythtv/osdsurface.h	2009-10-15 22:15:44.000000000 +0000
1205
@@ -1,8 +1,8 @@
1206
 #ifndef OSDSURFACE_H_
1207
 #define OSDSURFACE_H_
1208
 
1209
-#include <qregion.h>
1210
-#include <qmutex.h>
1211
+#include <QRegion>
1212
+#include <QMutex>
1213
 #include "blend.h"
1214
 
1215
 #define MAX_NEG_CROP 1024
1216
--- ./libs/libmythtv/playgroup.cpp.orig	2009-06-02 16:44:12.000000000 +0000
1217
+++ ./libs/libmythtv/playgroup.cpp	2009-10-15 22:14:18.000000000 +0000
1218
@@ -1,8 +1,8 @@
1219
 #include "mythcontext.h"
1220
 #include "mythdb.h"
1221
-#include <qsqldatabase.h>
1222
-#include <qcursor.h>
1223
-#include <qlayout.h>
1224
+#include <QSqlDatabase>
1225
+#include <QCursor>
1226
+#include <QLayout>
1227
 #include <iostream>
1228
 #include "playgroup.h"
1229
 #include "programinfo.h"
1230
--- ./libs/libmythtv/playgroup.h.orig	2009-10-15 22:32:53.000000000 +0000
1231
+++ ./libs/libmythtv/playgroup.h	2009-10-15 22:33:15.000000000 +0000
1232
@@ -1,7 +1,7 @@
1233
 #ifndef PLAYGROUP_H
1234
 #define PLAYGROUP_H
1235
 
1236
-#include "qstringlist.h"
1237
+#include <QStringList>
1238
 #include "settings.h"
1239
 #include "mythwidgets.h"
1240
 
1241
--- ./libs/libmythtv/previewgenerator.h.orig	2009-08-21 19:29:37.000000000 +0000
1242
+++ ./libs/libmythtv/previewgenerator.h	2009-10-15 22:12:52.000000000 +0000
1243
@@ -4,8 +4,8 @@
1244
 
1245
 #include <pthread.h>
1246
 
1247
-#include <qstring.h>
1248
-#include <qmutex.h>
1249
+#include <QString>
1250
+#include <QMutex>
1251
 
1252
 #include "programinfo.h"
1253
 #include "util.h"
1254
--- ./libs/libmythtv/profilegroup.cpp.orig	2009-06-02 16:44:12.000000000 +0000
1255
+++ ./libs/libmythtv/profilegroup.cpp	2009-10-15 22:14:18.000000000 +0000
1256
@@ -5,9 +5,9 @@
1257
 #include "mythdb.h"
1258
 #include "mythuihelper.h"
1259
 #include "cardutil.h"
1260
-#include <qsqldatabase.h>
1261
-#include <qcursor.h>
1262
-#include <qlayout.h>
1263
+#include <QSqlDatabase>
1264
+#include <QCursor>
1265
+#include <QLayout>
1266
 #include <iostream>
1267
 
1268
 QString ProfileGroupStorage::GetWhereClause(MSqlBindings &bindings) const
1269
--- ./libs/libmythtv/recorderbase.h.orig	2009-10-08 16:06:13.000000000 +0000
1270
+++ ./libs/libmythtv/recorderbase.h	2009-10-15 22:14:18.000000000 +0000
1271
@@ -2,11 +2,11 @@
1272
 #ifndef RECORDERBASE_H_
1273
 #define RECORDERBASE_H_
1274
 
1275
-#include <qmutex.h>
1276
-#include <qstring.h>
1277
-#include <qmap.h>
1278
-#include <qsqldatabase.h>
1279
-#include <qwaitcondition.h>
1280
+#include <QMutex>
1281
+#include <QString>
1282
+#include <QMap>
1283
+#include <QSqlDatabase>
1284
+#include <QWaitCondition>
1285
 
1286
 #include <pthread.h>
1287
 
1288
--- ./libs/libmythtv/remoteencoder.h.orig	2009-10-15 21:20:35.000000000 +0000
1289
+++ ./libs/libmythtv/remoteencoder.h	2009-10-15 21:20:55.000000000 +0000
1290
@@ -1,9 +1,9 @@
1291
 #ifndef REMOTEENCODER_H_
1292
 #define REMOTEENCODER_H_
1293
 
1294
-#include <qstringlist.h>
1295
-#include <qmutex.h>
1296
-#include <qmap.h>
1297
+#include <QStringList>
1298
+#include <QMutex>
1299
+#include <QMap>
1300
 
1301
 #include "mythexp.h"
1302
 #include "videoouttypes.h"
1303
--- ./libs/libmythtv/signalmonitor.h.orig	2009-07-17 17:16:29.000000000 +0000
1304
+++ ./libs/libmythtv/signalmonitor.h	2009-10-15 22:12:52.000000000 +0000
1305
@@ -13,8 +13,8 @@
1306
 using namespace std;
1307
 
1308
 // Qt headers
1309
-#include <qobject.h>
1310
-#include <qmutex.h>
1311
+#include <QObject>
1312
+#include <QMutex>
1313
 
1314
 // MythTV headers
1315
 #include "signalmonitorvalue.h"
1316
--- ./libs/libmythtv/signalmonitorvalue.h.orig	2009-04-11 00:04:30.000000000 +0000
1317
+++ ./libs/libmythtv/signalmonitorvalue.h	2009-10-15 22:09:13.000000000 +0000
1318
@@ -3,7 +3,7 @@
1319
 #define SIGNALMONITORVALUES_H
1320
 
1321
 #include <vector>
1322
-#include <qstringlist.h>
1323
+#include <QStringList>
1324
 #include <mythcontext.h>
1325
 
1326
 class SignalMonitorValue
1327
--- ./libs/libmythtv/sourceutil.h.orig	2009-09-14 18:59:30.000000000 +0000
1328
+++ ./libs/libmythtv/sourceutil.h	2009-10-15 22:09:13.000000000 +0000
1329
@@ -7,7 +7,7 @@
1330
 using namespace std;
1331
 
1332
 // Qt headers
1333
-#include <qstring.h>
1334
+#include <QString>
1335
 
1336
 #include "mythexp.h"
1337
 
1338
--- ./libs/libmythtv/teletextdecoder.h.orig	2009-04-11 00:04:30.000000000 +0000
1339
+++ ./libs/libmythtv/teletextdecoder.h	2009-10-15 22:14:18.000000000 +0000
1340
@@ -3,9 +3,9 @@
1341
 
1342
 #include <stdint.h>
1343
 
1344
-#include <qwaitcondition.h>
1345
-#include <qobject.h>
1346
-#include <qmutex.h>
1347
+#include <QWaitCondition>
1348
+#include <QObject>
1349
+#include <QMutex>
1350
 
1351
 class OSDType;
1352
 
1353
--- ./libs/libmythtv/textsubtitleparser.cpp.orig	2009-07-13 18:41:55.000000000 +0000
1354
+++ ./libs/libmythtv/textsubtitleparser.cpp	2009-10-15 22:21:14.000000000 +0000
1355
@@ -8,7 +8,7 @@
1356
 #include <cstring>
1357
 #include <climits>
1358
 #include <algorithm>
1359
-#include <qtextcodec.h>
1360
+#include <QTextCodec>
1361
 
1362
 #include "mythcontext.h"
1363
 #include "RingBuffer.h"
1364
--- ./libs/libmythtv/transporteditor.h.orig	2009-04-11 00:04:30.000000000 +0000
1365
+++ ./libs/libmythtv/transporteditor.h	2009-10-15 22:12:52.000000000 +0000
1366
@@ -32,7 +32,7 @@
1367
 #ifndef _TRANSPORT_EDITOR_H_
1368
 #define _TRANSPORT_EDITOR_H_
1369
 
1370
-#include <qobject.h>
1371
+#include <QObject>
1372
 #include "settings.h"
1373
 
1374
 class VideoSourceSelector;
1375
--- ./libs/libmythtv/ttfont.h.orig	2009-07-06 20:42:28.000000000 +0000
1376
+++ ./libs/libmythtv/ttfont.h	2009-10-15 22:12:52.000000000 +0000
1377
@@ -5,9 +5,9 @@
1378
 #include FT_FREETYPE_H
1379
 #include FT_GLYPH_H
1380
 
1381
-#include <qstring.h>
1382
-#include <qmap.h>
1383
-#include <qcolor.h>
1384
+#include <QString>
1385
+#include <QMap>
1386
+#include <QColor>
1387
 
1388
 #include "mythconfig.h"
1389
 
1390
--- ./libs/libmythtv/tv.h.orig	2009-04-11 00:04:30.000000000 +0000
1391
+++ ./libs/libmythtv/tv.h	2009-10-15 22:09:13.000000000 +0000
1392
@@ -1,7 +1,7 @@
1393
 #ifndef TV_H
1394
 #define TV_H
1395
 
1396
-#include <qstring.h>
1397
+#include <QString>
1398
 #include "videoouttypes.h"
1399
 
1400
 /** \brief ChannelChangeDirection is an enumeration of possible channel
1401
--- ./libs/libmythtv/tv_play.h.orig	2009-09-19 06:32:08.000000000 +0000
1402
+++ ./libs/libmythtv/tv_play.h	2009-10-15 22:14:18.000000000 +0000
1403
@@ -3,17 +3,17 @@
1404
 #ifndef TVPLAY_H
1405
 #define TVPLAY_H
1406
 
1407
-#include <qstring.h>
1408
-#include <qmap.h>
1409
+#include <QString>
1410
+#include <QMap>
1411
 #include <QHash>
1412
-#include <qdatetime.h>
1413
+#include <QDateTime>
1414
 #include <QKeyEvent>
1415
 #include <QEvent>
1416
 #include <pthread.h>
1417
-#include <qmutex.h>
1418
-#include <qstringlist.h>
1419
-#include <qregexp.h>
1420
-#include <qwaitcondition.h>
1421
+#include <QMutex>
1422
+#include <QStringList>
1423
+#include <QRegExp>
1424
+#include <QWaitCondition>
1425
 #include <QThread>
1426
 #include <QReadWriteLock>
1427
 
1428
@@ -28,7 +28,7 @@
1429
 #include "inputinfo.h"
1430
 #include "channelgroup.h"
1431
 
1432
-#include <qobject.h>
1433
+#include <QObject>
1434
 
1435
 #include <vector>
1436
 using namespace std;
1437
--- ./libs/libmythtv/tv_rec.cpp.orig	2009-10-01 18:01:46.000000000 +0000
1438
+++ ./libs/libmythtv/tv_rec.cpp	2009-10-15 22:12:52.000000000 +0000
1439
@@ -11,8 +11,8 @@
1440
 using namespace std;
1441
 
1442
 // Qt headers
1443
-#include <qapplication.h>
1444
-#include <qsqldatabase.h>
1445
+#include <QApplication>
1446
+#include <QSqlDatabase>
1447
 
1448
 // MythTV headers
1449
 #include "mythconfig.h"
1450
--- ./libs/libmythtv/tvosdmenuentry.h.orig	2009-08-08 12:26:02.000000000 +0000
1451
+++ ./libs/libmythtv/tvosdmenuentry.h	2009-10-15 22:12:52.000000000 +0000
1452
@@ -1,9 +1,9 @@
1453
 #ifndef TVOSDMENUENTRY_H_
1454
 #define TVOSDMENUENTRY_H_
1455
 
1456
-#include <qstring.h>
1457
-#include <qstringlist.h>
1458
-#include <qmutex.h>
1459
+#include <QString>
1460
+#include <QStringList>
1461
+#include <QMutex>
1462
 #include <QVariant>
1463
 #include "tv.h"
1464
 #include "mythexp.h"
1465
--- ./libs/libmythtv/util-opengl.h.orig	2009-08-22 11:11:52.000000000 +0000
1466
+++ ./libs/libmythtv/util-opengl.h	2009-10-15 22:09:13.000000000 +0000
1467
@@ -25,7 +25,7 @@
1468
 #endif
1469
 
1470
 // Qt headers
1471
-#include <qstring.h>
1472
+#include <QString>
1473
 
1474
 #ifndef GL_TEXTTURE0
1475
 #define GL_TEXTURE0 0x84C0
1476
--- ./libs/libmythtv/util-xv.h.orig	2009-08-26 04:39:14.000000000 +0000
1477
+++ ./libs/libmythtv/util-xv.h	2009-10-15 22:09:13.000000000 +0000
1478
@@ -3,7 +3,7 @@
1479
 #ifndef _UTIL_XV_H_
1480
 #define _UTIL_XV_H_
1481
 
1482
-#include <qmap.h>
1483
+#include <QMap>
1484
 
1485
 #include "videobuffers.h"
1486
 #include "exitcodes.h"
1487
--- ./libs/libmythtv/videobuffers.h.orig	2009-07-06 11:33:40.000000000 +0000
1488
+++ ./libs/libmythtv/videobuffers.h	2009-10-15 22:25:30.000000000 +0000
1489
@@ -8,9 +8,9 @@
1490
 }
1491
 #include <vector>
1492
 #include <map>
1493
-#include <qmutex.h>
1494
-#include <qstring.h>
1495
-#include <qwaitcondition.h>
1496
+#include <QMutex>
1497
+#include <QString>
1498
+#include <QWaitCondition>
1499
 #include "mythdeque.h"
1500
 
1501
 #ifdef USING_XVMC
1502
--- ./libs/libmythtv/videodisplayprofile.h.orig	2009-06-08 01:42:55.000000000 +0000
1503
+++ ./libs/libmythtv/videodisplayprofile.h	2009-10-15 22:14:18.000000000 +0000
1504
@@ -6,10 +6,10 @@
1505
 #include <vector>
1506
 using namespace std;
1507
 
1508
-#include <qstringlist.h>
1509
-#include <qmutex.h>
1510
-#include <qsize.h>
1511
-#include <qmap.h>
1512
+#include <QStringList>
1513
+#include <QMutex>
1514
+#include <QSize>
1515
+#include <QMap>
1516
 
1517
 #include "mythcontext.h"
1518
 
1519
--- ./libs/libmythtv/videoout_d3d.cpp.orig	2009-09-03 05:05:37.000000000 +0000
1520
+++ ./libs/libmythtv/videoout_d3d.cpp	2009-10-15 22:12:52.000000000 +0000
1521
@@ -20,7 +20,7 @@
1522
 #include "mmsystem.h"
1523
 #include "tv.h"
1524
 
1525
-#include <qapplication.h>
1526
+#include <QApplication>
1527
 
1528
 #undef UNICODE
1529
 
1530
--- ./libs/libmythtv/videoout_directfb.h.orig	2009-06-30 11:47:43.000000000 +0000
1531
+++ ./libs/libmythtv/videoout_directfb.h	2009-10-15 22:12:52.000000000 +0000
1532
@@ -1,7 +1,7 @@
1533
 #ifndef VIDEOOUT_DIRECTFB_H
1534
 #define VIDEOOUT_DIRECTFB_H
1535
 
1536
-#include <qobject.h>
1537
+#include <QObject>
1538
 #include "videooutbase.h"
1539
 
1540
 class NuppelVideoPlayer;
1541
--- ./libs/libmythtv/videoout_dvdv.mm.orig	2008-11-12 18:32:17.000000000 +0000
1542
+++ ./libs/libmythtv/videoout_dvdv.mm	2009-10-15 22:25:30.000000000 +0000
1543
@@ -11,11 +11,11 @@
1544
 #import <AGL/agl.h>
1545
 #import <OpenGL/glext.h>
1546
 
1547
-#include <qmutex.h>
1548
-#include <qstring.h>
1549
-#include <q3ptrqueue.h>
1550
-#include <qmap.h>
1551
-#include <qsize.h>
1552
+#include <QMutex>
1553
+#include <QString>
1554
+#include <Q3PtrQueue>
1555
+#include <QMap>
1556
+#include <QSize>
1557
 
1558
 #include "libmyth/mythconfig.h"
1559
 #include "libmyth/mythverbose.h"
1560
--- ./libs/libmythtv/videoout_ivtv.h.orig	2009-06-30 11:47:43.000000000 +0000
1561
+++ ./libs/libmythtv/videoout_ivtv.h	2009-10-15 22:12:52.000000000 +0000
1562
@@ -1,8 +1,8 @@
1563
 #ifndef VIDEOOUT_IVTV_H_
1564
 #define VIDEOOUT_IVTV_H_
1565
 
1566
-#include <qstring.h>
1567
-#include <qmutex.h>
1568
+#include <QString>
1569
+#include <QMutex>
1570
 
1571
 #include "videooutbase.h"
1572
 
1573
--- ./libs/libmythtv/videoout_null.h.orig	2009-06-30 11:47:43.000000000 +0000
1574
+++ ./libs/libmythtv/videoout_null.h	2009-10-15 22:12:52.000000000 +0000
1575
@@ -1,7 +1,7 @@
1576
 #ifndef VIDEOOUT_NULL_H_
1577
 #define VIDEOOUT_NULL_H_
1578
 
1579
-#include <qmutex.h>
1580
+#include <QMutex>
1581
 
1582
 #include "videooutbase.h"
1583
 
1584
--- libs/libmythupnp/configuration.h.orig	2009-04-11 00:04:30.000000000 +0000
1585
+++ libs/libmythupnp/configuration.h	2009-10-15 23:22:02.000000000 +0000
1586
@@ -24,8 +24,8 @@
1587
 #ifndef __CONFIGURATION_H__
1588
 #define __CONFIGURATION_H__
1589
 
1590
-#include <qdom.h>
1591
-#include <qstringlist.h>
1592
+#include <Qt/qdom.h>
1593
+#include <QStringList>
1594
 
1595
 class Configuration 
1596
 {
1597
--- libs/libmythupnp/mythxmlclient.h.orig	2009-04-14 02:33:12.000000000 +0000
1598
+++ libs/libmythupnp/mythxmlclient.h	2009-10-15 23:21:42.000000000 +0000
1599
@@ -24,8 +24,8 @@
1600
 #ifndef MYTHXMLCLIENT_H_
1601
 #define MYTHXMLCLIENT_H_
1602
 
1603
-#include <qdom.h>
1604
-#include <qbuffer.h>
1605
+#include <Qt/qdom.h>
1606
+#include <QBuffer>
1607
 
1608
 #include "httpcomms.h"
1609
 
1610
--- ./libs/libmythupnp/refcounted.h.orig	2009-04-11 00:04:30.000000000 +0000
1611
+++ ./libs/libmythupnp/refcounted.h	2009-10-15 22:12:52.000000000 +0000
1612
@@ -24,7 +24,7 @@
1613
 #ifndef __REFCOUNTED_H__
1614
 #define __REFCOUNTED_H__
1615
 
1616
-#include <qmutex.h>
1617
+#include <QMutex>
1618
 
1619
 /////////////////////////////////////////////////////////////////////////////
1620
 /////////////////////////////////////////////////////////////////////////////
1621
--- ./libs/libmythupnp/soapclient.cpp.orig	2009-04-11 00:04:30.000000000 +0000
1622
+++ ./libs/libmythupnp/soapclient.cpp	2009-10-15 22:15:44.000000000 +0000
1623
@@ -21,7 +21,7 @@
1624
 //
1625
 //////////////////////////////////////////////////////////////////////////////
1626
 
1627
-#include <qbuffer.h>
1628
+#include <QBuffer>
1629
 
1630
 #include "soapclient.h"
1631
 
1632
--- libs/libmythupnp/soapclient.h.orig	2009-04-11 00:04:30.000000000 +0000
1633
+++ libs/libmythupnp/soapclient.h	2009-10-15 23:21:25.000000000 +0000
1634
@@ -24,7 +24,7 @@
1635
 #ifndef SOAPCLIENT_H_
1636
 #define SOAPCLIENT_H_
1637
 
1638
-#include <qdom.h>
1639
+#include <Qt/qdom.h>
1640
 
1641
 #include "httpcomms.h"
1642
 #include "upnputil.h"
1643
--- ./libs/libmythupnp/ssdp.cpp.orig	2009-08-12 16:30:58.000000000 +0000
1644
+++ ./libs/libmythupnp/ssdp.cpp	2009-10-15 22:14:18.000000000 +0000
1645
@@ -29,11 +29,11 @@
1646
 #include "multicast.h"
1647
 #include "broadcast.h"
1648
 
1649
-#include <qregexp.h>
1650
+#include <QRegExp>
1651
 
1652
 #include <unistd.h>
1653
 #include <stdlib.h>
1654
-#include <qstringlist.h>
1655
+#include <QStringList>
1656
 #include <sys/time.h>
1657
 
1658
 /////////////////////////////////////////////////////////////////////////////
1659
--- ./libs/libmythupnp/taskqueue.cpp.orig	2009-04-11 00:04:30.000000000 +0000
1660
+++ ./libs/libmythupnp/taskqueue.cpp	2009-10-15 22:09:13.000000000 +0000
1661
@@ -23,7 +23,7 @@
1662
 
1663
 #include "taskqueue.h"
1664
 #include <sys/time.h>
1665
-#include <qdatetime.h>
1666
+#include <QDateTime>
1667
 
1668
 #include <iostream>
1669
 
1670
--- ./libs/libmythupnp/upnpdevice.cpp.orig	2009-04-14 02:21:29.000000000 +0000
1671
+++ ./libs/libmythupnp/upnpdevice.cpp	2009-10-15 22:09:13.000000000 +0000
1672
@@ -28,7 +28,7 @@
1673
 #include <unistd.h>
1674
 #include <cerrno>
1675
 
1676
-#include <qfile.h>
1677
+#include <QFile>
1678
 #include <QTextStream>
1679
 
1680
 int DeviceLocation::g_nAllocated   = 0;       // Debugging only
1681
--- ./libs/libmythupnp/upnpmsrr.cpp.orig	2009-07-08 07:46:10.000000000 +0000
1682
+++ ./libs/libmythupnp/upnpmsrr.cpp	2009-10-15 22:14:18.000000000 +0000
1683
@@ -9,7 +9,7 @@
1684
 #include "upnpmsrr.h"
1685
 
1686
 #include <math.h>
1687
-#include <qregexp.h>
1688
+#include <QRegExp>
1689
 
1690
 /////////////////////////////////////////////////////////////////////////////
1691
 //
1692
--- libs/libmythupnp/upnpmsrr.h.orig	2009-04-11 00:04:30.000000000 +0000
1693
+++ libs/libmythupnp/upnpmsrr.h	2009-10-15 23:21:08.000000000 +0000
1694
@@ -1,8 +1,8 @@
1695
 #ifndef UPnpMSRR_H_
1696
 #define UPnpMSRR_H_
1697
 
1698
-#include <qdom.h>
1699
-#include <qdatetime.h> 
1700
+#include <Qt/qdom.h>
1701
+#include <QDateTime> 
1702
 
1703
 #include "httpserver.h"
1704
 #include "eventing.h"
1705
--- ./libs/libmythupnp/upnputil.cpp.orig	2009-07-06 20:42:28.000000000 +0000
1706
+++ ./libs/libmythupnp/upnputil.cpp	2009-10-15 22:21:14.000000000 +0000
1707
@@ -27,7 +27,7 @@
1708
 #include <cerrno>
1709
 
1710
 // Qt headers
1711
-#include <quuid.h>
1712
+#include <QUuid>
1713
 
1714
 // MythTV headers
1715
 #include "upnputil.h"
1716
--- ./programs/mythbackend/autoexpire.cpp.orig	2009-08-21 05:32:05.000000000 +0000
1717
+++ ./programs/mythbackend/autoexpire.cpp	2009-10-15 22:21:14.000000000 +0000
1718
@@ -3,10 +3,10 @@
1719
 #include <signal.h>
1720
 
1721
 
1722
-#include <qregexp.h>
1723
-#include <qstring.h>
1724
-#include <qdatetime.h>
1725
-#include <qfileinfo.h>
1726
+#include <QRegExp>
1727
+#include <QString>
1728
+#include <QDateTime>
1729
+#include <QFileInfo>
1730
 
1731
 #include <iostream>
1732
 #include <algorithm>
1733
--- ./programs/mythbackend/autoexpire.h.orig	2009-08-12 08:25:42.000000000 +0000
1734
+++ ./programs/mythbackend/autoexpire.h	2009-10-15 22:14:18.000000000 +0000
1735
@@ -9,10 +9,10 @@
1736
 #include <vector>
1737
 #include <set>
1738
 
1739
-#include <qmap.h> 
1740
-#include <qmutex.h>
1741
-#include <qwaitcondition.h>
1742
-#include <qobject.h>
1743
+#include <QMap> 
1744
+#include <QMutex>
1745
+#include <QWaitCondition>
1746
+#include <QObject>
1747
 
1748
 using namespace std;
1749
 class ProgramInfo;
1750
--- ./programs/mythbackend/backendutil.cpp.orig	2009-09-05 13:55:01.000000000 +0000
1751
+++ ./programs/mythbackend/backendutil.cpp	2009-10-15 22:12:52.000000000 +0000
1752
@@ -8,9 +8,9 @@
1753
 #include <sys/vfs.h>
1754
 #endif
1755
 
1756
-#include <qdir.h>
1757
-#include <qmutex.h>
1758
-#include <qmap.h>
1759
+#include <QDir>
1760
+#include <QMutex>
1761
+#include <QMap>
1762
 
1763
 #include "backendutil.h"
1764
 #include "remoteutil.h"
1765
--- ./programs/mythbackend/encoderlink.h.orig	2009-05-09 18:51:42.000000000 +0000
1766
+++ ./programs/mythbackend/encoderlink.h	2009-10-15 22:09:13.000000000 +0000
1767
@@ -1,7 +1,7 @@
1768
 #ifndef ENCODERLINK_H_
1769
 #define ENCODERLINK_H_
1770
 
1771
-#include <qstring.h>
1772
+#include <QString>
1773
 
1774
 #include "tv.h"
1775
 #include "programinfo.h"
1776
--- ./programs/mythbackend/filetransfer.h.orig	2009-08-06 03:14:47.000000000 +0000
1777
+++ ./programs/mythbackend/filetransfer.h	2009-10-15 22:14:18.000000000 +0000
1778
@@ -9,9 +9,9 @@
1779
 using namespace std;
1780
 
1781
 // Qt headers
1782
-#include <qstring.h>
1783
-#include <qmutex.h>
1784
-#include <qwaitcondition.h>
1785
+#include <QString>
1786
+#include <QMutex>
1787
+#include <QWaitCondition>
1788
 
1789
 class ProgramInfo;
1790
 class RingBuffer;
1791
--- ./programs/mythbackend/housekeeper.cpp.orig	2009-08-21 13:39:14.000000000 +0000
1792
+++ ./programs/mythbackend/housekeeper.cpp	2009-10-15 22:21:14.000000000 +0000
1793
@@ -1,12 +1,12 @@
1794
 #include <unistd.h>
1795
 #include <sys/types.h>
1796
 #include <unistd.h>
1797
-#include <qsqldatabase.h>
1798
-#include <qsqlquery.h>
1799
-#include <qstring.h>
1800
-#include <qdatetime.h>
1801
-#include <qstringlist.h>
1802
-#include <qfileinfo.h>
1803
+#include <QSqlDatabase>
1804
+#include <QSqlQuery>
1805
+#include <QString>
1806
+#include <QDateTime>
1807
+#include <QStringList>
1808
+#include <QFileInfo>
1809
 
1810
 #include <iostream>
1811
 #include <cstdlib>
1812
--- programs/mythbackend/httpstatus.h.orig	2009-04-11 00:04:30.000000000 +0000
1813
+++ programs/mythbackend/httpstatus.h	2009-10-15 23:20:47.000000000 +0000
1814
@@ -11,8 +11,8 @@
1815
 #ifndef HTTPSTATUS_H_
1816
 #define HTTPSTATUS_H_
1817
 
1818
-#include <qdom.h>
1819
-#include <qdatetime.h> 
1820
+#include <Qt/qdom.h>
1821
+#include <QDateTime> 
1822
 
1823
 #include "httpserver.h"
1824
 #include "mainserver.h"
1825
--- ./programs/mythbackend/mediaserver.h.orig	2009-09-06 07:47:00.000000000 +0000
1826
+++ ./programs/mythbackend/mediaserver.h	2009-10-15 22:12:52.000000000 +0000
1827
@@ -11,8 +11,8 @@
1828
 #ifndef __MEDIASERVER_H__
1829
 #define __MEDIASERVER_H__
1830
 
1831
-#include <qobject.h>
1832
-#include <qmutex.h>
1833
+#include <QObject>
1834
+#include <QMutex>
1835
 
1836
 #include "libmythupnp/upnp.h"
1837
 
1838
--- ./programs/mythbackend/playbacksock.h.orig	2009-10-01 19:43:38.000000000 +0000
1839
+++ ./programs/mythbackend/playbacksock.h	2009-10-15 22:12:52.000000000 +0000
1840
@@ -1,8 +1,8 @@
1841
 #ifndef PLAYBACKSOCK_H_
1842
 #define PLAYBACKSOCK_H_
1843
 
1844
-#include <qstring.h>
1845
-#include <qmutex.h>
1846
+#include <QString>
1847
+#include <QMutex>
1848
 
1849
 #include "programinfo.h"
1850
 
1851
--- ./programs/mythbackend/scheduler.cpp.orig	2009-09-18 00:30:33.000000000 +0000
1852
+++ ./programs/mythbackend/scheduler.cpp	2009-10-15 22:21:14.000000000 +0000
1853
@@ -1,10 +1,10 @@
1854
 #include <unistd.h>
1855
-#include <qsqldatabase.h>
1856
-#include <qsqlquery.h>
1857
-#include <qregexp.h>
1858
-#include <qstring.h>
1859
-#include <qdatetime.h>
1860
-#include <qfile.h>
1861
+#include <QSqlDatabase>
1862
+#include <QSqlQuery>
1863
+#include <QRegExp>
1864
+#include <QString>
1865
+#include <QDateTime>
1866
+#include <QFile>
1867
 
1868
 #include <iostream>
1869
 #include <algorithm>
1870
--- ./programs/mythbackend/scheduler.h.orig	2009-09-14 18:20:41.000000000 +0000
1871
+++ ./programs/mythbackend/scheduler.h	2009-10-15 22:14:18.000000000 +0000
1872
@@ -8,10 +8,10 @@
1873
 using namespace std;
1874
 
1875
 // Qt headers
1876
-#include <qmutex.h>
1877
-#include <qwaitcondition.h>
1878
-#include <qmap.h> 
1879
-#include <qobject.h>
1880
+#include <QMutex>
1881
+#include <QWaitCondition>
1882
+#include <QMap> 
1883
+#include <QObject>
1884
 
1885
 // MythTV headers
1886
 #include "recordinginfo.h"
1887
--- ./programs/mythbackend/upnpcdsmusic.cpp.orig	2009-04-11 00:04:30.000000000 +0000
1888
+++ ./programs/mythbackend/upnpcdsmusic.cpp	2009-10-15 22:21:14.000000000 +0000
1889
@@ -10,7 +10,7 @@
1890
 
1891
 #include "upnpcdsmusic.h"
1892
 #include "httprequest.h"
1893
-#include <qfileinfo.h>
1894
+#include <QFileInfo>
1895
 #include <limits.h>
1896
 #include "mythcontext.h"
1897
 
1898
--- ./programs/mythbackend/upnpmedia.cpp.orig	2009-09-06 07:47:00.000000000 +0000
1899
+++ ./programs/mythbackend/upnpmedia.cpp	2009-10-15 22:21:14.000000000 +0000
1900
@@ -1,8 +1,8 @@
1901
 #include "httprequest.h"
1902
-#include <qfileinfo.h>
1903
-#include <qregexp.h>
1904
-#include <qurl.h>
1905
-#include <qdir.h>
1906
+#include <QFileInfo>
1907
+#include <QRegExp>
1908
+#include <QUrl>
1909
+#include <QDir>
1910
 #include <limits.h>
1911
 #include <unistd.h>
1912
 #include "util.h"
1913
--- ./programs/mythcommflag/CustomEventRelayer.h.orig	2009-10-15 22:37:58.000000000 +0000
1914
+++ ./programs/mythcommflag/CustomEventRelayer.h	2009-10-15 22:38:22.000000000 +0000
1915
@@ -1,8 +1,8 @@
1916
 #ifndef _CUSTOMEVENTRELAYER_H_
1917
 #define _CUSTOMEVENTRELAYER_H_
1918
 
1919
-#include "qobject.h"
1920
-#include "qstring.h"
1921
+#include <QObject>
1922
+#include <QString>
1923
 #include <QEvent>
1924
 
1925
 #include "mythcontext.h"
1926
--- ./programs/mythcommflag/FrameAnalyzer.h.orig	2009-04-11 00:04:30.000000000 +0000
1927
+++ ./programs/mythcommflag/FrameAnalyzer.h	2009-10-15 22:09:13.000000000 +0000
1928
@@ -10,7 +10,7 @@
1929
 /* Base class for commercial flagging video frame analyzers. */
1930
 
1931
 #include <limits.h>
1932
-#include <qmap.h>
1933
+#include <QMap>
1934
 
1935
 /*  
1936
  * At least FreeBSD doesn't define LONG_LONG_MAX, but it does define  
1937
--- ./programs/mythcommflag/LogoDetectorBase.h.orig	2009-10-15 22:37:30.000000000 +0000
1938
+++ ./programs/mythcommflag/LogoDetectorBase.h	2009-10-15 22:37:45.000000000 +0000
1939
@@ -1,7 +1,7 @@
1940
 #ifndef _LOGODETECTORBASE_H_
1941
 #define _LOGODETECTORBASE_H_
1942
 
1943
-#include "qobject.h"
1944
+#include <QObject>
1945
 
1946
 class NuppelVideoPlayer;
1947
 
1948
--- ./programs/mythcommflag/SceneChangeDetectorBase.h.orig	2009-10-15 22:38:34.000000000 +0000
1949
+++ ./programs/mythcommflag/SceneChangeDetectorBase.h	2009-10-15 22:38:46.000000000 +0000
1950
@@ -1,7 +1,7 @@
1951
 #ifndef _SCENECHANGEDETECTORBASE_H_
1952
 #define _SCENECHANGEDETECTORBASE_H_
1953
 
1954
-#include "qobject.h"
1955
+#include <QObject>
1956
 
1957
 class SceneChangeDetectorBase : public QObject
1958
 {
1959
--- ./programs/mythfilldatabase/channeldata.h.orig	2009-04-11 00:04:30.000000000 +0000
1960
+++ ./programs/mythfilldatabase/channeldata.h	2009-10-15 22:09:13.000000000 +0000
1961
@@ -2,7 +2,7 @@
1962
 #define _CHANNELDATA_H_
1963
 
1964
 // Qt headers
1965
-#include <qstring.h>
1966
+#include <QString>
1967
 #include <QList>
1968
 
1969
 class ChanInfo
1970
--- ./programs/mythfilldatabase/filldata.cpp.orig	2009-08-08 12:15:46.000000000 +0000
1971
+++ ./programs/mythfilldatabase/filldata.cpp	2009-10-15 22:09:13.000000000 +0000
1972
@@ -11,10 +11,10 @@
1973
 using namespace std;
1974
 
1975
 // Qt headers
1976
-#include <qmap.h>
1977
-#include <qdatetime.h>
1978
-#include <qdir.h>
1979
-#include <qfile.h>
1980
+#include <QMap>
1981
+#include <QDateTime>
1982
+#include <QDir>
1983
+#include <QFile>
1984
 #include <QProcess>
1985
 #include <QList>
1986
 
1987
--- ./programs/mythfilldatabase/filldata.h.orig	2009-04-11 00:04:30.000000000 +0000
1988
+++ ./programs/mythfilldatabase/filldata.h	2009-10-15 22:09:13.000000000 +0000
1989
@@ -6,7 +6,7 @@
1990
 using namespace std;
1991
 
1992
 // Qt headers
1993
-#include <qstring.h>
1994
+#include <QString>
1995
 
1996
 // libmythtv headers
1997
 #include "datadirect.h"
1998
--- ./programs/mythfilldatabase/fillutil.cpp.orig	2009-07-13 21:52:19.000000000 +0000
1999
+++ ./programs/mythfilldatabase/fillutil.cpp	2009-10-15 22:09:13.000000000 +0000
2000
@@ -1,6 +1,6 @@
2001
 // Qt headers
2002
-#include <qfile.h>
2003
-#include <qdir.h>
2004
+#include <QFile>
2005
+#include <QDir>
2006
 
2007
 // libmyth headers
2008
 #include "mythcontext.h"
2009
--- ./programs/mythfilldatabase/fillutil.h.orig	2009-04-11 00:04:30.000000000 +0000
2010
+++ ./programs/mythfilldatabase/fillutil.h	2009-10-15 22:09:13.000000000 +0000
2011
@@ -5,7 +5,7 @@
2012
 #include <cstdio>
2013
 
2014
 // Qt headers
2015
-#include <qstring.h>
2016
+#include <QString>
2017
 
2018
 class QFile;
2019
 
2020
--- programs/mythfrontend/exitprompt.cpp.orig	2009-10-15 23:37:14.000000000 +0000
2021
+++ programs/mythfrontend/exitprompt.cpp	2009-10-15 23:37:41.000000000 +0000
2022
@@ -16,7 +16,7 @@
2023
 void ExitPrompter::halt()
2024
 {
2025
     QString halt_cmd = gContext->GetSetting("HaltCommand",
2026
-                                            "sudo /sbin/halt -p");
2027
+                                            "/sbin/shutdown -p now");
2028
     if (!halt_cmd.isEmpty())
2029
     {
2030
         myth_system(halt_cmd);
2031
--- ./programs/mythlcdserver/lcdprocclient.cpp.orig	2009-08-08 11:45:29.000000000 +0000
2032
+++ ./programs/mythlcdserver/lcdprocclient.cpp	2009-10-15 22:25:30.000000000 +0000
2033
@@ -11,8 +11,8 @@
2034
 #include <stdlib.h>
2035
 #include <cmath>
2036
 
2037
-#include <qapplication.h>
2038
-#include <q3textstream.h>
2039
+#include <QApplication>
2040
+#include <Q3TextStream>
2041
 
2042
 #include "lcdprocclient.h"
2043
 #include "mythcontext.h"
2044
--- ./programs/mythlcdserver/lcdprocclient.h.orig	2009-10-15 21:55:16.000000000 +0000
2045
+++ ./programs/mythlcdserver/lcdprocclient.h	2009-10-15 21:56:09.000000000 +0000
2046
@@ -1,12 +1,12 @@
2047
 #ifndef LCDPROCCLIENT_H_
2048
 #define LCDPROCCLIENT_H_
2049
 
2050
-#include <qobject.h>
2051
-#include <qstringlist.h>
2052
-#include <q3valuevector.h>
2053
-#include <q3socket.h>
2054
-#include <qtimer.h>
2055
-#include <qdatetime.h>
2056
+#include <QObject>
2057
+#include <QStringList>
2058
+#include <Q3ValueVector>
2059
+#include <Q3Socket>
2060
+#include <QTimer>
2061
+#include <QDateTime>
2062
 #include <QEvent>
2063
 #include <Q3PtrList>
2064
 
2065
--- ./programs/mythlcdserver/lcdserver.cpp.orig	2009-04-11 00:04:30.000000000 +0000
2066
+++ ./programs/mythlcdserver/lcdserver.cpp	2009-10-15 22:14:18.000000000 +0000
2067
@@ -56,10 +56,10 @@
2068
 */
2069
 
2070
 #include <stdlib.h>
2071
-#include <qstringlist.h>
2072
-#include <qregexp.h>
2073
-#include <qdir.h>
2074
-#include <qapplication.h>
2075
+#include <QStringList>
2076
+#include <QRegExp>
2077
+#include <QDir>
2078
+#include <QApplication>
2079
 #include <Q3PtrList>
2080
 
2081
 #include "util.h"
2082
--- ./programs/mythlcdserver/lcdserver.h.orig	2009-04-11 00:04:30.000000000 +0000
2083
+++ ./programs/mythlcdserver/lcdserver.h	2009-10-15 22:12:52.000000000 +0000
2084
@@ -7,8 +7,8 @@
2085
 
2086
 */
2087
 
2088
-#include <qobject.h>
2089
-#include <qstringlist.h>
2090
+#include <QObject>
2091
+#include <QStringList>
2092
 
2093
 #include "serversocket.h"
2094
 #include "lcdprocclient.h"
2095
--- ./programs/mythlcdserver/main.cpp.orig	2009-08-08 11:45:29.000000000 +0000
2096
+++ ./programs/mythlcdserver/main.cpp	2009-10-15 22:25:30.000000000 +0000
2097
@@ -13,7 +13,7 @@
2098
 
2099
 #include <QApplication>
2100
 #include <QFile>
2101
-#include <q3textstream.h>
2102
+#include <Q3TextStream>
2103
 
2104
 #include "exitcodes.h"
2105
 #include "mythcontext.h"
2106
--- ./programs/mythlcdserver/serversocket.h.orig	2009-04-11 00:04:30.000000000 +0000
2107
+++ ./programs/mythlcdserver/serversocket.h	2009-10-15 22:25:30.000000000 +0000
2108
@@ -10,8 +10,8 @@
2109
 
2110
 */
2111
 
2112
-#include <q3socket.h>
2113
-#include <q3serversocket.h>
2114
+#include <Q3Socket>
2115
+#include <Q3ServerSocket>
2116
 
2117
 
2118
 
2119
--- ./programs/mythtranscode/mpeg2fix.h.orig	2009-10-01 15:24:45.000000000 +0000
2120
+++ ./programs/mythtranscode/mpeg2fix.h	2009-10-15 22:25:30.000000000 +0000
2121
@@ -23,9 +23,9 @@
2122
 #include <QStringList>
2123
 #include <QDateTime>
2124
 
2125
-#include <q3ptrlist.h>
2126
-#include <q3ptrqueue.h>
2127
-#include <q3valuelist.h>
2128
+#include <Q3PtrList>
2129
+#include <Q3PtrQueue>
2130
+#include <Q3ValueList>
2131
 
2132
 #include "transcodedefs.h"
2133
 
2134
@@ -265,7 +265,7 @@
2135
 };
2136
 
2137
 #ifdef NO_MYTH
2138
-    #include <qdatetime.h>
2139
+    #include <QDateTime>
2140
     #include <iostream>
2141
 
2142
     using namespace std;
2143
--- ./programs/mythtvosd/main.cpp.orig	2009-08-08 11:45:29.000000000 +0000
2144
+++ ./programs/mythtvosd/main.cpp	2009-10-15 22:21:14.000000000 +0000
2145
@@ -9,11 +9,11 @@
2146
 using namespace std;
2147
 
2148
 // Qt headers
2149
-#include <qapplication.h>
2150
+#include <QApplication>
2151
 #include <QUdpSocket>
2152
-#include <qstring.h>
2153
-#include <qfile.h>
2154
-#include <qhostaddress.h>
2155
+#include <QString>
2156
+#include <QFile>
2157
+#include <QHostAddress>
2158
 
2159
 // MythTV headers
2160
 #include "exitcodes.h"
2161
--- ./programs/mythwelcome/welcomedialog.cpp.orig	2009-10-12 16:08:03.000000000 +0000
2162
+++ ./programs/mythwelcome/welcomedialog.cpp	2009-10-15 22:12:52.000000000 +0000
2163
@@ -5,7 +5,7 @@
2164
 #include <unistd.h>
2165
 
2166
 // qt
2167
-#include <qapplication.h>
2168
+#include <QApplication>
2169
 #include <QKeyEvent>
2170
 #include <QLabel>
2171
 #include <QEvent>
(-)/usr/ports/multimedia/mythtv/pkg-plist (-663 / +1010 lines)
Lines 1-66 Link Here
1
bin/mythtv
1
@comment $FreeBSD: ports/multimedia/mythtv-frontend/pkg-plist,v 1.1 2009/01/15 21:24:56 glarkin Exp $
2
bin/mythfrontend
2
bin/mythavtest
3
bin/mythbackend
3
bin/mythcommflag
4
bin/mythcommflag
4
bin/mythtvosd
5
bin/mythfilldatabase
6
bin/mythfrontend
5
bin/mythjobqueue
7
bin/mythjobqueue
6
bin/mythlcdserver
8
bin/mythlcdserver
7
bin/mythwelcome
8
bin/mythshutdown
9
bin/mythreplex
9
bin/mythreplex
10
bin/mythbackend
10
bin/mythshutdown
11
bin/mythfilldatabase
12
bin/mythtv-setup
13
bin/mythtranscode
11
bin/mythtranscode
12
bin/mythtv-setup
13
bin/mythtvosd
14
bin/mythwelcome
14
include/mythtv/audiooutput.h
15
include/mythtv/audiooutput.h
16
include/mythtv/audiosettings.h
15
include/mythtv/compat.h
17
include/mythtv/compat.h
18
include/mythtv/dbutil.h
16
include/mythtv/dialogbox.h
19
include/mythtv/dialogbox.h
17
include/mythtv/dvdnav/dvd_reader.h
18
include/mythtv/dvdnav/dvd_types.h
20
include/mythtv/dvdnav/dvd_types.h
19
include/mythtv/dvdnav/dvdnav.h
21
include/mythtv/dvdnav/dvdnav.h
20
include/mythtv/dvdnav/dvdnav_events.h
22
include/mythtv/dvdnav/dvdnav_events.h
21
include/mythtv/dvdnav/ifo_read.h
23
include/mythtv/dvdread/dvd_reader.h
22
include/mythtv/dvdnav/ifo_types.h
24
include/mythtv/dvdread/ifo_read.h
23
include/mythtv/dvdnav/nav_print.h
25
include/mythtv/dvdread/ifo_types.h
24
include/mythtv/dvdnav/nav_read.h
26
include/mythtv/dvdread/nav_read.h
25
include/mythtv/dvdnav/nav_types.h
27
include/mythtv/dvdread/nav_types.h
26
include/mythtv/exitcodes.h
28
include/mythtv/exitcodes.h
27
include/mythtv/ffmpeg/adler32.h
28
include/mythtv/ffmpeg/aes.h
29
include/mythtv/ffmpeg/avcodec.h
30
include/mythtv/ffmpeg/avformat.h
31
include/mythtv/ffmpeg/avio.h
32
include/mythtv/ffmpeg/avstring.h
33
include/mythtv/ffmpeg/avutil.h
34
include/mythtv/ffmpeg/base64.h
35
include/mythtv/ffmpeg/common.h
36
include/mythtv/ffmpeg/crc.h
37
include/mythtv/ffmpeg/fifo.h
38
include/mythtv/ffmpeg/integer.h
39
include/mythtv/ffmpeg/internal.h
40
include/mythtv/ffmpeg/intfloat_readwrite.h
41
include/mythtv/ffmpeg/lls.h
42
include/mythtv/ffmpeg/log.h
43
include/mythtv/ffmpeg/lzo.h
44
include/mythtv/ffmpeg/mathematics.h
45
include/mythtv/ffmpeg/md5.h
46
include/mythtv/ffmpeg/mem.h
47
include/mythtv/ffmpeg/mmx.h
48
include/mythtv/ffmpeg/opt.h
49
include/mythtv/ffmpeg/random.h
50
include/mythtv/ffmpeg/rational.h
51
include/mythtv/ffmpeg/rtp.h
52
include/mythtv/ffmpeg/rtsp.h
53
include/mythtv/ffmpeg/rtspcodes.h
54
include/mythtv/ffmpeg/sha1.h
55
include/mythtv/ffmpeg/softfloat.h
56
include/mythtv/ffmpeg/tree.h
57
include/mythtv/ffmpeg/x86_cpu.h
58
include/mythtv/generictree.h
29
include/mythtv/generictree.h
59
include/mythtv/httpcomms.h
30
include/mythtv/httpcomms.h
60
include/mythtv/langsettings.h
31
include/mythtv/langsettings.h
61
include/mythtv/lcddevice.h
32
include/mythtv/lcddevice.h
33
include/mythtv/libavcodec/avcodec.h
34
include/mythtv/libavcodec/mmx.h
35
include/mythtv/libavcodec/opt.h
36
include/mythtv/libavformat/avformat.h
37
include/mythtv/libavformat/avio.h
38
include/mythtv/libavformat/rtp.h
39
include/mythtv/libavformat/rtsp.h
40
include/mythtv/libavformat/rtspcodes.h
41
include/mythtv/libavutil/adler32.h
42
include/mythtv/libavutil/avstring.h
43
include/mythtv/libavutil/avutil.h
44
include/mythtv/libavutil/base64.h
45
include/mythtv/libavutil/common.h
46
include/mythtv/libavutil/crc.h
47
include/mythtv/libavutil/fifo.h
48
include/mythtv/libavutil/intfloat_readwrite.h
49
include/mythtv/libavutil/log.h
50
include/mythtv/libavutil/lzo.h
51
include/mythtv/libavutil/mathematics.h
52
include/mythtv/libavutil/md5.h
53
include/mythtv/libavutil/mem.h
54
include/mythtv/libavutil/pixfmt.h
55
include/mythtv/libavutil/rational.h
56
include/mythtv/libavutil/sha1.h
62
include/mythtv/libmyth/audiooutput.h
57
include/mythtv/libmyth/audiooutput.h
58
include/mythtv/libmyth/audiosettings.h
63
include/mythtv/libmyth/compat.h
59
include/mythtv/libmyth/compat.h
60
include/mythtv/libmyth/dbutil.h
64
include/mythtv/libmyth/dialogbox.h
61
include/mythtv/libmyth/dialogbox.h
65
include/mythtv/libmyth/exitcodes.h
62
include/mythtv/libmyth/exitcodes.h
66
include/mythtv/libmyth/generictree.h
63
include/mythtv/libmyth/generictree.h
Lines 68-82 Link Here
68
include/mythtv/libmyth/langsettings.h
65
include/mythtv/libmyth/langsettings.h
69
include/mythtv/libmyth/lcddevice.h
66
include/mythtv/libmyth/lcddevice.h
70
include/mythtv/libmyth/managedlist.h
67
include/mythtv/libmyth/managedlist.h
68
include/mythtv/libmyth/msocketdevice.h
71
include/mythtv/libmyth/mythconfig.h
69
include/mythtv/libmyth/mythconfig.h
72
include/mythtv/libmyth/mythconfig.mak
70
include/mythtv/libmyth/mythconfig.mak
73
include/mythtv/libmyth/mythconfigdialogs.h
71
include/mythtv/libmyth/mythconfigdialogs.h
74
include/mythtv/libmyth/mythconfiggroups.h
72
include/mythtv/libmyth/mythconfiggroups.h
75
include/mythtv/libmyth/mythcontext.h
73
include/mythtv/libmyth/mythcontext.h
74
include/mythtv/libmyth/mythdb.h
76
include/mythtv/libmyth/mythdbcon.h
75
include/mythtv/libmyth/mythdbcon.h
76
include/mythtv/libmyth/mythdbparams.h
77
include/mythtv/libmyth/mythdeque.h
77
include/mythtv/libmyth/mythdialogs.h
78
include/mythtv/libmyth/mythdialogs.h
79
include/mythtv/libmyth/mythdirs.h
78
include/mythtv/libmyth/mythevent.h
80
include/mythtv/libmyth/mythevent.h
79
include/mythtv/libmyth/mythexp.h
81
include/mythtv/libmyth/mythexp.h
82
include/mythtv/libmyth/mythhttppool.h
80
include/mythtv/libmyth/mythmedia.h
83
include/mythtv/libmyth/mythmedia.h
81
include/mythtv/libmyth/mythmediamonitor.h
84
include/mythtv/libmyth/mythmediamonitor.h
82
include/mythtv/libmyth/mythobservable.h
85
include/mythtv/libmyth/mythobservable.h
Lines 84-139 Link Here
84
include/mythtv/libmyth/mythpluginapi.h
87
include/mythtv/libmyth/mythpluginapi.h
85
include/mythtv/libmyth/mythsocket.h
88
include/mythtv/libmyth/mythsocket.h
86
include/mythtv/libmyth/mythstorage.h
89
include/mythtv/libmyth/mythstorage.h
90
include/mythtv/libmyth/mythterminal.h
91
include/mythtv/libmyth/mythtimer.h
92
include/mythtv/libmyth/mythuifilebrowser.h
87
include/mythtv/libmyth/mythverbose.h
93
include/mythtv/libmyth/mythverbose.h
94
include/mythtv/libmyth/mythversion.h
88
include/mythtv/libmyth/mythwidgets.h
95
include/mythtv/libmyth/mythwidgets.h
89
include/mythtv/libmyth/mythwizard.h
96
include/mythtv/libmyth/mythwizard.h
90
include/mythtv/libmyth/oldsettings.h
97
include/mythtv/libmyth/oldsettings.h
91
include/mythtv/libmyth/output.h
98
include/mythtv/libmyth/output.h
92
include/mythtv/libmyth/qmdcodec.h
99
include/mythtv/libmyth/programinfo.h
100
include/mythtv/libmyth/qcodecs.h
101
include/mythtv/libmyth/recordingtypes.h
93
include/mythtv/libmyth/remotefile.h
102
include/mythtv/libmyth/remotefile.h
103
include/mythtv/libmyth/remoteutil.h
104
include/mythtv/libmyth/schemawizard.h
94
include/mythtv/libmyth/settings.h
105
include/mythtv/libmyth/settings.h
95
include/mythtv/libmyth/storagegroup.h
106
include/mythtv/libmyth/storagegroup.h
96
include/mythtv/libmyth/uilistbtntype.h
107
include/mythtv/libmyth/uilistbtntype.h
97
include/mythtv/libmyth/uitypes.h
108
include/mythtv/libmyth/uitypes.h
98
include/mythtv/libmyth/util.h
109
include/mythtv/libmyth/util.h
99
include/mythtv/libmyth/virtualkeyboard.h
110
include/mythtv/libmyth/virtualkeyboard_qt.h
100
include/mythtv/libmyth/visual.h
111
include/mythtv/libmyth/visual.h
101
include/mythtv/libmyth/volumebase.h
112
include/mythtv/libmyth/volumebase.h
102
include/mythtv/libmyth/volumecontrol.h
103
include/mythtv/libmyth/xmlparse.h
113
include/mythtv/libmyth/xmlparse.h
104
include/mythtv/libmythtv/programinfo.h
114
include/mythtv/libmythdb/compat.h
105
include/mythtv/libmythtv/recordingtypes.h
115
include/mythtv/libmythdb/exitcodes.h
106
include/mythtv/libmythtv/remoteutil.h
116
include/mythtv/libmythdb/httpcomms.h
117
include/mythtv/libmythdb/lcddevice.h
118
include/mythtv/libmythdb/msocketdevice.h
119
include/mythtv/libmythdb/mythconfig.h
120
include/mythtv/libmythdb/mythconfig.mak
121
include/mythtv/libmythdb/mythdb.h
122
include/mythtv/libmythdb/mythdbcon.h
123
include/mythtv/libmythdb/mythdbparams.h
124
include/mythtv/libmythdb/mythdirs.h
125
include/mythtv/libmythdb/mythevent.h
126
include/mythtv/libmythdb/mythexp.h
127
include/mythtv/libmythdb/mythobservable.h
128
include/mythtv/libmythdb/mythsocket.h
129
include/mythtv/libmythdb/mythstorage.h
130
include/mythtv/libmythdb/mythtimer.h
131
include/mythtv/libmythdb/mythverbose.h
132
include/mythtv/libmythdb/mythversion.h
133
include/mythtv/libmythdb/qcodecs.h
107
include/mythtv/libmythui/mythdialogbox.h
134
include/mythtv/libmythui/mythdialogbox.h
108
include/mythtv/libmythui/mythfontproperties.h
135
include/mythtv/libmythui/mythfontproperties.h
136
include/mythtv/libmythui/mythgenerictree.h
109
include/mythtv/libmythui/mythgesture.h
137
include/mythtv/libmythui/mythgesture.h
110
include/mythtv/libmythui/mythimage.h
138
include/mythtv/libmythui/mythimage.h
111
include/mythtv/libmythui/mythlistbutton.h
112
include/mythtv/libmythui/mythmainwindow.h
139
include/mythtv/libmythui/mythmainwindow.h
113
include/mythtv/libmythui/mythpainter.h
140
include/mythtv/libmythui/mythpainter.h
141
include/mythtv/libmythui/mythpainter_ogl.h
114
include/mythtv/libmythui/mythpainter_qt.h
142
include/mythtv/libmythui/mythpainter_qt.h
143
include/mythtv/libmythui/mythprogressdialog.h
144
include/mythtv/libmythui/mythrect.h
115
include/mythtv/libmythui/mythscreenstack.h
145
include/mythtv/libmythui/mythscreenstack.h
116
include/mythtv/libmythui/mythscreentype.h
146
include/mythtv/libmythui/mythscreentype.h
147
include/mythtv/libmythui/mythsystem.h
117
include/mythtv/libmythui/myththemebase.h
148
include/mythtv/libmythui/myththemebase.h
118
include/mythtv/libmythui/myththemedmenu.h
149
include/mythtv/libmythui/myththemedmenu.h
119
include/mythtv/libmythui/mythuibutton.h
150
include/mythtv/libmythui/mythuibutton.h
151
include/mythtv/libmythui/mythuibuttonlist.h
152
include/mythtv/libmythui/mythuibuttontree.h
153
include/mythtv/libmythui/mythuicheckbox.h
120
include/mythtv/libmythui/mythuiclock.h
154
include/mythtv/libmythui/mythuiclock.h
155
include/mythtv/libmythui/mythuigroup.h
156
include/mythtv/libmythui/mythuiguidegrid.h
157
include/mythtv/libmythui/mythuihelper.h
121
include/mythtv/libmythui/mythuiimage.h
158
include/mythtv/libmythui/mythuiimage.h
159
include/mythtv/libmythui/mythuiprogressbar.h
160
include/mythtv/libmythui/mythuishape.h
161
include/mythtv/libmythui/mythuispinbox.h
122
include/mythtv/libmythui/mythuistatetype.h
162
include/mythtv/libmythui/mythuistatetype.h
123
include/mythtv/libmythui/mythuitext.h
163
include/mythtv/libmythui/mythuitext.h
164
include/mythtv/libmythui/mythuitextedit.h
124
include/mythtv/libmythui/mythuitype.h
165
include/mythtv/libmythui/mythuitype.h
166
include/mythtv/libmythui/mythuiutils.h
167
include/mythtv/libmythui/mythuiwebbrowser.h
168
include/mythtv/libmythui/mythvirtualkeyboard.h
169
include/mythtv/libmythui/x11colors.h
125
include/mythtv/libmythui/xmlparsebase.h
170
include/mythtv/libmythui/xmlparsebase.h
171
include/mythtv/libswscale/swscale.h
126
include/mythtv/managedlist.h
172
include/mythtv/managedlist.h
127
include/mythtv/mpeg2dec/mpeg2.h
173
include/mythtv/mpeg2dec/mpeg2.h
174
include/mythtv/msocketdevice.h
128
include/mythtv/mythconfig.h
175
include/mythtv/mythconfig.h
129
include/mythtv/mythconfig.mak
176
include/mythtv/mythconfig.mak
130
include/mythtv/mythconfigdialogs.h
177
include/mythtv/mythconfigdialogs.h
131
include/mythtv/mythconfiggroups.h
178
include/mythtv/mythconfiggroups.h
132
include/mythtv/mythcontext.h
179
include/mythtv/mythcontext.h
180
include/mythtv/mythdb.h
133
include/mythtv/mythdbcon.h
181
include/mythtv/mythdbcon.h
182
include/mythtv/mythdbparams.h
183
include/mythtv/mythdeque.h
134
include/mythtv/mythdialogs.h
184
include/mythtv/mythdialogs.h
185
include/mythtv/mythdirs.h
135
include/mythtv/mythevent.h
186
include/mythtv/mythevent.h
136
include/mythtv/mythexp.h
187
include/mythtv/mythexp.h
188
include/mythtv/mythhttppool.h
137
include/mythtv/mythmedia.h
189
include/mythtv/mythmedia.h
138
include/mythtv/mythmediamonitor.h
190
include/mythtv/mythmediamonitor.h
139
include/mythtv/mythobservable.h
191
include/mythtv/mythobservable.h
Lines 141-154 Link Here
141
include/mythtv/mythpluginapi.h
193
include/mythtv/mythpluginapi.h
142
include/mythtv/mythsocket.h
194
include/mythtv/mythsocket.h
143
include/mythtv/mythstorage.h
195
include/mythtv/mythstorage.h
196
include/mythtv/mythterminal.h
197
include/mythtv/mythtimer.h
198
include/mythtv/mythuifilebrowser.h
144
include/mythtv/mythverbose.h
199
include/mythtv/mythverbose.h
200
include/mythtv/mythversion.h
145
include/mythtv/mythwidgets.h
201
include/mythtv/mythwidgets.h
146
include/mythtv/mythwizard.h
202
include/mythtv/mythwizard.h
147
include/mythtv/oldsettings.h
203
include/mythtv/oldsettings.h
148
include/mythtv/output.h
204
include/mythtv/output.h
149
include/mythtv/qmdcodec.h
205
include/mythtv/programinfo.h
206
include/mythtv/qcodecs.h
207
include/mythtv/recordingtypes.h
150
include/mythtv/remotefile.h
208
include/mythtv/remotefile.h
209
include/mythtv/remoteutil.h
151
include/mythtv/samplerate.h
210
include/mythtv/samplerate.h
211
include/mythtv/schemawizard.h
152
include/mythtv/settings.h
212
include/mythtv/settings.h
153
include/mythtv/storagegroup.h
213
include/mythtv/storagegroup.h
154
include/mythtv/uilistbtntype.h
214
include/mythtv/uilistbtntype.h
Lines 159-164 Link Here
159
include/mythtv/upnp/eventing.h
219
include/mythtv/upnp/eventing.h
160
include/mythtv/upnp/httprequest.h
220
include/mythtv/upnp/httprequest.h
161
include/mythtv/upnp/httpserver.h
221
include/mythtv/upnp/httpserver.h
222
include/mythtv/upnp/mmembuf.h
162
include/mythtv/upnp/multicast.h
223
include/mythtv/upnp/multicast.h
163
include/mythtv/upnp/mythxmlclient.h
224
include/mythtv/upnp/mythxmlclient.h
164
include/mythtv/upnp/soapclient.h
225
include/mythtv/upnp/soapclient.h
Lines 178-841 Link Here
178
include/mythtv/upnp/upnptasksearch.h
239
include/mythtv/upnp/upnptasksearch.h
179
include/mythtv/upnp/upnputil.h
240
include/mythtv/upnp/upnputil.h
180
include/mythtv/util.h
241
include/mythtv/util.h
181
include/mythtv/virtualkeyboard.h
242
include/mythtv/virtualkeyboard_qt.h
182
include/mythtv/visual.h
243
include/mythtv/visual.h
183
include/mythtv/volumebase.h
244
include/mythtv/volumebase.h
184
include/mythtv/volumecontrol.h
185
include/mythtv/xmlparse.h
245
include/mythtv/xmlparse.h
186
lib/mythtv/filters/libinvert.so
246
lib/libmyth-0.22.so
187
lib/mythtv/filters/liblinearblend.so
247
lib/libmyth-0.22.so.0
248
lib/libmyth-0.22.so.0.22
249
lib/libmyth-0.22.so.0.22.0
250
lib/libmythavcodec-0.22.so
251
lib/libmythavcodec-0.22.so.0
252
lib/libmythavcodec-0.22.so.0.22
253
lib/libmythavcodec-0.22.so.0.22.0
254
lib/libmythavformat-0.22.so
255
lib/libmythavformat-0.22.so.0
256
lib/libmythavformat-0.22.so.0.22
257
lib/libmythavformat-0.22.so.0.22.0
258
lib/libmythavutil-0.22.so
259
lib/libmythavutil-0.22.so.0
260
lib/libmythavutil-0.22.so.0.22
261
lib/libmythavutil-0.22.so.0.22.0
262
lib/libmythdb-0.22.so
263
lib/libmythdb-0.22.so.0
264
lib/libmythdb-0.22.so.0.22
265
lib/libmythdb-0.22.so.0.22.0
266
lib/libmythdvdnav-0.22.a
267
lib/libmythfreemheg-0.22.so
268
lib/libmythfreemheg-0.22.so.0
269
lib/libmythfreemheg-0.22.so.0.22
270
lib/libmythfreemheg-0.22.so.0.22.0
271
lib/libmythhdhomerun-0.22.so
272
lib/libmythhdhomerun-0.22.so.0
273
lib/libmythhdhomerun-0.22.so.0.22
274
lib/libmythhdhomerun-0.22.so.0.22.0
275
lib/libmythlivemedia-0.22.so
276
lib/libmythlivemedia-0.22.so.0
277
lib/libmythlivemedia-0.22.so.0.22
278
lib/libmythlivemedia-0.22.so.0.22.0
279
lib/libmythswscale-0.22.so
280
lib/libmythswscale-0.22.so.0
281
lib/libmythswscale-0.22.so.0.22
282
lib/libmythswscale-0.22.so.0.22.0
283
lib/libmythtv-0.22.so
284
lib/libmythtv-0.22.so.0
285
lib/libmythtv-0.22.so.0.22
286
lib/libmythtv-0.22.so.0.22.0
287
lib/libmythui-0.22.so
288
lib/libmythui-0.22.so.0
289
lib/libmythui-0.22.so.0.22
290
lib/libmythui-0.22.so.0.22.0
291
lib/libmythupnp-0.22.so
292
lib/libmythupnp-0.22.so.0
293
lib/libmythupnp-0.22.so.0.22
294
lib/libmythupnp-0.22.so.0.22.0
295
lib/mythtv/filters/libadjust.so
296
lib/mythtv/filters/libbobdeint.so
297
lib/mythtv/filters/libcrop.so
188
lib/mythtv/filters/libdenoise3d.so
298
lib/mythtv/filters/libdenoise3d.so
299
lib/mythtv/filters/libfieldorder.so
300
lib/mythtv/filters/libforce.so
189
lib/mythtv/filters/libgreedyhdeint.so
301
lib/mythtv/filters/libgreedyhdeint.so
190
lib/mythtv/filters/libquickdnr.so
302
lib/mythtv/filters/libinvert.so
303
lib/mythtv/filters/libivtc.so
191
lib/mythtv/filters/libkerneldeint.so
304
lib/mythtv/filters/libkerneldeint.so
192
lib/mythtv/filters/libcrop.so
305
lib/mythtv/filters/liblinearblend.so
193
lib/mythtv/filters/libforce.so
194
lib/mythtv/filters/libconvert.so
195
lib/mythtv/filters/libadjust.so
196
lib/mythtv/filters/libonefield.so
306
lib/mythtv/filters/libonefield.so
197
lib/mythtv/filters/libbobdeint.so
307
lib/mythtv/filters/libquickdnr.so
198
lib/mythtv/filters/libivtc.so
199
lib/mythtv/filters/libyadif.so
308
lib/mythtv/filters/libyadif.so
200
lib/libmyth-0.21.so
309
%%DATADIR%%/devicemaster.xml
201
lib/libmyth-0.21.so.0
310
%%DATADIR%%/deviceslave.xml
202
lib/libmyth-0.21.so.0.21
311
%%DATADIR%%/mythconverg_backup.pl
203
lib/libmyth-0.21.so.0.21.0
312
%%DATADIR%%/mythconverg_restore.pl
204
lib/libmythavcodec-0.21.so
313
%%DATADIR%%/setup.xml
205
lib/libmythavcodec-0.21.so.0
206
lib/libmythavcodec-0.21.so.0.21
207
lib/libmythavcodec-0.21.so.0.21.0
208
lib/libmythavformat-0.21.so
209
lib/libmythavformat-0.21.so.0
210
lib/libmythavformat-0.21.so.0.21
211
lib/libmythavformat-0.21.so.0.21.0
212
lib/libmythavutil-0.21.so
213
lib/libmythavutil-0.21.so.0
214
lib/libmythavutil-0.21.so.0.21
215
lib/libmythavutil-0.21.so.0.21.0
216
lib/libmythdvdnav-0.21.a
217
lib/libmythfreemheg-0.21.so
218
lib/libmythfreemheg-0.21.so.0
219
lib/libmythfreemheg-0.21.so.0.21
220
lib/libmythfreemheg-0.21.so.0.21.0
221
lib/libmythlivemedia-0.21.so
222
lib/libmythlivemedia-0.21.so.0
223
lib/libmythlivemedia-0.21.so.0.21
224
lib/libmythlivemedia-0.21.so.0.21.0
225
lib/libmythtv-0.21.so
226
lib/libmythtv-0.21.so.0
227
lib/libmythtv-0.21.so.0.21
228
lib/libmythtv-0.21.so.0.21.0
229
lib/libmythui-0.21.so
230
lib/libmythui-0.21.so.0
231
lib/libmythui-0.21.so.0.21
232
lib/libmythui-0.21.so.0.21.0
233
lib/libmythupnp-0.21.so
234
lib/libmythupnp-0.21.so.0
235
lib/libmythupnp-0.21.so.0.21
236
lib/libmythupnp-0.21.so.0.21.0
237
%%DATADIR%%/CDS_scpd.xml
314
%%DATADIR%%/CDS_scpd.xml
238
%%DATADIR%%/CMGR_scpd.xml
315
%%DATADIR%%/CMGR_scpd.xml
316
%%DATADIR%%/FreeMono.ttf
317
%%DATADIR%%/FreeSans.ttf
318
%%DATADIR%%/FreeSansBold.ttf
319
%%DATADIR%%/MFEXML_scpd.xml
239
%%DATADIR%%/MSRR_scpd.xml
320
%%DATADIR%%/MSRR_scpd.xml
240
%%DATADIR%%/MXML_scpd.xml
321
%%DATADIR%%/MXML_scpd.xml
241
%%DATADIR%%/info_menu.xml
322
%%DATADIR%%/database/mc.sql
242
%%DATADIR%%/mainmenu.xml
323
%%DATADIR%%/i18n/mythfrontend_ca.qm
243
%%DATADIR%%/devicemaster.xml
324
%%DATADIR%%/i18n/mythfrontend_cs.qm
244
%%DATADIR%%/deviceslave.xml
325
%%DATADIR%%/i18n/mythfrontend_da.qm
245
%%DATADIR%%/media_settings.xml
326
%%DATADIR%%/i18n/mythfrontend_de.qm
246
%%DATADIR%%/tv_schedule.xml
327
%%DATADIR%%/i18n/mythfrontend_en_gb.qm
247
%%DATADIR%%/util_menu.xml
328
%%DATADIR%%/i18n/mythfrontend_en_us.qm
248
%%DATADIR%%/info_settings.xml
329
%%DATADIR%%/i18n/mythfrontend_es.qm
249
%%DATADIR%%/main_settings.xml
330
%%DATADIR%%/i18n/mythfrontend_et.qm
250
%%DATADIR%%/recpriorities_settings.xml
331
%%DATADIR%%/i18n/mythfrontend_fi.qm
251
%%DATADIR%%/tv_search.xml
332
%%DATADIR%%/i18n/mythfrontend_fr.qm
252
%%DATADIR%%/tv_lists.xml
333
%%DATADIR%%/i18n/mythfrontend_he.qm
253
%%DATADIR%%/library.xml
334
%%DATADIR%%/i18n/mythfrontend_hu.qm
254
%%DATADIR%%/manage_recordings.xml
335
%%DATADIR%%/i18n/mythfrontend_is.qm
255
%%DATADIR%%/optical_menu.xml
336
%%DATADIR%%/i18n/mythfrontend_it.qm
256
%%DATADIR%%/tvmenu.xml
337
%%DATADIR%%/i18n/mythfrontend_ja.qm
257
%%DATADIR%%/tv_settings.xml
338
%%DATADIR%%/i18n/mythfrontend_nb.qm
258
%%DATADIR%%/themes/default/keyboard/ar_ui.xml
339
%%DATADIR%%/i18n/mythfrontend_nl.qm
259
%%DATADIR%%/themes/default/keyboard/he_ui.xml
340
%%DATADIR%%/i18n/mythfrontend_pl.qm
260
%%DATADIR%%/themes/default/bottomright.png
341
%%DATADIR%%/i18n/mythfrontend_pt.qm
261
%%DATADIR%%/themes/default/unchecked_high.png
342
%%DATADIR%%/i18n/mythfrontend_pt_br.qm
343
%%DATADIR%%/i18n/mythfrontend_ru.qm
344
%%DATADIR%%/i18n/mythfrontend_sl.qm
345
%%DATADIR%%/i18n/mythfrontend_sv.qm
346
%%DATADIR%%/i18n/mythfrontend_tr.qm
347
%%DATADIR%%/themes/BlackCurves-OSD/BlackCurves-preview.png
348
%%DATADIR%%/themes/BlackCurves-OSD/COPYING
349
%%DATADIR%%/themes/BlackCurves-OSD/DejaVuSans.ttf
350
%%DATADIR%%/themes/BlackCurves-OSD/cut_point.png
351
%%DATADIR%%/themes/BlackCurves-OSD/fill_green.png
352
%%DATADIR%%/themes/BlackCurves-OSD/fill_red.png
353
%%DATADIR%%/themes/BlackCurves-OSD/osd.xml
354
%%DATADIR%%/themes/BlackCurves-OSD/osd_browse_info.png
355
%%DATADIR%%/themes/BlackCurves-OSD/osd_channel_editor.png
356
%%DATADIR%%/themes/BlackCurves-OSD/osd_channel_number.png
357
%%DATADIR%%/themes/BlackCurves-OSD/osd_notify.png
358
%%DATADIR%%/themes/BlackCurves-OSD/osd_popup.png
359
%%DATADIR%%/themes/BlackCurves-OSD/osd_program_info.png
360
%%DATADIR%%/themes/BlackCurves-OSD/osd_scroll.png
361
%%DATADIR%%/themes/BlackCurves-OSD/osd_settings.png
362
%%DATADIR%%/themes/BlackCurves-OSD/osd_status.png
363
%%DATADIR%%/themes/BlackCurves-OSD/osd_status_frame.png
364
%%DATADIR%%/themes/BlackCurves-OSD/phone.png
365
%%DATADIR%%/themes/BlackCurves-OSD/position_marker.png
366
%%DATADIR%%/themes/BlackCurves-OSD/select.png
367
%%DATADIR%%/themes/BlackCurves-OSD/themeinfo.xml
368
%%DATADIR%%/themes/DVR/dvr-preview.png
369
%%DATADIR%%/themes/DVR/main_settings.xml
370
%%DATADIR%%/themes/DVR/mainmenu.xml
371
%%DATADIR%%/themes/DVR/recpriorities_settings.xml
372
%%DATADIR%%/themes/DVR/themeinfo.xml
373
%%DATADIR%%/themes/DVR/tv_lists.xml
374
%%DATADIR%%/themes/DVR/tv_schedule.xml
375
%%DATADIR%%/themes/DVR/tv_search.xml
376
%%DATADIR%%/themes/DVR/tv_settings.xml
377
%%DATADIR%%/themes/DVR/tvmenu.xml
378
%%DATADIR%%/themes/DVR/util_menu.xml
379
%%DATADIR%%/themes/Gray-OSD/DejaVuSans-Bold.ttf
380
%%DATADIR%%/themes/Gray-OSD/DejaVuSans-Oblique.ttf
381
%%DATADIR%%/themes/Gray-OSD/DejaVuSans.ttf
382
%%DATADIR%%/themes/Gray-OSD/cut_end.png
383
%%DATADIR%%/themes/Gray-OSD/cut_start.png
384
%%DATADIR%%/themes/Gray-OSD/fill_green.png
385
%%DATADIR%%/themes/Gray-OSD/fill_red.png
386
%%DATADIR%%/themes/Gray-OSD/gray-osd-preview.png
387
%%DATADIR%%/themes/Gray-OSD/osd-bar-mid.png
388
%%DATADIR%%/themes/Gray-OSD/osd-channel-edit.png
389
%%DATADIR%%/themes/Gray-OSD/osd-editmode.png
390
%%DATADIR%%/themes/Gray-OSD/osd-notify.png
391
%%DATADIR%%/themes/Gray-OSD/osd-small.png
392
%%DATADIR%%/themes/Gray-OSD/osd.xml
393
%%DATADIR%%/themes/Gray-OSD/popup.png
394
%%DATADIR%%/themes/Gray-OSD/position_marker.png
395
%%DATADIR%%/themes/Gray-OSD/selector.png
396
%%DATADIR%%/themes/Gray-OSD/slider_frame.png
397
%%DATADIR%%/themes/Gray-OSD/themeinfo.xml
398
%%DATADIR%%/themes/MythCenter-wide/README
399
%%DATADIR%%/themes/MythCenter-wide/base.xml
400
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page1.html
401
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page2.html
402
%%DATADIR%%/themes/MythCenter-wide/menu-ui.xml
403
%%DATADIR%%/themes/MythCenter-wide/preview.jpg
404
%%DATADIR%%/themes/MythCenter-wide/qtlook.txt
405
%%DATADIR%%/themes/MythCenter-wide/themeinfo.xml
406
%%DATADIR%%/themes/MythCenter-wide/title/title_dvd.png
407
%%DATADIR%%/themes/MythCenter-wide/title/title_gallery.png
408
%%DATADIR%%/themes/MythCenter-wide/title/title_games.png
409
%%DATADIR%%/themes/MythCenter-wide/title/title_info_center.png
410
%%DATADIR%%/themes/MythCenter-wide/title/title_info_settings.png
411
%%DATADIR%%/themes/MythCenter-wide/title/title_main.png
412
%%DATADIR%%/themes/MythCenter-wide/title/title_multimedia.png
413
%%DATADIR%%/themes/MythCenter-wide/title/title_music.png
414
%%DATADIR%%/themes/MythCenter-wide/title/title_music_setup.png
415
%%DATADIR%%/themes/MythCenter-wide/title/title_priority.png
416
%%DATADIR%%/themes/MythCenter-wide/title/title_record.png
417
%%DATADIR%%/themes/MythCenter-wide/title/title_schedule.png
418
%%DATADIR%%/themes/MythCenter-wide/title/title_search.png
419
%%DATADIR%%/themes/MythCenter-wide/title/title_setup.png
420
%%DATADIR%%/themes/MythCenter-wide/title/title_tv.png
421
%%DATADIR%%/themes/MythCenter-wide/title/title_video.png
422
%%DATADIR%%/themes/MythCenter-wide/title/title_weather.png
423
%%DATADIR%%/themes/MythCenter-wide/ui.xml
424
%%DATADIR%%/themes/MythCenter-wide/ui/background.png
425
%%DATADIR%%/themes/MythCenter-wide/ui/button_on.png
426
%%DATADIR%%/themes/MythCenter-wide/ui/down.png
427
%%DATADIR%%/themes/MythCenter-wide/ui/horizon.png
428
%%DATADIR%%/themes/MythCenter-wide/ui/mythtv_logo.png
429
%%DATADIR%%/themes/MythCenter-wide/ui/up.png
430
%%DATADIR%%/themes/MythCenter-wide/watermark/alarmclock.png
431
%%DATADIR%%/themes/MythCenter-wide/watermark/appearance.png
432
%%DATADIR%%/themes/MythCenter-wide/watermark/big_arrow_down.png
433
%%DATADIR%%/themes/MythCenter-wide/watermark/browser.png
434
%%DATADIR%%/themes/MythCenter-wide/watermark/cd.png
435
%%DATADIR%%/themes/MythCenter-wide/watermark/cd_burn.png
436
%%DATADIR%%/themes/MythCenter-wide/watermark/cd_rip.png
437
%%DATADIR%%/themes/MythCenter-wide/watermark/checklist.png
438
%%DATADIR%%/themes/MythCenter-wide/watermark/clock.png
439
%%DATADIR%%/themes/MythCenter-wide/watermark/dvd.png
440
%%DATADIR%%/themes/MythCenter-wide/watermark/dvd_burn.png
441
%%DATADIR%%/themes/MythCenter-wide/watermark/dvd_eject.png
442
%%DATADIR%%/themes/MythCenter-wide/watermark/dvd_rip.png
443
%%DATADIR%%/themes/MythCenter-wide/watermark/error.png
444
%%DATADIR%%/themes/MythCenter-wide/watermark/gallery.png
445
%%DATADIR%%/themes/MythCenter-wide/watermark/gallery_settings.png
446
%%DATADIR%%/themes/MythCenter-wide/watermark/hardware_info.png
447
%%DATADIR%%/themes/MythCenter-wide/watermark/hardware_settings.png
448
%%DATADIR%%/themes/MythCenter-wide/watermark/important.png
449
%%DATADIR%%/themes/MythCenter-wide/watermark/info.png
450
%%DATADIR%%/themes/MythCenter-wide/watermark/info_setup.png
451
%%DATADIR%%/themes/MythCenter-wide/watermark/ipod.png
452
%%DATADIR%%/themes/MythCenter-wide/watermark/joystick.png
453
%%DATADIR%%/themes/MythCenter-wide/watermark/keys.png
454
%%DATADIR%%/themes/MythCenter-wide/watermark/movietime.png
455
%%DATADIR%%/themes/MythCenter-wide/watermark/multimedia.png
456
%%DATADIR%%/themes/MythCenter-wide/watermark/music.png
457
%%DATADIR%%/themes/MythCenter-wide/watermark/music_settings.png
458
%%DATADIR%%/themes/MythCenter-wide/watermark/news.png
459
%%DATADIR%%/themes/MythCenter-wide/watermark/phone.png
460
%%DATADIR%%/themes/MythCenter-wide/watermark/pie.png
461
%%DATADIR%%/themes/MythCenter-wide/watermark/play.png
462
%%DATADIR%%/themes/MythCenter-wide/watermark/priority.png
463
%%DATADIR%%/themes/MythCenter-wide/watermark/radio.png
464
%%DATADIR%%/themes/MythCenter-wide/watermark/record.png
465
%%DATADIR%%/themes/MythCenter-wide/watermark/screenwiz.png
466
%%DATADIR%%/themes/MythCenter-wide/watermark/search.png
467
%%DATADIR%%/themes/MythCenter-wide/watermark/setup.png
468
%%DATADIR%%/themes/MythCenter-wide/watermark/stream.png
469
%%DATADIR%%/themes/MythCenter-wide/watermark/tv.png
470
%%DATADIR%%/themes/MythCenter-wide/watermark/video.png
471
%%DATADIR%%/themes/MythCenter-wide/watermark/video_settings.png
472
%%DATADIR%%/themes/MythCenter-wide/watermark/weather.png
473
%%DATADIR%%/themes/MythCenter-wide/watermark/zoneminder.png
474
%%DATADIR%%/themes/MythCenter/README
475
%%DATADIR%%/themes/MythCenter/base.xml
476
%%DATADIR%%/themes/MythCenter/cr-lines.png
477
%%DATADIR%%/themes/MythCenter/cr-selectbar.png
478
%%DATADIR%%/themes/MythCenter/htmls/progdetails_page1.html
479
%%DATADIR%%/themes/MythCenter/htmls/progdetails_page2.html
480
%%DATADIR%%/themes/MythCenter/menu-ui.xml
481
%%DATADIR%%/themes/MythCenter/preview.jpg
482
%%DATADIR%%/themes/MythCenter/qtlook.txt
483
%%DATADIR%%/themes/MythCenter/themeinfo.xml
484
%%DATADIR%%/themes/MythCenter/title/title_dvd.png
485
%%DATADIR%%/themes/MythCenter/title/title_gallery.png
486
%%DATADIR%%/themes/MythCenter/title/title_games.png
487
%%DATADIR%%/themes/MythCenter/title/title_info_center.png
488
%%DATADIR%%/themes/MythCenter/title/title_info_settings.png
489
%%DATADIR%%/themes/MythCenter/title/title_main.png
490
%%DATADIR%%/themes/MythCenter/title/title_multimedia.png
491
%%DATADIR%%/themes/MythCenter/title/title_music.png
492
%%DATADIR%%/themes/MythCenter/title/title_music_setup.png
493
%%DATADIR%%/themes/MythCenter/title/title_priority.png
494
%%DATADIR%%/themes/MythCenter/title/title_record.png
495
%%DATADIR%%/themes/MythCenter/title/title_schedule.png
496
%%DATADIR%%/themes/MythCenter/title/title_search.png
497
%%DATADIR%%/themes/MythCenter/title/title_setup.png
498
%%DATADIR%%/themes/MythCenter/title/title_tv.png
499
%%DATADIR%%/themes/MythCenter/title/title_video.png
500
%%DATADIR%%/themes/MythCenter/title/title_weather.png
501
%%DATADIR%%/themes/MythCenter/ui.xml
502
%%DATADIR%%/themes/MythCenter/ui/background.png
503
%%DATADIR%%/themes/MythCenter/ui/button_off.png
504
%%DATADIR%%/themes/MythCenter/ui/button_on.png
505
%%DATADIR%%/themes/MythCenter/ui/down.png
506
%%DATADIR%%/themes/MythCenter/ui/mythtv_logo.png
507
%%DATADIR%%/themes/MythCenter/ui/up.png
508
%%DATADIR%%/themes/MythCenter/watermark/alarmclock.png
509
%%DATADIR%%/themes/MythCenter/watermark/appearance.png
510
%%DATADIR%%/themes/MythCenter/watermark/big_arrow_down.png
511
%%DATADIR%%/themes/MythCenter/watermark/browser.png
512
%%DATADIR%%/themes/MythCenter/watermark/cd.png
513
%%DATADIR%%/themes/MythCenter/watermark/cd_burn.png
514
%%DATADIR%%/themes/MythCenter/watermark/cd_rip.png
515
%%DATADIR%%/themes/MythCenter/watermark/checklist.png
516
%%DATADIR%%/themes/MythCenter/watermark/clock.png
517
%%DATADIR%%/themes/MythCenter/watermark/dvd.png
518
%%DATADIR%%/themes/MythCenter/watermark/dvd_burn.png
519
%%DATADIR%%/themes/MythCenter/watermark/dvd_eject.png
520
%%DATADIR%%/themes/MythCenter/watermark/dvd_rip.png
521
%%DATADIR%%/themes/MythCenter/watermark/error.png
522
%%DATADIR%%/themes/MythCenter/watermark/gallery.png
523
%%DATADIR%%/themes/MythCenter/watermark/gallery_settings.png
524
%%DATADIR%%/themes/MythCenter/watermark/hardware_info.png
525
%%DATADIR%%/themes/MythCenter/watermark/hardware_settings.png
526
%%DATADIR%%/themes/MythCenter/watermark/important.png
527
%%DATADIR%%/themes/MythCenter/watermark/info.png
528
%%DATADIR%%/themes/MythCenter/watermark/info_setup.png
529
%%DATADIR%%/themes/MythCenter/watermark/ipod.png
530
%%DATADIR%%/themes/MythCenter/watermark/joystick.png
531
%%DATADIR%%/themes/MythCenter/watermark/keys.png
532
%%DATADIR%%/themes/MythCenter/watermark/movietime.png
533
%%DATADIR%%/themes/MythCenter/watermark/multimedia.png
534
%%DATADIR%%/themes/MythCenter/watermark/music.png
535
%%DATADIR%%/themes/MythCenter/watermark/music_settings.png
536
%%DATADIR%%/themes/MythCenter/watermark/news.png
537
%%DATADIR%%/themes/MythCenter/watermark/phone.png
538
%%DATADIR%%/themes/MythCenter/watermark/pie.png
539
%%DATADIR%%/themes/MythCenter/watermark/play.png
540
%%DATADIR%%/themes/MythCenter/watermark/priority.png
541
%%DATADIR%%/themes/MythCenter/watermark/radio.png
542
%%DATADIR%%/themes/MythCenter/watermark/record.png
543
%%DATADIR%%/themes/MythCenter/watermark/screenwiz.png
544
%%DATADIR%%/themes/MythCenter/watermark/search.png
545
%%DATADIR%%/themes/MythCenter/watermark/setup.png
546
%%DATADIR%%/themes/MythCenter/watermark/stream.png
547
%%DATADIR%%/themes/MythCenter/watermark/tv.png
548
%%DATADIR%%/themes/MythCenter/watermark/video.png
549
%%DATADIR%%/themes/MythCenter/watermark/video_settings.png
550
%%DATADIR%%/themes/MythCenter/watermark/weather.png
551
%%DATADIR%%/themes/MythCenter/watermark/zoneminder.png
552
%%DATADIR%%/themes/Terra/backgrounds/background.png
553
%%DATADIR%%/themes/Terra/backgrounds/bottombar.png
554
%%DATADIR%%/themes/Terra/backgrounds/horizontal_menu_background.png
555
%%DATADIR%%/themes/Terra/backgrounds/topbar.png
556
%%DATADIR%%/themes/Terra/backgrounds/videobackground.png
557
%%DATADIR%%/themes/Terra/base.xml
558
%%DATADIR%%/themes/Terra/browser-ui.xml
559
%%DATADIR%%/themes/Terra/config-ui.xml
560
%%DATADIR%%/themes/Terra/config/selected_icon_mask.png
561
%%DATADIR%%/themes/Terra/controls/button.png
562
%%DATADIR%%/themes/Terra/controls/button_pushed.png
563
%%DATADIR%%/themes/Terra/controls/checkbox_background.png
564
%%DATADIR%%/themes/Terra/controls/checkbox_background_selected.png
565
%%DATADIR%%/themes/Terra/controls/cursor.png
566
%%DATADIR%%/themes/Terra/controls/selector_left_arrow.png
567
%%DATADIR%%/themes/Terra/controls/selector_right_arrow.png
568
%%DATADIR%%/themes/Terra/controls/short_textedit_background.png
569
%%DATADIR%%/themes/Terra/controls/short_textedit_background_selected.png
570
%%DATADIR%%/themes/Terra/controls/small_button.png
571
%%DATADIR%%/themes/Terra/controls/small_button_pushed.png
572
%%DATADIR%%/themes/Terra/gallery-ui.xml
573
%%DATADIR%%/themes/Terra/game-ui.xml
574
%%DATADIR%%/themes/Terra/guide/guide_arrow_left.png
575
%%DATADIR%%/themes/Terra/guide/guide_arrow_right.png
576
%%DATADIR%%/themes/Terra/guide/guide_frame.png
577
%%DATADIR%%/themes/Terra/guide/icon_mask.png
578
%%DATADIR%%/themes/Terra/htmls/progdetails_page1.html
579
%%DATADIR%%/themes/Terra/htmls/progdetails_page2.html
580
%%DATADIR%%/themes/Terra/menu-ui.xml
581
%%DATADIR%%/themes/Terra/menu/iconmask.png
582
%%DATADIR%%/themes/Terra/menu/menubackground.png
583
%%DATADIR%%/themes/Terra/menu/menuframe.png
584
%%DATADIR%%/themes/Terra/music-ui.xml
585
%%DATADIR%%/themes/Terra/popups/alt_menu_background.png
586
%%DATADIR%%/themes/Terra/popups/busy/busy_0.png
587
%%DATADIR%%/themes/Terra/popups/busy/busy_1.png
588
%%DATADIR%%/themes/Terra/popups/busy/busy_10.png
589
%%DATADIR%%/themes/Terra/popups/busy/busy_11.png
590
%%DATADIR%%/themes/Terra/popups/busy/busy_12.png
591
%%DATADIR%%/themes/Terra/popups/busy/busy_13.png
592
%%DATADIR%%/themes/Terra/popups/busy/busy_14.png
593
%%DATADIR%%/themes/Terra/popups/busy/busy_15.png
594
%%DATADIR%%/themes/Terra/popups/busy/busy_16.png
595
%%DATADIR%%/themes/Terra/popups/busy/busy_17.png
596
%%DATADIR%%/themes/Terra/popups/busy/busy_18.png
597
%%DATADIR%%/themes/Terra/popups/busy/busy_19.png
598
%%DATADIR%%/themes/Terra/popups/busy/busy_2.png
599
%%DATADIR%%/themes/Terra/popups/busy/busy_20.png
600
%%DATADIR%%/themes/Terra/popups/busy/busy_21.png
601
%%DATADIR%%/themes/Terra/popups/busy/busy_22.png
602
%%DATADIR%%/themes/Terra/popups/busy/busy_23.png
603
%%DATADIR%%/themes/Terra/popups/busy/busy_24.png
604
%%DATADIR%%/themes/Terra/popups/busy/busy_25.png
605
%%DATADIR%%/themes/Terra/popups/busy/busy_26.png
606
%%DATADIR%%/themes/Terra/popups/busy/busy_27.png
607
%%DATADIR%%/themes/Terra/popups/busy/busy_28.png
608
%%DATADIR%%/themes/Terra/popups/busy/busy_29.png
609
%%DATADIR%%/themes/Terra/popups/busy/busy_3.png
610
%%DATADIR%%/themes/Terra/popups/busy/busy_4.png
611
%%DATADIR%%/themes/Terra/popups/busy/busy_5.png
612
%%DATADIR%%/themes/Terra/popups/busy/busy_6.png
613
%%DATADIR%%/themes/Terra/popups/busy/busy_7.png
614
%%DATADIR%%/themes/Terra/popups/busy/busy_8.png
615
%%DATADIR%%/themes/Terra/popups/busy/busy_9.png
616
%%DATADIR%%/themes/Terra/popups/confirmation_background.png
617
%%DATADIR%%/themes/Terra/popups/largemenubackground.png
618
%%DATADIR%%/themes/Terra/popups/menu_background.png
619
%%DATADIR%%/themes/Terra/popups/menu_button.png
620
%%DATADIR%%/themes/Terra/popups/menu_button_pushed.png
621
%%DATADIR%%/themes/Terra/popups/progress_bar_background.png
622
%%DATADIR%%/themes/Terra/popups/progress_bar_fill.png
623
%%DATADIR%%/themes/Terra/popups/progress_bar_overlay.png
624
%%DATADIR%%/themes/Terra/popups/progress_dialog_background.png
625
%%DATADIR%%/themes/Terra/popups/selected_item_arrow.png
626
%%DATADIR%%/themes/Terra/popups/selected_submenu_arrow.png
627
%%DATADIR%%/themes/Terra/popups/submenu_arrow.png
628
%%DATADIR%%/themes/Terra/preview.png
629
%%DATADIR%%/themes/Terra/qtlook.txt
630
%%DATADIR%%/themes/Terra/recordings-ui.xml
631
%%DATADIR%%/themes/Terra/recordings/filterlist_background.png
632
%%DATADIR%%/themes/Terra/recordings/flagging_1.png
633
%%DATADIR%%/themes/Terra/recordings/flagging_2.png
634
%%DATADIR%%/themes/Terra/recordings/flagging_3.png
635
%%DATADIR%%/themes/Terra/recordings/flagging_4.png
636
%%DATADIR%%/themes/Terra/recordings/flagging_5.png
637
%%DATADIR%%/themes/Terra/recordings/flagging_6.png
638
%%DATADIR%%/themes/Terra/recordings/flagging_7.png
639
%%DATADIR%%/themes/Terra/recordings/flagging_8.png
640
%%DATADIR%%/themes/Terra/recordings/generallistbackground.png
641
%%DATADIR%%/themes/Terra/recordings/generallistselectedframe.png
642
%%DATADIR%%/themes/Terra/recordings/groupframe.png
643
%%DATADIR%%/themes/Terra/recordings/previewmask.png
644
%%DATADIR%%/themes/Terra/recordings/previewmask_unselected.png
645
%%DATADIR%%/themes/Terra/recordings/recording_1.png
646
%%DATADIR%%/themes/Terra/recordings/recording_2.png
647
%%DATADIR%%/themes/Terra/recordings/recording_3.png
648
%%DATADIR%%/themes/Terra/recordings/recording_4.png
649
%%DATADIR%%/themes/Terra/recordings/recording_5.png
650
%%DATADIR%%/themes/Terra/recordings/recording_6.png
651
%%DATADIR%%/themes/Terra/recordings/recording_7.png
652
%%DATADIR%%/themes/Terra/recordings/recording_8.png
653
%%DATADIR%%/themes/Terra/recordings/recordingsbackground.png
654
%%DATADIR%%/themes/Terra/recordings/selected_recording_background.png
655
%%DATADIR%%/themes/Terra/recordings/statusoverlay.png
656
%%DATADIR%%/themes/Terra/recordings/transcoding_1.png
657
%%DATADIR%%/themes/Terra/recordings/transcoding_2.png
658
%%DATADIR%%/themes/Terra/recordings/transcoding_3.png
659
%%DATADIR%%/themes/Terra/recordings/transcoding_4.png
660
%%DATADIR%%/themes/Terra/recordings/transcoding_5.png
661
%%DATADIR%%/themes/Terra/recordings/transcoding_6.png
662
%%DATADIR%%/themes/Terra/recordings/transcoding_7.png
663
%%DATADIR%%/themes/Terra/recordings/transcoding_8.png
664
%%DATADIR%%/themes/Terra/schedule-ui.xml
665
%%DATADIR%%/themes/Terra/schedule/generic_list_frame.png
666
%%DATADIR%%/themes/Terra/shared/black_star.png
667
%%DATADIR%%/themes/Terra/shared/bronze_star.png
668
%%DATADIR%%/themes/Terra/shared/cross.png
669
%%DATADIR%%/themes/Terra/shared/directory.png
670
%%DATADIR%%/themes/Terra/shared/gold_star.png
671
%%DATADIR%%/themes/Terra/shared/horizlist_internal_left_arrow.png
672
%%DATADIR%%/themes/Terra/shared/horizlist_internal_right_arrow.png
673
%%DATADIR%%/themes/Terra/shared/horizlist_left_arrow.png
674
%%DATADIR%%/themes/Terra/shared/horizlist_right_arrow.png
675
%%DATADIR%%/themes/Terra/shared/icons/16_9.png
676
%%DATADIR%%/themes/Terra/shared/icons/adflagged.png
677
%%DATADIR%%/themes/Terra/shared/icons/audio_mono.png
678
%%DATADIR%%/themes/Terra/shared/icons/audio_stereo.png
679
%%DATADIR%%/themes/Terra/shared/icons/audio_surround.png
680
%%DATADIR%%/themes/Terra/shared/icons/autoexpire.png
681
%%DATADIR%%/themes/Terra/shared/icons/bookmark.png
682
%%DATADIR%%/themes/Terra/shared/icons/cutlist.png
683
%%DATADIR%%/themes/Terra/shared/icons/hd_1080.png
684
%%DATADIR%%/themes/Terra/shared/icons/hd_720.png
685
%%DATADIR%%/themes/Terra/shared/icons/hdtv.png
686
%%DATADIR%%/themes/Terra/shared/list_down_arrow.png
687
%%DATADIR%%/themes/Terra/shared/list_left_arrow.png
688
%%DATADIR%%/themes/Terra/shared/list_right_arrow.png
689
%%DATADIR%%/themes/Terra/shared/list_up_arrow.png
690
%%DATADIR%%/themes/Terra/shared/playlist.png
691
%%DATADIR%%/themes/Terra/shared/selected_state_mask.png
692
%%DATADIR%%/themes/Terra/shared/silver_star.png
693
%%DATADIR%%/themes/Terra/shared/super_gold_star.png
694
%%DATADIR%%/themes/Terra/shared/tick.png
695
%%DATADIR%%/themes/Terra/shared/updirectory.png
696
%%DATADIR%%/themes/Terra/shared/watched.png
697
%%DATADIR%%/themes/Terra/themeinfo.xml
698
%%DATADIR%%/themes/Terra/ui.xml
699
%%DATADIR%%/themes/Terra/video-ui.xml
700
%%DATADIR%%/themes/Terra/video/browserlistbackground.png
701
%%DATADIR%%/themes/Terra/video/browserlistframe.png
702
%%DATADIR%%/themes/Terra/video/filters_background.png
703
%%DATADIR%%/themes/Terra/video/info_background.png
704
%%DATADIR%%/themes/Terra/video/info_poster_mask.png
705
%%DATADIR%%/themes/Terra/video/managerlistbackground.png
706
%%DATADIR%%/themes/Terra/video/managerlistframe.png
707
%%DATADIR%%/themes/Terra/video/managerpostermask.png
708
%%DATADIR%%/themes/Terra/video/parental_level_high.png
709
%%DATADIR%%/themes/Terra/video/parental_level_low.png
710
%%DATADIR%%/themes/Terra/video/parental_level_lowest.png
711
%%DATADIR%%/themes/Terra/video/parental_level_medium.png
712
%%DATADIR%%/themes/Terra/video/parental_level_none.png
713
%%DATADIR%%/themes/Terra/video/postermask.png
714
%%DATADIR%%/themes/Terra/video/video_gallery_background.png
715
%%DATADIR%%/themes/Terra/video/video_gallery_background_selected.png
716
%%DATADIR%%/themes/Terra/watermarks/README.license
717
%%DATADIR%%/themes/Terra/watermarks/aerial.png
718
%%DATADIR%%/themes/Terra/watermarks/appearance.png
719
%%DATADIR%%/themes/Terra/watermarks/archive.png
720
%%DATADIR%%/themes/Terra/watermarks/browser.png
721
%%DATADIR%%/themes/Terra/watermarks/cd.png
722
%%DATADIR%%/themes/Terra/watermarks/clock.png
723
%%DATADIR%%/themes/Terra/watermarks/create_archive.png
724
%%DATADIR%%/themes/Terra/watermarks/default.png
725
%%DATADIR%%/themes/Terra/watermarks/delete.png
726
%%DATADIR%%/themes/Terra/watermarks/eject_media.png
727
%%DATADIR%%/themes/Terra/watermarks/food.png
728
%%DATADIR%%/themes/Terra/watermarks/gallery.png
729
%%DATADIR%%/themes/Terra/watermarks/games.png
730
%%DATADIR%%/themes/Terra/watermarks/guide.png
731
%%DATADIR%%/themes/Terra/watermarks/import_archive.png
732
%%DATADIR%%/themes/Terra/watermarks/import_cd.png
733
%%DATADIR%%/themes/Terra/watermarks/import_dvd.png
734
%%DATADIR%%/themes/Terra/watermarks/import_files.png
735
%%DATADIR%%/themes/Terra/watermarks/info_settings.png
736
%%DATADIR%%/themes/Terra/watermarks/keys.png
737
%%DATADIR%%/themes/Terra/watermarks/library.png
738
%%DATADIR%%/themes/Terra/watermarks/media_settings.png
739
%%DATADIR%%/themes/Terra/watermarks/movie.png
740
%%DATADIR%%/themes/Terra/watermarks/music.png
741
%%DATADIR%%/themes/Terra/watermarks/music2.png
742
%%DATADIR%%/themes/Terra/watermarks/music_settings.png
743
%%DATADIR%%/themes/Terra/watermarks/netflix.png
744
%%DATADIR%%/themes/Terra/watermarks/new_music.png
745
%%DATADIR%%/themes/Terra/watermarks/news.png
746
%%DATADIR%%/themes/Terra/watermarks/osd_appearance.png
747
%%DATADIR%%/themes/Terra/watermarks/osd_editor.png
748
%%DATADIR%%/themes/Terra/watermarks/play_dvd.png
749
%%DATADIR%%/themes/Terra/watermarks/play_music.png
750
%%DATADIR%%/themes/Terra/watermarks/player_settings.png
751
%%DATADIR%%/themes/Terra/watermarks/previously_recorded.png
752
%%DATADIR%%/themes/Terra/watermarks/program_finder.png
753
%%DATADIR%%/themes/Terra/watermarks/radio.png
754
%%DATADIR%%/themes/Terra/watermarks/screen_setup.png
755
%%DATADIR%%/themes/Terra/watermarks/search_words.png
756
%%DATADIR%%/themes/Terra/watermarks/select_music.png
757
%%DATADIR%%/themes/Terra/watermarks/status.png
758
%%DATADIR%%/themes/Terra/watermarks/stop_light.png
759
%%DATADIR%%/themes/Terra/watermarks/tools.png
760
%%DATADIR%%/themes/Terra/watermarks/tv.png
761
%%DATADIR%%/themes/Terra/watermarks/vcr.png
762
%%DATADIR%%/themes/Terra/watermarks/video.png
763
%%DATADIR%%/themes/Terra/watermarks/video_settings.png
764
%%DATADIR%%/themes/Terra/watermarks/watchrec.png
765
%%DATADIR%%/themes/Terra/watermarks/weather.png
766
%%DATADIR%%/themes/Terra/watermarks/zm_console.png
767
%%DATADIR%%/themes/Terra/watermarks/zm_events.png
768
%%DATADIR%%/themes/Terra/watermarks/zm_live.png
769
%%DATADIR%%/themes/Terra/watermarks/zoneminder.png
770
%%DATADIR%%/themes/classic/classic-preview.png
771
%%DATADIR%%/themes/classic/main_settings.xml
772
%%DATADIR%%/themes/classic/mainmenu.xml
773
%%DATADIR%%/themes/classic/recpriorities_settings.xml
774
%%DATADIR%%/themes/classic/themeinfo.xml
775
%%DATADIR%%/themes/classic/tv_schedule.xml
776
%%DATADIR%%/themes/classic/tv_search.xml
777
%%DATADIR%%/themes/classic/tv_settings.xml
778
%%DATADIR%%/themes/classic/tvmenu.xml
779
%%DATADIR%%/themes/default-wide/appear-ui.xml
780
%%DATADIR%%/themes/default-wide/bar.png
781
%%DATADIR%%/themes/default-wide/base.xml
782
%%DATADIR%%/themes/default-wide/button_wide_background.png
783
%%DATADIR%%/themes/default-wide/button_wide_pushed_background.png
784
%%DATADIR%%/themes/default-wide/button_wide_selected_background.png
785
%%DATADIR%%/themes/default-wide/config-ui.xml
786
%%DATADIR%%/themes/default-wide/controls-ui.xml
787
%%DATADIR%%/themes/default-wide/cr-lines.png
788
%%DATADIR%%/themes/default-wide/cr-selectbar.png
789
%%DATADIR%%/themes/default-wide/def-ro-lines.png
790
%%DATADIR%%/themes/default-wide/filler.png
791
%%DATADIR%%/themes/default-wide/md_progress_background.png
792
%%DATADIR%%/themes/default-wide/pd-background.png
793
%%DATADIR%%/themes/default-wide/pf-background.png
794
%%DATADIR%%/themes/default-wide/pf-lines.png
795
%%DATADIR%%/themes/default-wide/pf-sel1.png
796
%%DATADIR%%/themes/default-wide/pf-sel2.png
797
%%DATADIR%%/themes/default-wide/pf-sel3.png
798
%%DATADIR%%/themes/default-wide/pf-top.png
799
%%DATADIR%%/themes/default-wide/preview.png
800
%%DATADIR%%/themes/default-wide/reclist_background.png
801
%%DATADIR%%/themes/default-wide/recordings-ui.xml
802
%%DATADIR%%/themes/default-wide/rk-lines.png
803
%%DATADIR%%/themes/default-wide/rk-selectbar.png
804
%%DATADIR%%/themes/default-wide/schedule-ui.xml
805
%%DATADIR%%/themes/default-wide/selectbar.png
806
%%DATADIR%%/themes/default-wide/shared/grid_back_reg.png
807
%%DATADIR%%/themes/default-wide/shared/grid_back_sel.png
808
%%DATADIR%%/themes/default-wide/shared/grid_noimage.png
809
%%DATADIR%%/themes/default-wide/solid-container.png
810
%%DATADIR%%/themes/default-wide/solid-cr-background.png
811
%%DATADIR%%/themes/default-wide/status-bar.png
812
%%DATADIR%%/themes/default-wide/status-ui.xml
813
%%DATADIR%%/themes/default-wide/text_button_off.png
814
%%DATADIR%%/themes/default-wide/text_button_on.png
815
%%DATADIR%%/themes/default-wide/text_button_pushed.png
816
%%DATADIR%%/themes/default-wide/track_info_background.png
817
%%DATADIR%%/themes/default-wide/trans-backup.png
818
%%DATADIR%%/themes/default-wide/trans-container.png
819
%%DATADIR%%/themes/default-wide/trans-cr-background.png
820
%%DATADIR%%/themes/default-wide/trans-rk-background.png
821
%%DATADIR%%/themes/default-wide/trans-sr-background.png
822
%%DATADIR%%/themes/default-wide/welcome-ui.xml
823
%%DATADIR%%/themes/default/appear-ui.xml
824
%%DATADIR%%/themes/default/autoexpire.png
825
%%DATADIR%%/themes/default/avchd.png
826
%%DATADIR%%/themes/default/background.png
827
%%DATADIR%%/themes/default/backup.png
828
%%DATADIR%%/themes/default/bar.png
829
%%DATADIR%%/themes/default/base.xml
830
%%DATADIR%%/themes/default/blank.png
262
%%DATADIR%%/themes/default/blankbutton_off.png
831
%%DATADIR%%/themes/default/blankbutton_off.png
263
%%DATADIR%%/themes/default/topleft.png
264
%%DATADIR%%/themes/default/unchecked.png
265
%%DATADIR%%/themes/default/wide.png
266
%%DATADIR%%/themes/default/blankbutton_pushed.png
267
%%DATADIR%%/themes/default/text_button_on.png
268
%%DATADIR%%/themes/default/blankbutton_on.png
832
%%DATADIR%%/themes/default/blankbutton_on.png
269
%%DATADIR%%/themes/default/appear-ui.xml
833
%%DATADIR%%/themes/default/blankbutton_pushed.png
270
%%DATADIR%%/themes/default/leftright_pushed.png
834
%%DATADIR%%/themes/default/bookmark.png
271
%%DATADIR%%/themes/default/leftright_off.png
835
%%DATADIR%%/themes/default/bottomright.png
836
%%DATADIR%%/themes/default/busyimages/0.png
837
%%DATADIR%%/themes/default/busyimages/1.png
838
%%DATADIR%%/themes/default/busyimages/10.png
839
%%DATADIR%%/themes/default/busyimages/11.png
840
%%DATADIR%%/themes/default/busyimages/12.png
841
%%DATADIR%%/themes/default/busyimages/13.png
842
%%DATADIR%%/themes/default/busyimages/14.png
843
%%DATADIR%%/themes/default/busyimages/15.png
844
%%DATADIR%%/themes/default/busyimages/16.png
845
%%DATADIR%%/themes/default/busyimages/17.png
846
%%DATADIR%%/themes/default/busyimages/18.png
847
%%DATADIR%%/themes/default/busyimages/19.png
848
%%DATADIR%%/themes/default/busyimages/2.png
849
%%DATADIR%%/themes/default/busyimages/20.png
850
%%DATADIR%%/themes/default/busyimages/21.png
851
%%DATADIR%%/themes/default/busyimages/22.png
852
%%DATADIR%%/themes/default/busyimages/23.png
853
%%DATADIR%%/themes/default/busyimages/24.png
854
%%DATADIR%%/themes/default/busyimages/3.png
855
%%DATADIR%%/themes/default/busyimages/4.png
856
%%DATADIR%%/themes/default/busyimages/5.png
857
%%DATADIR%%/themes/default/busyimages/6.png
858
%%DATADIR%%/themes/default/busyimages/7.png
859
%%DATADIR%%/themes/default/busyimages/8.png
860
%%DATADIR%%/themes/default/busyimages/9.png
861
%%DATADIR%%/themes/default/button_background.png
862
%%DATADIR%%/themes/default/button_pushed_background.png
863
%%DATADIR%%/themes/default/button_selected_background.png
864
%%DATADIR%%/themes/default/categories.xml
865
%%DATADIR%%/themes/default/cc.png
866
%%DATADIR%%/themes/default/checkbox_background_off.png
867
%%DATADIR%%/themes/default/checkbox_background_selected.png
868
%%DATADIR%%/themes/default/checkbox_fullcheck.png
869
%%DATADIR%%/themes/default/checkbox_halfcheck.png
870
%%DATADIR%%/themes/default/checked.png
272
%%DATADIR%%/themes/default/checked_high.png
871
%%DATADIR%%/themes/default/checked_high.png
273
%%DATADIR%%/themes/default/leftright_on.png
872
%%DATADIR%%/themes/default/commflagged.png
274
%%DATADIR%%/themes/default/mythdialogbox-background.png
873
%%DATADIR%%/themes/default/config-ui.xml
275
%%DATADIR%%/themes/default/surround.png
874
%%DATADIR%%/themes/default/container.png
276
%%DATADIR%%/themes/default/subs_onscreen.png
875
%%DATADIR%%/themes/default/controls-ui.xml
277
%%DATADIR%%/themes/default/text_button_off.png
876
%%DATADIR%%/themes/default/cr-background.png
278
%%DATADIR%%/themes/default/selectbar.png
877
%%DATADIR%%/themes/default/cr-lines.png
279
%%DATADIR%%/themes/default/preview.png
878
%%DATADIR%%/themes/default/cr-selectbar.png
280
%%DATADIR%%/themes/default/text_button_pushed.png
879
%%DATADIR%%/themes/default/cursor.png
281
%%DATADIR%%/themes/default/watched.png
880
%%DATADIR%%/themes/default/cutlist.png
282
%%DATADIR%%/themes/default/dd.png
881
%%DATADIR%%/themes/default/dd.png
283
%%DATADIR%%/themes/default/mono.png
882
%%DATADIR%%/themes/default/def-ro-lines.png
284
%%DATADIR%%/themes/default/subs.png
883
%%DATADIR%%/themes/default/down_arrow.png
285
%%DATADIR%%/themes/default/checked.png
884
%%DATADIR%%/themes/default/downarrow.png
286
%%DATADIR%%/themes/default/welcome-ui.xml
885
%%DATADIR%%/themes/default/dummy1280x720p29.97.ts
287
%%DATADIR%%/themes/default/mw_text_button_off.png
886
%%DATADIR%%/themes/default/dummy1920x1088p29.97.ts
288
%%DATADIR%%/themes/default/mw_text_button_on.png
887
%%DATADIR%%/themes/default/dummy640x480p29.97.ts
289
%%DATADIR%%/themes/default/mw_text_button_pushed.png
888
%%DATADIR%%/themes/default/dummy720x480p29.97.ts
290
%%DATADIR%%/themes/default/keyboard/key_downfocused_shift.png
889
%%DATADIR%%/themes/default/dummy720x576p25.00.ts
291
%%DATADIR%%/themes/default/keyboard/key_focused_space2.png
890
%%DATADIR%%/themes/default/dummy768x576p50.00.ts
292
%%DATADIR%%/themes/default/keyboard/key_focused_shift.png
891
%%DATADIR%%/themes/default/filler.png
892
%%DATADIR%%/themes/default/galleryfolder.png
893
%%DATADIR%%/themes/default/gg-arrow-down.png
894
%%DATADIR%%/themes/default/gg-arrow-left.png
895
%%DATADIR%%/themes/default/gg-arrow-right.png
896
%%DATADIR%%/themes/default/gg-arrow-up.png
897
%%DATADIR%%/themes/default/gg-chans.png
898
%%DATADIR%%/themes/default/gg-rs-all.png
899
%%DATADIR%%/themes/default/gg-rs-channel.png
900
%%DATADIR%%/themes/default/gg-rs-findone.png
901
%%DATADIR%%/themes/default/gg-rs-override.png
902
%%DATADIR%%/themes/default/gg-rs-single.png
903
%%DATADIR%%/themes/default/gg-rs-timeslot.png
904
%%DATADIR%%/themes/default/gg-rs-weekslot.png
905
%%DATADIR%%/themes/default/gg-times.png
906
%%DATADIR%%/themes/default/hd.png
907
%%DATADIR%%/themes/default/hd1080.png
908
%%DATADIR%%/themes/default/hd720.png
909
%%DATADIR%%/themes/default/htmls/notfound.html
910
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
911
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
912
%%DATADIR%%/themes/default/keyboard/ar.xml
913
%%DATADIR%%/themes/default/keyboard/ar_ui.xml
914
%%DATADIR%%/themes/default/keyboard/de.xml
915
%%DATADIR%%/themes/default/keyboard/de_ui.xml
916
%%DATADIR%%/themes/default/keyboard/dk.xml
917
%%DATADIR%%/themes/default/keyboard/dk_ui.xml
918
%%DATADIR%%/themes/default/keyboard/en_uk.xml
919
%%DATADIR%%/themes/default/keyboard/en_uk_ui.xml
920
%%DATADIR%%/themes/default/keyboard/en_us.xml
921
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
922
%%DATADIR%%/themes/default/keyboard/es.xml
923
%%DATADIR%%/themes/default/keyboard/es_ui.xml
924
%%DATADIR%%/themes/default/keyboard/fr.xml
925
%%DATADIR%%/themes/default/keyboard/fr_ch.xml
926
%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml
927
%%DATADIR%%/themes/default/keyboard/fr_ui.xml
928
%%DATADIR%%/themes/default/keyboard/he.xml
929
%%DATADIR%%/themes/default/keyboard/he_ui.xml
930
%%DATADIR%%/themes/default/keyboard/it.xml
931
%%DATADIR%%/themes/default/keyboard/it_ui.xml
932
%%DATADIR%%/themes/default/keyboard/key_down.png
293
%%DATADIR%%/themes/default/keyboard/key_down_back.png
933
%%DATADIR%%/themes/default/keyboard/key_down_back.png
294
%%DATADIR%%/themes/default/keyboard/ru_ui.xml
295
%%DATADIR%%/themes/default/keyboard/key_normal.png
296
%%DATADIR%%/themes/default/keyboard/key_down_del.png
934
%%DATADIR%%/themes/default/keyboard/key_down_del.png
297
%%DATADIR%%/themes/default/keyboard/key_focused_done.png
935
%%DATADIR%%/themes/default/keyboard/key_down_done.png
298
%%DATADIR%%/themes/default/keyboard/key_focused_space.png
936
%%DATADIR%%/themes/default/keyboard/key_down_move.png
299
%%DATADIR%%/themes/default/keyboard/key_downfocused_del.png
300
%%DATADIR%%/themes/default/keyboard/key_down_shift.png
937
%%DATADIR%%/themes/default/keyboard/key_down_shift.png
938
%%DATADIR%%/themes/default/keyboard/key_down_space.png
939
%%DATADIR%%/themes/default/keyboard/key_down_space2.png
940
%%DATADIR%%/themes/default/keyboard/key_downfocused.png
941
%%DATADIR%%/themes/default/keyboard/key_downfocused_back.png
942
%%DATADIR%%/themes/default/keyboard/key_downfocused_del.png
943
%%DATADIR%%/themes/default/keyboard/key_downfocused_done.png
301
%%DATADIR%%/themes/default/keyboard/key_downfocused_move.png
944
%%DATADIR%%/themes/default/keyboard/key_downfocused_move.png
302
%%DATADIR%%/themes/default/keyboard/key_focused_back.png
945
%%DATADIR%%/themes/default/keyboard/key_downfocused_shift.png
946
%%DATADIR%%/themes/default/keyboard/key_downfocused_space.png
947
%%DATADIR%%/themes/default/keyboard/key_downfocused_space2.png
303
%%DATADIR%%/themes/default/keyboard/key_focused.png
948
%%DATADIR%%/themes/default/keyboard/key_focused.png
304
%%DATADIR%%/themes/default/keyboard/fr_ui.xml
949
%%DATADIR%%/themes/default/keyboard/key_focused_back.png
950
%%DATADIR%%/themes/default/keyboard/key_focused_del.png
951
%%DATADIR%%/themes/default/keyboard/key_focused_done.png
952
%%DATADIR%%/themes/default/keyboard/key_focused_move.png
953
%%DATADIR%%/themes/default/keyboard/key_focused_shift.png
954
%%DATADIR%%/themes/default/keyboard/key_focused_space.png
955
%%DATADIR%%/themes/default/keyboard/key_focused_space2.png
956
%%DATADIR%%/themes/default/keyboard/key_normal.png
957
%%DATADIR%%/themes/default/keyboard/key_normal_back.png
305
%%DATADIR%%/themes/default/keyboard/key_normal_del.png
958
%%DATADIR%%/themes/default/keyboard/key_normal_del.png
306
%%DATADIR%%/themes/default/keyboard/fr_ch_ui.xml
959
%%DATADIR%%/themes/default/keyboard/key_normal_done.png
307
%%DATADIR%%/themes/default/keyboard/it_ui.xml
308
%%DATADIR%%/themes/default/keyboard/key_downfocused_space2.png
309
%%DATADIR%%/themes/default/keyboard/key_normal_move.png
960
%%DATADIR%%/themes/default/keyboard/key_normal_move.png
310
%%DATADIR%%/themes/default/keyboard/key_down_space.png
311
%%DATADIR%%/themes/default/keyboard/key_downfocused_done.png
312
%%DATADIR%%/themes/default/keyboard/key_normal_shift.png
961
%%DATADIR%%/themes/default/keyboard/key_normal_shift.png
962
%%DATADIR%%/themes/default/keyboard/key_normal_space.png
313
%%DATADIR%%/themes/default/keyboard/key_normal_space2.png
963
%%DATADIR%%/themes/default/keyboard/key_normal_space2.png
964
%%DATADIR%%/themes/default/keyboard/keyboard-background.png
965
%%DATADIR%%/themes/default/keyboard/keyboard.xml
966
%%DATADIR%%/themes/default/keyboard/leftarrow.png
967
%%DATADIR%%/themes/default/keyboard/returnarrow.png
968
%%DATADIR%%/themes/default/keyboard/rightarrow.png
969
%%DATADIR%%/themes/default/keyboard/ru.xml
970
%%DATADIR%%/themes/default/keyboard/ru_ui.xml
971
%%DATADIR%%/themes/default/keyboard/shiftarrow.png
972
%%DATADIR%%/themes/default/keyboard/sv.xml
314
%%DATADIR%%/themes/default/keyboard/sv_ui.xml
973
%%DATADIR%%/themes/default/keyboard/sv_ui.xml
315
%%DATADIR%%/themes/default/keyboard/de_ui.xml
974
%%DATADIR%%/themes/default/lb-arrow.png
316
%%DATADIR%%/themes/default/keyboard/key_downfocused_space.png
975
%%DATADIR%%/themes/default/lb-check-empty.png
317
%%DATADIR%%/themes/default/keyboard/key_down_move.png
976
%%DATADIR%%/themes/default/lb-check-full.png
318
%%DATADIR%%/themes/default/keyboard/key_normal_done.png
977
%%DATADIR%%/themes/default/lb-check-half.png
319
%%DATADIR%%/themes/default/keyboard/dk_ui.xml
320
%%DATADIR%%/themes/default/keyboard/key_downfocused_back.png
321
%%DATADIR%%/themes/default/keyboard/key_normal_space.png
322
%%DATADIR%%/themes/default/keyboard/en_uk_ui.xml
323
%%DATADIR%%/themes/default/keyboard/key_down_space2.png
324
%%DATADIR%%/themes/default/keyboard/key_down.png
325
%%DATADIR%%/themes/default/keyboard/en_us_ui.xml
326
%%DATADIR%%/themes/default/keyboard/es_ui.xml
327
%%DATADIR%%/themes/default/keyboard/key_normal_back.png
328
%%DATADIR%%/themes/default/keyboard/key_focused_del.png
329
%%DATADIR%%/themes/default/keyboard/key_down_done.png
330
%%DATADIR%%/themes/default/keyboard/key_focused_move.png
331
%%DATADIR%%/themes/default/keyboard/key_downfocused.png
332
%%DATADIR%%/themes/default/dummy1280x720p29.97.ts
333
%%DATADIR%%/themes/default/gg-rs-findone.png
334
%%DATADIR%%/themes/default/trans-background.png
335
%%DATADIR%%/themes/default/pf-top.png
336
%%DATADIR%%/themes/default/bookmark.png
337
%%DATADIR%%/themes/default/cr-selectbar.png
338
%%DATADIR%%/themes/default/pf-sel1.png
339
%%DATADIR%%/themes/default/trans-container.png
340
%%DATADIR%%/themes/default/scrollarrow-dn.png
341
%%DATADIR%%/themes/default/pf-sel2.png
342
%%DATADIR%%/themes/default/pf-sel3.png
343
%%DATADIR%%/themes/default/solid-showings.png
344
%%DATADIR%%/themes/default/gg-background.png
345
%%DATADIR%%/themes/default/gg-rs-weekslot.png
346
%%DATADIR%%/themes/default/solid-titles.png
347
%%DATADIR%%/themes/default/lb-dnarrow-reg.png
978
%%DATADIR%%/themes/default/lb-dnarrow-reg.png
348
%%DATADIR%%/themes/default/solid-background.png
979
%%DATADIR%%/themes/default/lb-dnarrow-sel.png
349
%%DATADIR%%/themes/default/downarrow.png
980
%%DATADIR%%/themes/default/lb-ltarrow-reg.png
350
%%DATADIR%%/themes/default/def-ro-lines.png
351
%%DATADIR%%/themes/default/scrollarrow-right.png
352
%%DATADIR%%/themes/default/cc.png
353
%%DATADIR%%/themes/default/gg-times.png
354
%%DATADIR%%/themes/default/hd.png
355
%%DATADIR%%/themes/default/solid-cr-background.png
356
%%DATADIR%%/themes/default/galleryfolder.png
357
%%DATADIR%%/themes/default/scrollarrow-left.png
358
%%DATADIR%%/themes/default/lb-uparrow-reg.png
359
%%DATADIR%%/themes/default/categories.xml
360
%%DATADIR%%/themes/default/dummy720x480p29.97.ts
361
%%DATADIR%%/themes/default/lb-ltarrow-sel.png
981
%%DATADIR%%/themes/default/lb-ltarrow-sel.png
362
%%DATADIR%%/themes/default/lb-check.png
982
%%DATADIR%%/themes/default/lb-rtarrow-reg.png
363
%%DATADIR%%/themes/default/lb-check-full.png
364
%%DATADIR%%/themes/default/lb-rtarrow-sel.png
983
%%DATADIR%%/themes/default/lb-rtarrow-sel.png
365
%%DATADIR%%/themes/default/pf-lines.png
984
%%DATADIR%%/themes/default/lb-uparrow-reg.png
985
%%DATADIR%%/themes/default/lb-uparrow-sel.png
986
%%DATADIR%%/themes/default/left_arrow.png
987
%%DATADIR%%/themes/default/leftarrow.png
988
%%DATADIR%%/themes/default/leftright_off.png
989
%%DATADIR%%/themes/default/leftright_on.png
990
%%DATADIR%%/themes/default/leftright_pushed.png
991
%%DATADIR%%/themes/default/mono.png
992
%%DATADIR%%/themes/default/mythdialogbox-background.png
993
%%DATADIR%%/themes/default/mythfilebrowser-background.png
994
%%DATADIR%%/themes/default/mythprogressdialog-background.png
995
%%DATADIR%%/themes/default/pd-background.png
366
%%DATADIR%%/themes/default/pf-background.png
996
%%DATADIR%%/themes/default/pf-background.png
367
%%DATADIR%%/themes/default/rk-lines.png
997
%%DATADIR%%/themes/default/pf-lines.png
368
%%DATADIR%%/themes/default/autoexpire.png
998
%%DATADIR%%/themes/default/pf-sel1.png
369
%%DATADIR%%/themes/default/trans-showings.png
999
%%DATADIR%%/themes/default/pf-sel2.png
1000
%%DATADIR%%/themes/default/pf-sel3.png
1001
%%DATADIR%%/themes/default/pf-top.png
1002
%%DATADIR%%/themes/default/pf-topbackground.png
1003
%%DATADIR%%/themes/default/playlist_yes.png
1004
%%DATADIR%%/themes/default/preview.png
1005
%%DATADIR%%/themes/default/processing.png
1006
%%DATADIR%%/themes/default/progressbar_background.png
1007
%%DATADIR%%/themes/default/progressbar_fill.png
1008
%%DATADIR%%/themes/default/reclist_background.png
1009
%%DATADIR%%/themes/default/recordings-ui.xml
1010
%%DATADIR%%/themes/default/right_arrow.png
370
%%DATADIR%%/themes/default/rightarrow.png
1011
%%DATADIR%%/themes/default/rightarrow.png
1012
%%DATADIR%%/themes/default/rk-background.png
1013
%%DATADIR%%/themes/default/rk-lines.png
1014
%%DATADIR%%/themes/default/rk-selectbar.png
1015
%%DATADIR%%/themes/default/schedule-ui.xml
1016
%%DATADIR%%/themes/default/schedule_conflict.png
1017
%%DATADIR%%/themes/default/schedule_disabled.png
1018
%%DATADIR%%/themes/default/schedule_other.png
1019
%%DATADIR%%/themes/default/schedule_record.png
1020
%%DATADIR%%/themes/default/schedule_recording.png
1021
%%DATADIR%%/themes/default/selectbar.png
1022
%%DATADIR%%/themes/default/shared/directory.png
1023
%%DATADIR%%/themes/default/shared/executable.png
1024
%%DATADIR%%/themes/default/shared/file.png
1025
%%DATADIR%%/themes/default/shared/grid_back_reg.png
1026
%%DATADIR%%/themes/default/shared/grid_back_sel.png
1027
%%DATADIR%%/themes/default/shared/grid_noimage.png
1028
%%DATADIR%%/themes/default/shared/updirectory.png
1029
%%DATADIR%%/themes/default/small_watched.png
371
%%DATADIR%%/themes/default/solid-container.png
1030
%%DATADIR%%/themes/default/solid-container.png
372
%%DATADIR%%/themes/default/dummy768x576p50.00.ts
1031
%%DATADIR%%/themes/default/solid-cr-background.png
373
%%DATADIR%%/themes/default/scrollarrow-up.png
1032
%%DATADIR%%/themes/default/sr-background.png
374
%%DATADIR%%/themes/default/gg-rs-override.png
375
%%DATADIR%%/themes/default/gg-rs-single.png
376
%%DATADIR%%/themes/default/dummy640x480p29.97.ts
377
%%DATADIR%%/themes/default/gg-arrow-right.png
378
%%DATADIR%%/themes/default/lb-check-empty.png
379
%%DATADIR%%/themes/default/bar.png
380
%%DATADIR%%/themes/default/gg-arrow-left.png
381
%%DATADIR%%/themes/default/leftarrow.png
382
%%DATADIR%%/themes/default/processing.png
383
%%DATADIR%%/themes/default/status-ui.xml
384
%%DATADIR%%/themes/default/cr-lines.png
385
%%DATADIR%%/themes/default/base.xml
386
%%DATADIR%%/themes/default/dummy1920x1088p29.97.ts
387
%%DATADIR%%/themes/default/filler.png
388
%%DATADIR%%/themes/default/cutlist.png
389
%%DATADIR%%/themes/default/trans-rk-background.png
390
%%DATADIR%%/themes/default/lb-check-half.png
391
%%DATADIR%%/themes/default/lb-arrow.png
392
%%DATADIR%%/themes/default/dummy720x576p25.00.ts
393
%%DATADIR%%/themes/default/status-bar.png
1033
%%DATADIR%%/themes/default/status-bar.png
394
%%DATADIR%%/themes/default/lb-dnarrow-sel.png
1034
%%DATADIR%%/themes/default/status-ui.xml
395
%%DATADIR%%/themes/default/uparrow.png
396
%%DATADIR%%/themes/default/lb-ltarrow-reg.png
397
%%DATADIR%%/themes/default/stereo.png
1035
%%DATADIR%%/themes/default/stereo.png
398
%%DATADIR%%/themes/default/commflagged.png
1036
%%DATADIR%%/themes/default/subs.png
399
%%DATADIR%%/themes/default/lb-rtarrow-reg.png
1037
%%DATADIR%%/themes/default/subs_onscreen.png
1038
%%DATADIR%%/themes/default/surround.png
1039
%%DATADIR%%/themes/default/text_button_off.png
1040
%%DATADIR%%/themes/default/text_button_on.png
1041
%%DATADIR%%/themes/default/text_button_pushed.png
1042
%%DATADIR%%/themes/default/topleft.png
1043
%%DATADIR%%/themes/default/trans-backup.png
1044
%%DATADIR%%/themes/default/trans-container.png
400
%%DATADIR%%/themes/default/trans-cr-background.png
1045
%%DATADIR%%/themes/default/trans-cr-background.png
401
%%DATADIR%%/themes/default/lb-uparrow-sel.png
1046
%%DATADIR%%/themes/default/trans-rk-background.png
402
%%DATADIR%%/themes/default/gg-rs-all.png
403
%%DATADIR%%/themes/default/trans-sr-background.png
1047
%%DATADIR%%/themes/default/trans-sr-background.png
404
%%DATADIR%%/themes/default/gg-rs-timeslot.png
1048
%%DATADIR%%/themes/default/unchecked.png
405
%%DATADIR%%/themes/default/rk-selectbar.png
1049
%%DATADIR%%/themes/default/unchecked_high.png
406
%%DATADIR%%/themes/default/pd-background.png
1050
%%DATADIR%%/themes/default/up_arrow.png
407
%%DATADIR%%/themes/default/gg-rs-channel.png
1051
%%DATADIR%%/themes/default/uparrow.png
408
%%DATADIR%%/themes/default/trans-titles.png
1052
%%DATADIR%%/themes/default/watched.png
409
%%DATADIR%%/themes/default/blank.png
1053
%%DATADIR%%/themes/default/wide.png
410
%%DATADIR%%/themes/default/gg-chans.png
1054
%%DATADIR%%/themes/default/wide_button_background.png
411
%%DATADIR%%/themes/default/gg-vid-background.png
1055
%%DATADIR%%/themes/default/wide_button_pushed_background.png
412
%%DATADIR%%/themes/default/trans-backup.png
1056
%%DATADIR%%/themes/default/wide_button_selected_background.png
413
%%DATADIR%%/themes/blue/unchecked_high.png
1057
%%DATADIR%%/themes/defaultmenu/info_menu.xml
414
%%DATADIR%%/themes/blue/blankbutton_off.png
1058
%%DATADIR%%/themes/defaultmenu/info_settings.xml
415
%%DATADIR%%/themes/blue/themeinfo.xml
1059
%%DATADIR%%/themes/defaultmenu/library.xml
416
%%DATADIR%%/themes/blue/unchecked.png
1060
%%DATADIR%%/themes/defaultmenu/main_settings.xml
417
%%DATADIR%%/themes/blue/blankbutton_pushed.png
1061
%%DATADIR%%/themes/defaultmenu/mainmenu.xml
418
%%DATADIR%%/themes/blue/blankbutton_on.png
1062
%%DATADIR%%/themes/defaultmenu/manage_recordings.xml
419
%%DATADIR%%/themes/blue/leftright_pushed.png
1063
%%DATADIR%%/themes/defaultmenu/media_settings.xml
420
%%DATADIR%%/themes/blue/leftright_off.png
1064
%%DATADIR%%/themes/defaultmenu/optical_menu.xml
421
%%DATADIR%%/themes/blue/checked_high.png
1065
%%DATADIR%%/themes/defaultmenu/recpriorities_settings.xml
422
%%DATADIR%%/themes/blue/leftright_on.png
1066
%%DATADIR%%/themes/defaultmenu/themeinfo.xml
423
%%DATADIR%%/themes/blue/base.xml
1067
%%DATADIR%%/themes/defaultmenu/tv_lists.xml
424
%%DATADIR%%/themes/blue/checked.png
1068
%%DATADIR%%/themes/defaultmenu/tv_schedule.xml
425
%%DATADIR%%/themes/blue/trans-vm-background.png
1069
%%DATADIR%%/themes/defaultmenu/tv_search.xml
426
%%DATADIR%%/themes/blue/SEARCH_KEYWORDS.png
1070
%%DATADIR%%/themes/defaultmenu/tv_settings.xml
427
%%DATADIR%%/themes/blue/SEARCH_CAT.png
1071
%%DATADIR%%/themes/defaultmenu/tvmenu.xml
428
%%DATADIR%%/themes/blue/APPEARANCE.png
1072
%%DATADIR%%/themes/defaultmenu/util_menu.xml
429
%%DATADIR%%/themes/blue/video-ui.xml
1073
%%DATADIR%%/themes/isthmus/cut_end.png
430
%%DATADIR%%/themes/blue/SETTINGS.png
1074
%%DATADIR%%/themes/isthmus/cut_start.png
431
%%DATADIR%%/themes/blue/conflict.png
1075
%%DATADIR%%/themes/isthmus/fill_green.png
432
%%DATADIR%%/themes/blue/progfind_lines.png
1076
%%DATADIR%%/themes/isthmus/fill_red.png
433
%%DATADIR%%/themes/blue/videobutton.png
1077
%%DATADIR%%/themes/isthmus/isthmus-preview.png
434
%%DATADIR%%/themes/blue/trans-background.png
1078
%%DATADIR%%/themes/isthmus/news_scroller.png
435
%%DATADIR%%/themes/blue/MUSIC_PLAY.png
1079
%%DATADIR%%/themes/isthmus/osd-alert.png
436
%%DATADIR%%/themes/blue/bookmark.png
1080
%%DATADIR%%/themes/isthmus/osd-channel-edit.png
437
%%DATADIR%%/themes/blue/cr-selectbar.png
1081
%%DATADIR%%/themes/isthmus/osd-mid.png
438
%%DATADIR%%/themes/blue/button_on.png
1082
%%DATADIR%%/themes/isthmus/osd.xml
439
%%DATADIR%%/themes/blue/music-ui.xml
1083
%%DATADIR%%/themes/isthmus/phone.png
440
%%DATADIR%%/themes/blue/game.png
1084
%%DATADIR%%/themes/isthmus/popup.png
441
%%DATADIR%%/themes/blue/SEARCH_PEOPLE.png
1085
%%DATADIR%%/themes/isthmus/position_marker.png
442
%%DATADIR%%/themes/blue/gg-background.png
1086
%%DATADIR%%/themes/isthmus/red.png
443
%%DATADIR%%/themes/blue/news.png
1087
%%DATADIR%%/themes/isthmus/selector.png
444
%%DATADIR%%/themes/blue/stop_button_off.png
1088
%%DATADIR%%/themes/isthmus/slider_frame.png
445
%%DATADIR%%/themes/blue/text_button_on.png
1089
%%DATADIR%%/themes/isthmus/themeinfo.xml
446
%%DATADIR%%/themes/blue/stop_button_on.png
1090
%%DATADIR%%/themes/mediacentermenu/advanced.xml
447
%%DATADIR%%/themes/blue/preview.jpg
1091
%%DATADIR%%/themes/mediacentermenu/info_settings.xml
448
%%DATADIR%%/themes/blue/ff_button_off.png
1092
%%DATADIR%%/themes/mediacentermenu/main_settings.xml
449
%%DATADIR%%/themes/blue/track_info_background.png
1093
%%DATADIR%%/themes/mediacentermenu/mainmenu.xml
450
%%DATADIR%%/themes/blue/downarrow.png
1094
%%DATADIR%%/themes/mediacentermenu/manage_recordings.xml
451
%%DATADIR%%/themes/blue/game-ui.xml
1095
%%DATADIR%%/themes/mediacentermenu/media_settings.xml
452
%%DATADIR%%/themes/blue/cd.png
1096
%%DATADIR%%/themes/mediacentermenu/optical_menu.xml
453
%%DATADIR%%/themes/blue/setup.png
1097
%%DATADIR%%/themes/mediacentermenu/plugin_menu.xml
454
%%DATADIR%%/themes/blue/gallery-ui.xml
1098
%%DATADIR%%/themes/mediacentermenu/recpriorities_settings.xml
455
%%DATADIR%%/themes/blue/images.png
1099
%%DATADIR%%/themes/mediacentermenu/themeinfo.xml
456
%%DATADIR%%/themes/blue/bar.png
1100
%%DATADIR%%/themes/mediacentermenu/tv_lists.xml
457
%%DATADIR%%/themes/blue/text_button_pushed.png
1101
%%DATADIR%%/themes/mediacentermenu/tv_schedule.xml
458
%%DATADIR%%/themes/blue/stop_button_pushed.png
1102
%%DATADIR%%/themes/mediacentermenu/tv_search.xml
459
%%DATADIR%%/themes/blue/SEARCH_TITLES.png
1103
%%DATADIR%%/themes/mediacentermenu/tv_settings.xml
460
%%DATADIR%%/themes/blue/play_button_off.png
1104
%%DATADIR%%/themes/default/mw_text_button_off.png
461
%%DATADIR%%/themes/blue/progfind_top.png
1105
%%DATADIR%%/themes/default/mw_text_button_on.png
462
%%DATADIR%%/themes/blue/play_button_on.png
1106
%%DATADIR%%/themes/default/mw_text_button_pushed.png
463
%%DATADIR%%/themes/blue/playlist.png
1107
%%DATADIR%%/themes/default/welcome-ui.xml
464
%%DATADIR%%/themes/blue/delete.png
1108
%%PYTHON_SITELIBDIR%%/MythTV/MythLog.py
465
%%DATADIR%%/themes/blue/myth_tv_logo.png
1109
%%PYTHON_SITELIBDIR%%/MythTV/MythLog.pyc
466
%%DATADIR%%/themes/blue/qtlook.txt
1110
%%PYTHON_SITELIBDIR%%/MythTV/MythDB.py
467
%%DATADIR%%/themes/blue/progfind_background.png
1111
%%PYTHON_SITELIBDIR%%/MythTV/MythDB.pyc
468
%%DATADIR%%/themes/blue/button_template.psd
1112
%%PYTHON_SITELIBDIR%%/MythTV/MythVideo.py
469
%%DATADIR%%/themes/blue/play_button_pushed.png
1113
%%PYTHON_SITELIBDIR%%/MythTV/MythVideo.pyc
470
%%DATADIR%%/themes/blue/background.png
1114
%%PYTHON_SITELIBDIR%%/MythTV/MythTV.py
471
%%DATADIR%%/themes/blue/mv-vmanager.png
1115
%%PYTHON_SITELIBDIR%%/MythTV/MythTV.pyc
472
%%DATADIR%%/themes/blue/cr-background.png
1116
%%PYTHON_SITELIBDIR%%/MythTV/__init__.py
473
%%DATADIR%%/themes/blue/rew_button_off.png
1117
%%PYTHON_SITELIBDIR%%/MythTV/__init__.pyc
474
%%DATADIR%%/themes/blue/SEARCH_LISTS.png
475
%%DATADIR%%/themes/blue/SEARCH_WORDS.png
476
%%DATADIR%%/themes/blue/rew_button_on.png
477
%%DATADIR%%/themes/blue/rk-lines.png
478
%%DATADIR%%/themes/blue/autoexpire.png
479
%%DATADIR%%/themes/blue/trans-showings.png
480
%%DATADIR%%/themes/blue/SEARCH_MOVIES.png
481
%%DATADIR%%/themes/blue/rightarrow.png
482
%%DATADIR%%/themes/blue/mv_filerequest.png
483
%%DATADIR%%/themes/blue/mm_waiting.png
484
%%DATADIR%%/themes/blue/progfind_sel1.png
485
%%DATADIR%%/themes/blue/progfind_sel2.png
486
%%DATADIR%%/themes/blue/SEARCH_CHAN.png
487
%%DATADIR%%/themes/blue/progfind_sel3.png
488
%%DATADIR%%/themes/blue/trans-mmbackground.png
489
%%DATADIR%%/themes/blue/rew_button_pushed.png
490
%%DATADIR%%/themes/blue/rip_cd.png
491
%%DATADIR%%/themes/blue/prev_button_off.png
492
%%DATADIR%%/themes/blue/search_template.psd
493
%%DATADIR%%/themes/blue/MEDIA_LIBRARY.png
494
%%DATADIR%%/themes/blue/watch_dvd.png
495
%%DATADIR%%/themes/blue/trans-rk-background.png
496
%%DATADIR%%/themes/blue/next_button_on.png
497
%%DATADIR%%/themes/blue/leftarrow.png
498
%%DATADIR%%/themes/blue/play.png
499
%%DATADIR%%/themes/blue/FINDER.png
500
%%DATADIR%%/themes/blue/webpage.png
501
%%DATADIR%%/themes/blue/play_cd.png
502
%%DATADIR%%/themes/blue/rolines.png
503
%%DATADIR%%/themes/blue/cr-lines.png
504
%%DATADIR%%/themes/blue/previous.png
505
%%DATADIR%%/themes/blue/processing.png
506
%%DATADIR%%/themes/blue/GAME_SCAN.png
507
%%DATADIR%%/themes/blue/SEARCH_NEW.png
508
%%DATADIR%%/themes/blue/record.png
509
%%DATADIR%%/themes/blue/POWER_SEARCH.png
510
%%DATADIR%%/themes/blue/theme.xml
511
%%DATADIR%%/themes/blue/mv-vlist.png
512
%%DATADIR%%/themes/blue/ui.xml
513
%%DATADIR%%/themes/blue/trans-gameshowings.png
514
%%DATADIR%%/themes/blue/next_button_pushed.png
515
%%DATADIR%%/themes/blue/recpriorities.png
516
%%DATADIR%%/themes/blue/ff_button_on.png
517
%%DATADIR%%/themes/blue/logo_template.psd
518
%%DATADIR%%/themes/blue/MUSIC_SCAN.png
519
%%DATADIR%%/themes/blue/rip_dvd.png
520
%%DATADIR%%/themes/blue/eject.png
521
%%DATADIR%%/themes/blue/blankicon.jpg
522
%%DATADIR%%/themes/blue/prev_button_pushed.png
523
%%DATADIR%%/themes/blue/dvd.png
524
%%DATADIR%%/themes/blue/ff_button_pushed.png
525
%%DATADIR%%/themes/blue/uparrow.png
526
%%DATADIR%%/themes/blue/weather.png
527
%%DATADIR%%/themes/blue/pause_button_off.png
528
%%DATADIR%%/themes/blue/watch_vcd.png
529
%%DATADIR%%/themes/blue/next_button_off.png
530
%%DATADIR%%/themes/blue/FILE_TYPES.png
531
%%DATADIR%%/themes/blue/prev_button_on.png
532
%%DATADIR%%/themes/blue/pause_button_on.png
533
%%DATADIR%%/themes/blue/button_off.png
534
%%DATADIR%%/themes/blue/text_button_off.png
535
%%DATADIR%%/themes/blue/selectionbar.png
536
%%DATADIR%%/themes/blue/MANUAL.png
537
%%DATADIR%%/themes/blue/trans-game-background.png
538
%%DATADIR%%/themes/blue/SEARCH_TIME.png
539
%%DATADIR%%/themes/blue/watch_tv.png
540
%%DATADIR%%/themes/blue/UPCOMING.png
541
%%DATADIR%%/themes/blue/home.png
542
%%DATADIR%%/themes/blue/pause_button_pushed.png
543
%%DATADIR%%/themes/blue/showstatus.png
544
%%DATADIR%%/themes/blue/cutlist.png
545
%%DATADIR%%/themes/blue/trans-sr-background.png
546
%%DATADIR%%/themes/blue/mv-vbrowser.png
547
%%DATADIR%%/themes/blue/trans-titles.png
548
%%DATADIR%%/themes/blue/gg-vid-background.png
549
%%DATADIR%%/themes/defaultosd/themeinfo.xml
550
%%DATADIR%%/themes/defaultosd/defaultosd-preview.png
551
%%DATADIR%%/themes/defaultosd/position-indicator.png
552
%%DATADIR%%/themes/defaultosd/osd-channel-edit.png
553
%%DATADIR%%/themes/defaultosd/osd-callerid.png
554
%%DATADIR%%/themes/defaultosd/cut-end.png
555
%%DATADIR%%/themes/defaultosd/osd-browse.png
556
%%DATADIR%%/themes/defaultosd/osd.xml
557
%%DATADIR%%/themes/defaultosd/osd-big.png
558
%%DATADIR%%/themes/defaultosd/cut-start.png
559
%%DATADIR%%/themes/defaultosd/grey.png
560
%%DATADIR%%/themes/defaultosd/osd-alert.png
561
%%DATADIR%%/themes/defaultosd/red.png
562
%%DATADIR%%/themes/defaultosd/fill-blue.png
563
%%DATADIR%%/themes/defaultosd/osd-small.png
564
%%DATADIR%%/themes/blueosd/themeinfo.xml
565
%%DATADIR%%/themes/blueosd/blueosd-preview.png
566
%%DATADIR%%/themes/blueosd/osd-callerid.png
567
%%DATADIR%%/themes/blueosd/osd-mid.png
568
%%DATADIR%%/themes/blueosd/position-indicator.png
569
%%DATADIR%%/themes/blueosd/osd-channel-edit.png
570
%%DATADIR%%/themes/blueosd/cut-end.png
571
%%DATADIR%%/themes/blueosd/cut-start.png
572
%%DATADIR%%/themes/blueosd/osd.xml
573
%%DATADIR%%/themes/blueosd/osd-big.png
574
%%DATADIR%%/themes/blueosd/grey.png
575
%%DATADIR%%/themes/blueosd/red.png
576
%%DATADIR%%/themes/blueosd/osd-alert.png
577
%%DATADIR%%/themes/blueosd/fill-blue.png
578
%%DATADIR%%/themes/blueosd/osd-small.png
579
%%DATADIR%%/themes/default-wide/netflix-ui.xml
580
%%DATADIR%%/themes/default-wide/appear-ui.xml
581
%%DATADIR%%/themes/default-wide/selectbar.png
582
%%DATADIR%%/themes/default-wide/preview.png
583
%%DATADIR%%/themes/default-wide/netflix-bg.png
584
%%DATADIR%%/themes/default-wide/trans-background.png
585
%%DATADIR%%/themes/default-wide/mythburn-ui.xml
586
%%DATADIR%%/themes/default-wide/cr-selectbar.png
587
%%DATADIR%%/themes/default-wide/pf-top.png
588
%%DATADIR%%/themes/default-wide/mv_pushbutton_off.png
589
%%DATADIR%%/themes/default-wide/trans-container.png
590
%%DATADIR%%/themes/default-wide/pf-sel1.png
591
%%DATADIR%%/themes/default-wide/solid-showings.png
592
%%DATADIR%%/themes/default-wide/music-ui.xml
593
%%DATADIR%%/themes/default-wide/pf-sel2.png
594
%%DATADIR%%/themes/default-wide/welcome-ui.xml
595
%%DATADIR%%/themes/default-wide/pf-sel3.png
596
%%DATADIR%%/themes/default-wide/gg-background.png
597
%%DATADIR%%/themes/default-wide/text_button_on.png
598
%%DATADIR%%/themes/default-wide/cr-lines.png
599
%%DATADIR%%/themes/default-wide/bar.png
600
%%DATADIR%%/themes/default-wide/track_info_background.png
601
%%DATADIR%%/themes/default-wide/def-ro-lines.png
602
%%DATADIR%%/themes/default-wide/solid-background.png
603
%%DATADIR%%/themes/default-wide/gallery-ui.xml
604
%%DATADIR%%/themes/default-wide/text_button_pushed.png
605
%%DATADIR%%/themes/default-wide/solid-cr-background.png
606
%%DATADIR%%/themes/default-wide/game-ui.xml
607
%%DATADIR%%/themes/default-wide/mm_blackhole_border.png
608
%%DATADIR%%/themes/default-wide/pf-lines.png
609
%%DATADIR%%/themes/default-wide/pf-background.png
610
%%DATADIR%%/themes/default-wide/rk-lines.png
611
%%DATADIR%%/themes/default-wide/trans-showings.png
612
%%DATADIR%%/themes/default-wide/music-sel-bg.png
613
%%DATADIR%%/themes/default-wide/solid-container.png
614
%%DATADIR%%/themes/default-wide/mm_waiting.png
615
%%DATADIR%%/themes/default-wide/mm_volume_background.png
616
%%DATADIR%%/themes/default-wide/news-ui.xml
617
%%DATADIR%%/themes/default-wide/filler.png
618
%%DATADIR%%/themes/default-wide/status-ui.xml
619
%%DATADIR%%/themes/default-wide/mytharchive-ui.xml
620
%%DATADIR%%/themes/default-wide/md_progress_background.png
621
%%DATADIR%%/themes/default-wide/trans-rk-background.png
622
%%DATADIR%%/themes/default-wide/mythnative-ui.xml
623
%%DATADIR%%/themes/default-wide/text_button_off.png
624
%%DATADIR%%/themes/default-wide/status-bar.png
625
%%DATADIR%%/themes/default-wide/controls-ui.xml
626
%%DATADIR%%/themes/default-wide/rk-selectbar.png
627
%%DATADIR%%/themes/default-wide/trans-cr-background.png
628
%%DATADIR%%/themes/default-wide/mv_pushbutton_on.png
629
%%DATADIR%%/themes/default-wide/pd-background.png
630
%%DATADIR%%/themes/default-wide/mv_pushbutton_pushed.png
631
%%DATADIR%%/themes/default-wide/trans-sr-background.png
632
%%DATADIR%%/themes/default-wide/trans-titles.png
633
%%DATADIR%%/themes/default-wide/trans-backup.png
634
%%DATADIR%%/themes/default-wide/gg-vid-background.png
635
%%DATADIR%%/themes/G.A.N.T/title/title_info_center.png
636
%%DATADIR%%/themes/G.A.N.T/title/title_schedule.png
637
%%DATADIR%%/themes/G.A.N.T/title/title_dvd_setup.png
638
%%DATADIR%%/themes/G.A.N.T/title/title_media_settings.png
639
%%DATADIR%%/themes/G.A.N.T/title/title_gallery.png
640
%%DATADIR%%/themes/G.A.N.T/title/title_music_setup.png
641
%%DATADIR%%/themes/G.A.N.T/title/title_setup.png
642
%%DATADIR%%/themes/G.A.N.T/title/title_media_library.png
643
%%DATADIR%%/themes/G.A.N.T/title/title_search.png
644
%%DATADIR%%/themes/G.A.N.T/title/title_video.png
645
%%DATADIR%%/themes/G.A.N.T/title/title_netflix.png
646
%%DATADIR%%/themes/G.A.N.T/title/title_tv_settings.png
647
%%DATADIR%%/themes/G.A.N.T/title/title_info_settings.png
648
%%DATADIR%%/themes/G.A.N.T/title/title_utilities.png
649
%%DATADIR%%/themes/G.A.N.T/title/title_dvd.png
650
%%DATADIR%%/themes/G.A.N.T/title/title_optical_discs.png
651
%%DATADIR%%/themes/G.A.N.T/title/title_music.png
652
%%DATADIR%%/themes/G.A.N.T/title/title_search_lists.png
653
%%DATADIR%%/themes/G.A.N.T/title/title_search_words.png
654
%%DATADIR%%/themes/G.A.N.T/title/title_main.png
655
%%DATADIR%%/themes/G.A.N.T/title/title_video_setup.png
656
%%DATADIR%%/themes/G.A.N.T/title/title_manage.png
657
%%DATADIR%%/themes/G.A.N.T/title/title_priorities.png
658
%%DATADIR%%/themes/G.A.N.T/title/title_game_setup.png
659
%%DATADIR%%/themes/G.A.N.T/title/title_tv.png
660
%%DATADIR%%/themes/G.A.N.T/type/processing.png
661
%%DATADIR%%/themes/G.A.N.T/type/autoexpire.png
662
%%DATADIR%%/themes/G.A.N.T/type/bookmark.png
663
%%DATADIR%%/themes/G.A.N.T/type/commflagged.png
664
%%DATADIR%%/themes/G.A.N.T/type/cutlist.png
665
%%DATADIR%%/themes/G.A.N.T/watermark/tv_recorded.png
666
%%DATADIR%%/themes/G.A.N.T/watermark/pizza.png
667
%%DATADIR%%/themes/G.A.N.T/watermark/refresh.png
668
%%DATADIR%%/themes/G.A.N.T/watermark/weather.png
669
%%DATADIR%%/themes/G.A.N.T/watermark/rip_cd.png
670
%%DATADIR%%/themes/G.A.N.T/watermark/music_playlist.png
671
%%DATADIR%%/themes/G.A.N.T/watermark/conflict.png
672
%%DATADIR%%/themes/G.A.N.T/watermark/video_folder.png
673
%%DATADIR%%/themes/G.A.N.T/watermark/delete.png
674
%%DATADIR%%/themes/G.A.N.T/watermark/newspaper.png
675
%%DATADIR%%/themes/G.A.N.T/watermark/search.png
676
%%DATADIR%%/themes/G.A.N.T/watermark/video.png
677
%%DATADIR%%/themes/G.A.N.T/watermark/game.png
678
%%DATADIR%%/themes/G.A.N.T/watermark/cd_play.png
679
%%DATADIR%%/themes/G.A.N.T/watermark/paint.png
680
%%DATADIR%%/themes/G.A.N.T/watermark/tv2.png
681
%%DATADIR%%/themes/G.A.N.T/watermark/previous.png
682
%%DATADIR%%/themes/G.A.N.T/watermark/padlock.png
683
%%DATADIR%%/themes/G.A.N.T/watermark/dvd.png
684
%%DATADIR%%/themes/G.A.N.T/watermark/check.png
685
%%DATADIR%%/themes/G.A.N.T/watermark/music.png
686
%%DATADIR%%/themes/G.A.N.T/watermark/log.png
687
%%DATADIR%%/themes/G.A.N.T/watermark/telephone.png
688
%%DATADIR%%/themes/G.A.N.T/watermark/stop.png
689
%%DATADIR%%/themes/G.A.N.T/watermark/cd_music.png
690
%%DATADIR%%/themes/G.A.N.T/watermark/cd.png
691
%%DATADIR%%/themes/G.A.N.T/watermark/wrench.png
692
%%DATADIR%%/themes/G.A.N.T/watermark/globe.png
693
%%DATADIR%%/themes/G.A.N.T/watermark/camera.png
694
%%DATADIR%%/themes/G.A.N.T/watermark/tv.png
695
%%DATADIR%%/themes/G.A.N.T/watermark/clock.png
696
%%DATADIR%%/themes/G.A.N.T/watermark/webcam.png
697
%%DATADIR%%/themes/G.A.N.T/watermark/archive.png
698
%%DATADIR%%/themes/G.A.N.T/watermark/eject.png
699
%%DATADIR%%/themes/G.A.N.T/bkg/grey.png
700
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_off.png
701
%%DATADIR%%/themes/G.A.N.T/rk-selectbar.png
702
%%DATADIR%%/themes/G.A.N.T/themeinfo.xml
703
%%DATADIR%%/themes/G.A.N.T/gantleft.png
704
%%DATADIR%%/themes/G.A.N.T/mm_leftright_on.png
705
%%DATADIR%%/themes/G.A.N.T/mm_leftright_pushed.png
706
%%DATADIR%%/themes/G.A.N.T/mm_ffw.png
707
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_on.png
708
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_pushed.png
709
%%DATADIR%%/themes/G.A.N.T/bar.png
710
%%DATADIR%%/themes/G.A.N.T/mm_unchecked.png
711
%%DATADIR%%/themes/G.A.N.T/gantup.png
712
%%DATADIR%%/themes/G.A.N.T/gantdown.png
713
%%DATADIR%%/themes/G.A.N.T/mm_unchecked_high.png
714
%%DATADIR%%/themes/G.A.N.T/mm_checked.png
715
%%DATADIR%%/themes/G.A.N.T/mm_blankbutton_pushed.png
716
%%DATADIR%%/themes/G.A.N.T/mm_leftright_off.png
717
%%DATADIR%%/themes/G.A.N.T/mm_checked_high.png
718
%%DATADIR%%/themes/G.A.N.T/gantright.png
719
%%DATADIR%%/themes/G.A.N.T/mm_rew.png
720
%%DATADIR%%/themes/G.A.N.T/arrow_up.png
721
%%DATADIR%%/themes/G.A.N.T/myth_logo.png
722
%%DATADIR%%/themes/G.A.N.T/cloudy.png
723
%%DATADIR%%/themes/G.A.N.T/rainsnow.png
724
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_off.png
725
%%DATADIR%%/themes/G.A.N.T/mm_selectionbar.png
726
%%DATADIR%%/themes/G.A.N.T/lshowers.png
727
%%DATADIR%%/themes/G.A.N.T/mm_pause.png
728
%%DATADIR%%/themes/G.A.N.T/base.xml
729
%%DATADIR%%/themes/G.A.N.T/music-ui.xml
730
%%DATADIR%%/themes/G.A.N.T/mm_next.png
731
%%DATADIR%%/themes/G.A.N.T/fog.png
732
%%DATADIR%%/themes/G.A.N.T/mm_track_info_background.png
733
%%DATADIR%%/themes/G.A.N.T/text-blank.png
734
%%DATADIR%%/themes/G.A.N.T/ui.xml
735
%%DATADIR%%/themes/G.A.N.T/sunny.png
736
%%DATADIR%%/themes/G.A.N.T/preview.jpg
737
%%DATADIR%%/themes/G.A.N.T/mm_rating.png
738
%%DATADIR%%/themes/G.A.N.T/mm_stop.png
739
%%DATADIR%%/themes/G.A.N.T/arrow_down.png
740
%%DATADIR%%/themes/G.A.N.T/theme.xml
741
%%DATADIR%%/themes/G.A.N.T/thunshowers.png
742
%%DATADIR%%/themes/G.A.N.T/showers.png
743
%%DATADIR%%/themes/G.A.N.T/flurries.png
744
%%DATADIR%%/themes/G.A.N.T/mm_play.png
745
%%DATADIR%%/themes/G.A.N.T/unknown.png
746
%%DATADIR%%/themes/G.A.N.T/mm_prev.png
747
%%DATADIR%%/themes/G.A.N.T/qtlook.txt
748
%%DATADIR%%/themes/G.A.N.T/mcloudy.png
749
%%DATADIR%%/themes/G.A.N.T/README
750
%%DATADIR%%/themes/G.A.N.T/mm_simple_button_on.png
751
%%DATADIR%%/themes/G.A.N.T/mm_waiting.png
752
%%DATADIR%%/themes/G.A.N.T/pcloudy.png
753
%%DATADIR%%/themes/G.A.N.T/fair.png
754
%%DATADIR%%/themes/G.A.N.T/snowshow.png
755
%%DATADIR%%/themes/classic/themeinfo.xml
756
%%DATADIR%%/themes/classic/classic-preview.png
757
%%DATADIR%%/themes/classic/tv_settings.xml
758
%%DATADIR%%/themes/classic/mainmenu.xml
759
%%DATADIR%%/themes/classic/recpriorities_settings.xml
760
%%DATADIR%%/themes/classic/main_settings.xml
761
%%DATADIR%%/themes/classic/tv_schedule.xml
762
%%DATADIR%%/themes/classic/tv_search.xml
763
%%DATADIR%%/themes/classic/tvmenu.xml
764
%%DATADIR%%/themes/DVR/tv_schedule.xml
765
%%DATADIR%%/themes/DVR/util_menu.xml
766
%%DATADIR%%/themes/DVR/recpriorities_settings.xml
767
%%DATADIR%%/themes/DVR/main_settings.xml
768
%%DATADIR%%/themes/DVR/tv_lists.xml
769
%%DATADIR%%/themes/DVR/mainmenu.xml
770
%%DATADIR%%/themes/DVR/tv_settings.xml
771
%%DATADIR%%/themes/DVR/tv_search.xml
772
%%DATADIR%%/themes/DVR/tvmenu.xml
773
%%DATADIR%%/themes/DVR/dvr-preview.png
774
%%DATADIR%%/themes/DVR/themeinfo.xml
775
%%DATADIR%%/setup.xml
776
%%DATADIR%%/FreeSans.ttf
777
%%DATADIR%%/FreeSansBold.ttf
778
%%DATADIR%%/FreeMono.ttf
779
%%DATADIR%%/i18n/mythfrontend_it.qm
780
%%DATADIR%%/i18n/mythfrontend_he.qm
781
%%DATADIR%%/i18n/mythfrontend_es.qm
782
%%DATADIR%%/i18n/mythfrontend_ca.qm
783
%%DATADIR%%/i18n/mythfrontend_nl.qm
784
%%DATADIR%%/i18n/mythfrontend_fr.qm
785
%%DATADIR%%/i18n/mythfrontend_de.qm
786
%%DATADIR%%/i18n/mythfrontend_dk.qm
787
%%DATADIR%%/i18n/mythfrontend_pt.qm
788
%%DATADIR%%/i18n/mythfrontend_sv.qm
789
%%DATADIR%%/i18n/mythfrontend_ja.qm
790
%%DATADIR%%/i18n/mythfrontend_si.qm
791
%%DATADIR%%/i18n/mythfrontend_fi.qm
792
%%DATADIR%%/i18n/mythfrontend_zh_tw.qm
793
%%DATADIR%%/i18n/mythfrontend_nb.qm
794
%%DATADIR%%/i18n/mythfrontend_is.qm
795
%%DATADIR%%/i18n/mythfrontend_pt_br.qm
796
%%DATADIR%%/i18n/mythfrontend_en_gb.qm
797
%%DATADIR%%/i18n/mythfrontend_cz.qm
798
%%DATADIR%%/i18n/mythfrontend_et.qm
799
%%DATADIR%%/i18n/mythfrontend_pl.qm
800
%%DATADIR%%/i18n/mythfrontend_tr.qm
801
%%DATADIR%%/i18n/mythfrontend_ru.qm
802
%%DATADIR%%/database/mc.sql
803
%%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV/.packlist
1118
%%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV/.packlist
804
%%SITE_PERL%%/IO/Socket/INET/MythTV.pm
1119
%%SITE_PERL%%/IO/Socket/INET/MythTV.pm
805
%%SITE_PERL%%/MythTV.pm
806
%%SITE_PERL%%/MythTV/Channel.pm
807
%%SITE_PERL%%/MythTV/Program.pm
808
%%SITE_PERL%%/MythTV/Recording.pm
1120
%%SITE_PERL%%/MythTV/Recording.pm
1121
%%SITE_PERL%%/MythTV/Channel.pm
809
%%SITE_PERL%%/MythTV/StorageGroup.pm
1122
%%SITE_PERL%%/MythTV/StorageGroup.pm
810
@dirrm include/mythtv/ffmpeg
1123
%%SITE_PERL%%/MythTV/Program.pm
1124
%%SITE_PERL%%/MythTV.pm
1125
@dirrm include/mythtv/upnp
811
@dirrm include/mythtv/mpeg2dec
1126
@dirrm include/mythtv/mpeg2dec
812
@dirrm include/mythtv/dvdnav
1127
@dirrm include/mythtv/libswscale
813
@dirrm include/mythtv/libmythtv
814
@dirrm include/mythtv/libmythui
1128
@dirrm include/mythtv/libmythui
1129
@dirrm include/mythtv/libmythdb
815
@dirrm include/mythtv/libmyth
1130
@dirrm include/mythtv/libmyth
816
@dirrm include/mythtv/upnp
1131
@dirrm include/mythtv/libavutil
1132
@dirrm include/mythtv/libavformat
1133
@dirrm include/mythtv/libavcodec
1134
@dirrm include/mythtv/dvdread
1135
@dirrm include/mythtv/dvdnav
817
@dirrm include/mythtv
1136
@dirrm include/mythtv
818
@dirrm lib/mythtv/filters
1137
@dirrm lib/mythtv/filters
819
@dirrm lib/mythtv
1138
@dirrm lib/mythtv
820
@dirrm %%DATADIR%%/database
821
@dirrm %%DATADIR%%/i18n
822
@dirrm %%DATADIR%%/themes/DVR
823
@dirrm %%DATADIR%%/themes/G.A.N.T/bkg
824
@dirrm %%DATADIR%%/themes/G.A.N.T/title
825
@dirrm %%DATADIR%%/themes/G.A.N.T/type
826
@dirrm %%DATADIR%%/themes/G.A.N.T/watermark
827
@dirrm %%DATADIR%%/themes/G.A.N.T
828
@dirrm %%DATADIR%%/themes/blue
829
@dirrm %%DATADIR%%/themes/blueosd
830
@dirrm %%DATADIR%%/themes/classic
831
@dirrm %%DATADIR%%/themes/default/keyboard
832
@dirrm %%DATADIR%%/themes/default
833
@dirrm %%DATADIR%%/themes/default-wide
834
@dirrm %%DATADIR%%/themes/defaultosd
835
@dirrm %%DATADIR%%/themes
836
@dirrm %%DATADIR%%
837
@dirrm %%SITE_PERL%%/MythTV
1139
@dirrm %%SITE_PERL%%/MythTV
838
@dirrmtry %%SITE_PERL%%/IO/Socket/INET
1140
@dirrmtry %%SITE_PERL%%/IO/Socket/INET
839
@dirrmtry %%SITE_PERL%%/IO/Socket
1141
@dirrmtry %%SITE_PERL%%/IO/Socket
840
@dirrmtry %%SITE_PERL%%/IO
1142
@dirrmtry %%SITE_PERL%%/IO
841
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV
1143
@dirrm %%SITE_PERL%%/%%PERL_ARCH%%/auto/MythTV
1144
@dirrm %%PYTHON_SITELIBDIR%%/MythTV
1145
@dirrm %%DATADIR%%/themes/mediacentermenu
1146
@dirrm %%DATADIR%%/themes/isthmus
1147
@dirrm %%DATADIR%%/themes/defaultmenu
1148
@dirrm %%DATADIR%%/themes/default/shared
1149
@dirrm %%DATADIR%%/themes/default/recording
1150
@dirrm %%DATADIR%%/themes/default/keyboard
1151
@dirrm %%DATADIR%%/themes/default/htmls
1152
@dirrm %%DATADIR%%/themes/default/busyimages
1153
@dirrm %%DATADIR%%/themes/default-wide/shared
1154
@dirrm %%DATADIR%%/themes/default-wide
1155
@dirrm %%DATADIR%%/themes/default
1156
@dirrm %%DATADIR%%/themes/classic
1157
@dirrm %%DATADIR%%/themes/Terra/watermarks
1158
@dirrm %%DATADIR%%/themes/Terra/video
1159
@dirrm %%DATADIR%%/themes/Terra/shared/icons
1160
@dirrm %%DATADIR%%/themes/Terra/shared
1161
@dirrm %%DATADIR%%/themes/Terra/schedule
1162
@dirrm %%DATADIR%%/themes/Terra/recordings
1163
@dirrm %%DATADIR%%/themes/Terra/popups/busy
1164
@dirrm %%DATADIR%%/themes/Terra/popups
1165
@dirrm %%DATADIR%%/themes/Terra/menu
1166
@dirrm %%DATADIR%%/themes/Terra/htmls
1167
@dirrm %%DATADIR%%/themes/Terra/guide
1168
@dirrm %%DATADIR%%/themes/Terra/controls
1169
@dirrm %%DATADIR%%/themes/Terra/config
1170
@dirrm %%DATADIR%%/themes/Terra/backgrounds
1171
@dirrm %%DATADIR%%/themes/Terra
1172
@dirrm %%DATADIR%%/themes/MythCenter/watermark
1173
@dirrm %%DATADIR%%/themes/MythCenter/ui
1174
@dirrm %%DATADIR%%/themes/MythCenter/title
1175
@dirrm %%DATADIR%%/themes/MythCenter/htmls
1176
@dirrm %%DATADIR%%/themes/MythCenter-wide/watermark
1177
@dirrm %%DATADIR%%/themes/MythCenter-wide/ui
1178
@dirrm %%DATADIR%%/themes/MythCenter-wide/title
1179
@dirrm %%DATADIR%%/themes/MythCenter-wide/htmls
1180
@dirrm %%DATADIR%%/themes/MythCenter-wide
1181
@dirrm %%DATADIR%%/themes/MythCenter
1182
@dirrm %%DATADIR%%/themes/Gray-OSD
1183
@dirrm %%DATADIR%%/themes/DVR
1184
@dirrm %%DATADIR%%/themes/BlackCurves-OSD
1185
@dirrmtry %%DATADIR%%/themes
1186
@dirrm %%DATADIR%%/i18n
1187
@dirrm %%DATADIR%%/database
1188
@dirrmtry %%DATADIR%%

Return to bug 141722