1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-16 07:58:04 +00:00

- Update to 0.23

- VDPAU and PulseAudio support added
- Harmonize mythtv and mythtv-frontend Makefiles and patches

Feature safe:	yes
Approved by:	beat (co-mentor)
This commit is contained in:
Bernhard Froehlich 2010-06-21 13:22:23 +00:00
parent f1d8da739e
commit bee1bc4297
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=256786
10 changed files with 162 additions and 2292 deletions

View File

@ -6,8 +6,7 @@
# $FreeBSD$
PORTNAME= mythtv-frontend
PORTVERSION= 0.22
PORTREVISION= 2
PORTVERSION= 0.23
CATEGORIES= multimedia
MASTER_SITES= http://ftp.osuosl.org/pub/mythtv/ \
http://ftp.oregonstate.edu/pub/mythtv/
@ -30,7 +29,7 @@ QT_COMPONENTS= gui sql network script linguist_build l10n \
QT_NONSTANDARD= yes
USE_GMAKE= yes
HAS_CONFIGURE= yes
USE_LDCONFIG= yes
USE_LDCONFIG= ${PREFIX}/lib/mythtv/filters
REINPLACE_ARGS= -i ""
DATADIR= ${PREFIX}/share/mythtv
@ -38,32 +37,27 @@ DATADIR= ${PREFIX}/share/mythtv
MAKE_ENV= QTDIR="${QT_PREFIX}" \
QMAKESPEC="${QMAKESPEC}"
CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" \
QTDIR="${QT_PREFIX}" KDEDIR="${KDE_PREFIX}" LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ENV+= QMAKESPEC="${QMAKESPEC}" MOC="${MOC}" CPPFLAGS="${CPPFLAGS} ${QTCPPFLAGS}" \
QTDIR="${QT_PREFIX}" LDFLAGS="-L${LOCALBASE}/lib"
CONFIGURE_ARGS= --prefix="${PREFIX}" --disable-v4l --disable-ivtv --disable-firewire \
--disable-dvb --disable-dbox2 --disable-hdhomerun --disable-iptv \
--disable-hdpvr --without-bindings=perl,python \
--enable-xvmc --enable-xvmc-pro --disable-xvmcw --enable-glx-procaddrarb
CONFIGURE_ARGS= --prefix="${PREFIX}" --disable-firewire --disable-iptv --disable-hdhomerun \
--disable-v4l --disable-ivtv --disable-hdpvr --disable-dvb --enable-xvmc \
--disable-xvmcw --enable-xvmc-pro --enable-opengl-video \
--disable-directfb --without-bindings=perl,python \
--enable-glx-procaddrarb
QMAKESPEC?= ${LOCALBASE}/share/qt4/mkspecs/freebsd-g++
DESKTOP_ENTRIES="MythTV Frontend" "MythTV is a homebrew PVR project" "" \
"mythfrontend" "AudioVideo;Video;" false
OPTIONS= ARTS "arts sound driver" off \
JACK "JACK sound driver" off \
OPENGL "OpenGL support" on
OPTIONS= JACK "JACK sound driver" off \
OPENGL "OpenGL support" on \
PULSEAUDIO "PulseAudio audio output support" off \
VDPAU "VDPAU support (nvidia only)" off
.include <bsd.port.pre.mk>
.if defined(WITH_ARTS)
LIB_DEPENDS+= artsc.0:${PORTSDIR}/audio/arts
CONFIGURE_ARGS+= --enable-audio-arts
.else
CONFIGURE_ARGS+= --disable-audio-arts
.endif
.if defined(WITH_JACK)
LIB_DEPENDS+= jack.0:${PORTSDIR}/audio/jack
CONFIGURE_ARGS+= --enable-audio-jack
@ -72,17 +66,39 @@ CONFIGURE_ARGS+= --disable-audio-jack
.endif
.if defined(WITH_OPENGL)
CONFIGURE_ARGS+= --enable-opengl-video
QT_COMPONENTS+= opengl
CONFIGURE_ARGS+= --enable-opengl-video --enable-opengl-vsync
.else
CONFIGURE_ARGS+= --disable-opengl-video
CONFIGURE_ARGS+= --disable-opengl-video --disable-opengl-vsync
.endif
.if defined(WITH_PULSEAUDIO)
LIB_DEPENDS+= pulse.0:${PORTSDIR}/audio/pulseaudio
CONFIGURE_ARGS+= --enable-audio-pulseoutput
.else
CONFIGURE_ARGS+= --disable-audio-pulseoutput
.endif
.if defined(WITH_VDPAU)
LIB_DEPENDS+= vdpau.1:${PORTSDIR}/x11/nvidia-driver
CONFIGURE_ARGS+= --enable-vdpau
.else
CONFIGURE_ARGS+= --disable-vdpau
.endif
post-patch:
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
${WRKSRC}/configure \
${WRKSRC}/libs/libmythtv/libmythtv.pro \
${WRKSRC}/libs/libavformat/libavformat.pro \
${WRKSRC}/bindings/perl/MythTV/Recording.pm \
${WRKSRC}/programs/mythtranscode/replex/Makefile.standalone \
${WRKSRC}/programs/scripts/database/mythconverg_backup.pl
${WRKSRC}/programs/scripts/database/mythconverg_backup.pl \
${WRKSRC}/programs/scripts/database/mythconverg_restore.pl \
${WRKSRC}/contrib/encoding_converting/mythencode/mythencode.pl \
${WRKSRC}/contrib/user_jobs/firewire_primer.pl \
${WRKSRC}/contrib/user_jobs/mythvidexport.py \
${WRKSRC}/contrib/info/mythname/mythname.pl \
${WRKSRC}/programs/mythcommflag/mythcommflag-analyze
.include <bsd.port.post.mk>

View File

@ -1,3 +1,3 @@
MD5 (mythtv-0.22.tar.bz2) = e8f8b5b6a51cd7be700e215b2a1bf2c0
SHA256 (mythtv-0.22.tar.bz2) = bb7212bac2cfc792c59a15a80caee8bbf469e250e6f48dc6b0856a60cb07b6fb
SIZE (mythtv-0.22.tar.bz2) = 21895073
MD5 (mythtv-0.23.tar.bz2) = 3c58f4f45a550b60fbddfb8726d7fc38
SHA256 (mythtv-0.23.tar.bz2) = ab79d1e6c93b049e17b2759e06a3ed93f51ae93dce85f52776a9f82446fdb39b
SIZE (mythtv-0.23.tar.bz2) = 26616540

View File

@ -1,19 +1,19 @@
--- configure.orig 2009-10-09 00:30:46.000000000 +0200
+++ configure 2009-11-22 23:33:55.000000000 +0100
@@ -633,21 +633,21 @@
--- configure.orig 2010-03-30 00:09:16.000000000 +0200
+++ configure 2010-04-06 19:10:20.000000000 +0200
@@ -666,21 +666,21 @@
log check_cc "$@"
cat > $TMPC
log_file $TMPC
- check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS "$@" -c -o $TMPO $TMPC
+ check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPC
- check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS "$@" -c -o $TMPO $TMPC
+ check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS -I${prefix}/include "$@" -c -o $TMPO $TMPC
}
check_cpp(){
log check_cpp "$@"
cat > $TMPC
log_file $TMPC
- check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS "$@" -E -o $TMPO $TMPC
+ check_cmd $cc $CFLAGS $ECFLAGS $OPTFLAGS -I${prefix}/include "$@" -E -o $TMPO $TMPC
- check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS "$@" -E -o $TMPO $TMPC
+ check_cmd $cc $CPPFLAGS $CFLAGS $OPTFLAGS -I${prefix}/include "$@" -E -o $TMPO $TMPC
}
check_cxx(){
@ -25,7 +25,15 @@
}
check_as(){
@@ -4254,6 +4254,8 @@
@@ -2841,7 +2841,6 @@
enable malloc_aligned
# Workaround compile errors from missing u_int/uint def
CPPFLAGS=`echo $CPPFLAGS | sed 's/-D_POSIX_C_SOURCE=200112//'`
- disable ivtv
enable backend
;;
bsd/os)
@@ -4581,6 +4580,8 @@
# directories, it cannot be modified.
QMAKE_LIBDIR_QT -= $libdir
LATE_LIBS += -L$libdir

View File

@ -1,11 +0,0 @@
--- libs/libmythdb/lcddevice.cpp.orig 2009-08-15 12:38:39.000000000 +0200
+++ libs/libmythdb/lcddevice.cpp 2009-12-18 12:22:32.000000000 +0100
@@ -19,6 +19,7 @@
# include <sys/sysinfo.h>
# else
# ifdef __FreeBSD__
+# include <sys/param.h>
# include <sys/mount.h>
# endif
# if CONFIG_CYGWIN

View File

@ -1,13 +0,0 @@
--- libs/libmythfreemheg/Programs.cpp.orig 2009-07-06 22:42:28.000000000 +0200
+++ libs/libmythfreemheg/Programs.cpp 2010-03-16 13:48:01.000000000 +0100
@@ -129,9 +129,7 @@
if (m_Name.Equal("GCD")) { // GetCurrentDate - returns local time.
if (args.Size() == 2) {
struct timeb timebuffer;
-#if HAVE_FTIME
- ftime(&timebuffer);
-#elif HAVE_GETTIMEOFDAY
+#if HAVE_GETTIMEOFDAY
struct timeval time;
struct timezone zone;

View File

@ -0,0 +1,11 @@
--- libs/libmythtv/videoout_vdpau.cpp.orig 2010-02-27 06:58:11.000000000 +0100
+++ libs/libmythtv/videoout_vdpau.cpp 2010-04-06 17:40:50.000000000 +0200
@@ -395,7 +395,7 @@
if (frame)
{
// FIXME for 0.23. This should be triggered from AFD by a seek
- if ((abs(frame->frameNumber - framesPlayed) > 8))
+ if ((labs(frame->frameNumber - framesPlayed) > 8))
ClearReferenceFrames();
new_frame = (framesPlayed != frame->frameNumber + 1);
framesPlayed = frame->frameNumber + 1;

View File

@ -0,0 +1,15 @@
--- libs/libmythui/mythrender_vdpau.cpp.orig 2010-03-10 09:03:29.000000000 +0100
+++ libs/libmythui/mythrender_vdpau.cpp 2010-04-06 18:25:49.000000000 +0200
@@ -2005,9 +2005,9 @@
if (!surfaces_owned)
return;
- VERBOSE(VB_IMPORTANT, LOC +
- QString("Attempting to reset %1 video surfaces owned by this thread %2")
- .arg(surfaces_owned).arg(this_thread));
+ //VERBOSE(VB_IMPORTANT, LOC +
+ // QString("Attempting to reset %1 video surfaces owned by this thread %2")
+ // .arg(surfaces_owned).arg(this_thread));
// update old surfaces to map old vdpvideosurface to new vdpvideosurface
QHash<uint, uint>::iterator old;

View File

@ -1,13 +0,0 @@
--- programs/mythtranscode/mpeg2fix.cpp.orig 2009-11-02 20:52:39.000000000 +0100
+++ programs/mythtranscode/mpeg2fix.cpp 2009-11-02 20:53:08.000000000 +0100
@@ -12,6 +12,10 @@
#include <getopt.h>
#include <stdint.h>
+#ifdef __FreeBSD__
+#include <sys/stat.h>
+#endif
+
#include "config.h"
#include "mpeg2fix.h"

File diff suppressed because it is too large Load Diff

View File

@ -28,14 +28,18 @@ include/mythtv/httpcomms.h
include/mythtv/langsettings.h
include/mythtv/lcddevice.h
include/mythtv/libavcodec/avcodec.h
include/mythtv/libavcodec/dxva2.h
include/mythtv/libavcodec/mmx.h
include/mythtv/libavcodec/opt.h
include/mythtv/libavcodec/vaapi.h
include/mythtv/libavcodec/vdpau.h
include/mythtv/libavcodec/xvmc.h
include/mythtv/libavformat/avformat.h
include/mythtv/libavformat/avio.h
include/mythtv/libavformat/rtp.h
include/mythtv/libavformat/rtsp.h
include/mythtv/libavformat/rtspcodes.h
include/mythtv/libavutil/adler32.h
include/mythtv/libavutil/avconfig.h
include/mythtv/libavutil/avstring.h
include/mythtv/libavutil/avutil.h
include/mythtv/libavutil/base64.h
@ -48,6 +52,7 @@ include/mythtv/libavutil/lzo.h
include/mythtv/libavutil/mathematics.h
include/mythtv/libavutil/md5.h
include/mythtv/libavutil/mem.h
include/mythtv/libavutil/pixdesc.h
include/mythtv/libavutil/pixfmt.h
include/mythtv/libavutil/rational.h
include/mythtv/libavutil/sha1.h
@ -62,6 +67,7 @@ include/mythtv/libmyth/httpcomms.h
include/mythtv/libmyth/langsettings.h
include/mythtv/libmyth/lcddevice.h
include/mythtv/libmyth/managedlist.h
include/mythtv/libmyth/mcodecs.h
include/mythtv/libmyth/msocketdevice.h
include/mythtv/libmyth/mythconfig.h
include/mythtv/libmyth/mythconfig.mak
@ -83,6 +89,7 @@ include/mythtv/libmyth/mythobservable.h
include/mythtv/libmyth/mythplugin.h
include/mythtv/libmyth/mythpluginapi.h
include/mythtv/libmyth/mythsocket.h
include/mythtv/libmyth/mythsocket_cb.h
include/mythtv/libmyth/mythstorage.h
include/mythtv/libmyth/mythterminal.h
include/mythtv/libmyth/mythtimer.h
@ -94,7 +101,6 @@ include/mythtv/libmyth/mythwizard.h
include/mythtv/libmyth/oldsettings.h
include/mythtv/libmyth/output.h
include/mythtv/libmyth/programinfo.h
include/mythtv/libmyth/qcodecs.h
include/mythtv/libmyth/recordingtypes.h
include/mythtv/libmyth/remotefile.h
include/mythtv/libmyth/remoteutil.h
@ -112,6 +118,7 @@ include/mythtv/libmythdb/compat.h
include/mythtv/libmythdb/exitcodes.h
include/mythtv/libmythdb/httpcomms.h
include/mythtv/libmythdb/lcddevice.h
include/mythtv/libmythdb/mcodecs.h
include/mythtv/libmythdb/msocketdevice.h
include/mythtv/libmythdb/mythconfig.h
include/mythtv/libmythdb/mythconfig.mak
@ -123,11 +130,11 @@ include/mythtv/libmythdb/mythevent.h
include/mythtv/libmythdb/mythexp.h
include/mythtv/libmythdb/mythobservable.h
include/mythtv/libmythdb/mythsocket.h
include/mythtv/libmythdb/mythsocket_cb.h
include/mythtv/libmythdb/mythstorage.h
include/mythtv/libmythdb/mythtimer.h
include/mythtv/libmythdb/mythverbose.h
include/mythtv/libmythdb/mythversion.h
include/mythtv/libmythdb/qcodecs.h
include/mythtv/libmythui/mythdialogbox.h
include/mythtv/libmythui/mythfontproperties.h
include/mythtv/libmythui/mythgenerictree.h
@ -167,6 +174,7 @@ include/mythtv/libmythui/x11colors.h
include/mythtv/libmythui/xmlparsebase.h
include/mythtv/libswscale/swscale.h
include/mythtv/managedlist.h
include/mythtv/mcodecs.h
include/mythtv/mpeg2dec/mpeg2.h
include/mythtv/msocketdevice.h
include/mythtv/mythconfig.h
@ -189,6 +197,7 @@ include/mythtv/mythobservable.h
include/mythtv/mythplugin.h
include/mythtv/mythpluginapi.h
include/mythtv/mythsocket.h
include/mythtv/mythsocket_cb.h
include/mythtv/mythstorage.h
include/mythtv/mythterminal.h
include/mythtv/mythtimer.h
@ -200,7 +209,6 @@ include/mythtv/mythwizard.h
include/mythtv/oldsettings.h
include/mythtv/output.h
include/mythtv/programinfo.h
include/mythtv/qcodecs.h
include/mythtv/recordingtypes.h
include/mythtv/remotefile.h
include/mythtv/remoteutil.h
@ -240,47 +248,47 @@ include/mythtv/virtualkeyboard_qt.h
include/mythtv/visual.h
include/mythtv/volumebase.h
include/mythtv/xmlparse.h
lib/libmyth-0.22.so
lib/libmyth-0.22.so.0
lib/libmyth-0.22.so.0.22
lib/libmyth-0.22.so.0.22.0
lib/libmythavcodec-0.22.so
lib/libmythavcodec-0.22.so.0
lib/libmythavcodec-0.22.so.0.22
lib/libmythavcodec-0.22.so.0.22.0
lib/libmythavformat-0.22.so
lib/libmythavformat-0.22.so.0
lib/libmythavformat-0.22.so.0.22
lib/libmythavformat-0.22.so.0.22.0
lib/libmythavutil-0.22.so
lib/libmythavutil-0.22.so.0
lib/libmythavutil-0.22.so.0.22
lib/libmythavutil-0.22.so.0.22.0
lib/libmythdb-0.22.so
lib/libmythdb-0.22.so.0
lib/libmythdb-0.22.so.0.22
lib/libmythdb-0.22.so.0.22.0
lib/libmythdvdnav-0.22.a
lib/libmythfreemheg-0.22.so
lib/libmythfreemheg-0.22.so.0
lib/libmythfreemheg-0.22.so.0.22
lib/libmythfreemheg-0.22.so.0.22.0
lib/libmythswscale-0.22.so
lib/libmythswscale-0.22.so.0
lib/libmythswscale-0.22.so.0.22
lib/libmythswscale-0.22.so.0.22.0
lib/libmythtv-0.22.so
lib/libmythtv-0.22.so.0
lib/libmythtv-0.22.so.0.22
lib/libmythtv-0.22.so.0.22.0
lib/libmythui-0.22.so
lib/libmythui-0.22.so.0
lib/libmythui-0.22.so.0.22
lib/libmythui-0.22.so.0.22.0
lib/libmythupnp-0.22.so
lib/libmythupnp-0.22.so.0
lib/libmythupnp-0.22.so.0.22
lib/libmythupnp-0.22.so.0.22.0
lib/libmyth-0.23.so
lib/libmyth-0.23.so.0
lib/libmyth-0.23.so.0.23
lib/libmyth-0.23.so.0.23.0
lib/libmythavcodec-0.23.so
lib/libmythavcodec-0.23.so.0
lib/libmythavcodec-0.23.so.0.23
lib/libmythavcodec-0.23.so.0.23.0
lib/libmythavformat-0.23.so
lib/libmythavformat-0.23.so.0
lib/libmythavformat-0.23.so.0.23
lib/libmythavformat-0.23.so.0.23.0
lib/libmythavutil-0.23.so
lib/libmythavutil-0.23.so.0
lib/libmythavutil-0.23.so.0.23
lib/libmythavutil-0.23.so.0.23.0
lib/libmythdb-0.23.so
lib/libmythdb-0.23.so.0
lib/libmythdb-0.23.so.0.23
lib/libmythdb-0.23.so.0.23.0
lib/libmythdvdnav-0.23.a
lib/libmythfreemheg-0.23.so
lib/libmythfreemheg-0.23.so.0
lib/libmythfreemheg-0.23.so.0.23
lib/libmythfreemheg-0.23.so.0.23.0
lib/libmythswscale-0.23.so
lib/libmythswscale-0.23.so.0
lib/libmythswscale-0.23.so.0.23
lib/libmythswscale-0.23.so.0.23.0
lib/libmythtv-0.23.so
lib/libmythtv-0.23.so.0
lib/libmythtv-0.23.so.0.23
lib/libmythtv-0.23.so.0.23.0
lib/libmythui-0.23.so
lib/libmythui-0.23.so.0
lib/libmythui-0.23.so.0.23
lib/libmythui-0.23.so.0.23.0
lib/libmythupnp-0.23.so
lib/libmythupnp-0.23.so.0
lib/libmythupnp-0.23.so.0.23
lib/libmythupnp-0.23.so.0.23.0
lib/mythtv/filters/libadjust.so
lib/mythtv/filters/libbobdeint.so
lib/mythtv/filters/libcrop.so
@ -306,6 +314,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/i18n/mythfrontend_cs.qm
%%DATADIR%%/i18n/mythfrontend_da.qm
%%DATADIR%%/i18n/mythfrontend_de.qm
%%DATADIR%%/i18n/mythfrontend_el.qm
%%DATADIR%%/i18n/mythfrontend_en_gb.qm
%%DATADIR%%/i18n/mythfrontend_en_us.qm
%%DATADIR%%/i18n/mythfrontend_es.qm
@ -378,12 +387,19 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Gray-OSD/slider_frame.png
%%DATADIR%%/themes/Gray-OSD/themeinfo.xml
%%DATADIR%%/themes/MythCenter-wide/README
%%DATADIR%%/themes/MythCenter-wide/appear-ui.xml
%%DATADIR%%/themes/MythCenter-wide/base.xml
%%DATADIR%%/themes/MythCenter-wide/config-ui.xml
%%DATADIR%%/themes/MythCenter-wide/controls-ui.xml
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page1.html
%%DATADIR%%/themes/MythCenter-wide/htmls/progdetails_page2.html
%%DATADIR%%/themes/MythCenter-wide/menu-ui.xml
%%DATADIR%%/themes/MythCenter-wide/preview.jpg
%%DATADIR%%/themes/MythCenter-wide/qtlook.txt
%%DATADIR%%/themes/MythCenter-wide/recordings-ui.xml
%%DATADIR%%/themes/MythCenter-wide/schedule-ui.xml
%%DATADIR%%/themes/MythCenter-wide/settings-ui.xml
%%DATADIR%%/themes/MythCenter-wide/status-ui.xml
%%DATADIR%%/themes/MythCenter-wide/themeinfo.xml
%%DATADIR%%/themes/MythCenter-wide/title/title_dvd.png
%%DATADIR%%/themes/MythCenter-wide/title/title_gallery.png
@ -402,7 +418,6 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter-wide/title/title_tv.png
%%DATADIR%%/themes/MythCenter-wide/title/title_video.png
%%DATADIR%%/themes/MythCenter-wide/title/title_weather.png
%%DATADIR%%/themes/MythCenter-wide/ui.xml
%%DATADIR%%/themes/MythCenter-wide/ui/background.png
%%DATADIR%%/themes/MythCenter-wide/ui/button_on.png
%%DATADIR%%/themes/MythCenter-wide/ui/down.png
@ -453,6 +468,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter-wide/watermark/video_settings.png
%%DATADIR%%/themes/MythCenter-wide/watermark/weather.png
%%DATADIR%%/themes/MythCenter-wide/watermark/zoneminder.png
%%DATADIR%%/themes/MythCenter-wide/welcome-ui.xml
%%DATADIR%%/themes/MythCenter/README
%%DATADIR%%/themes/MythCenter/base.xml
%%DATADIR%%/themes/MythCenter/cr-lines.png
@ -462,6 +478,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter/menu-ui.xml
%%DATADIR%%/themes/MythCenter/preview.jpg
%%DATADIR%%/themes/MythCenter/qtlook.txt
%%DATADIR%%/themes/MythCenter/recordings-ui.xml
%%DATADIR%%/themes/MythCenter/schedule-ui.xml
%%DATADIR%%/themes/MythCenter/themeinfo.xml
%%DATADIR%%/themes/MythCenter/title/title_dvd.png
%%DATADIR%%/themes/MythCenter/title/title_gallery.png
@ -480,13 +498,13 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/MythCenter/title/title_tv.png
%%DATADIR%%/themes/MythCenter/title/title_video.png
%%DATADIR%%/themes/MythCenter/title/title_weather.png
%%DATADIR%%/themes/MythCenter/ui.xml
%%DATADIR%%/themes/MythCenter/ui/background.png
%%DATADIR%%/themes/MythCenter/ui/button_off.png
%%DATADIR%%/themes/MythCenter/ui/button_on.png
%%DATADIR%%/themes/MythCenter/ui/down.png
%%DATADIR%%/themes/MythCenter/ui/mythtv_logo.png
%%DATADIR%%/themes/MythCenter/ui/up.png
%%DATADIR%%/themes/MythCenter/video-ui.xml
%%DATADIR%%/themes/MythCenter/watermark/alarmclock.png
%%DATADIR%%/themes/MythCenter/watermark/appearance.png
%%DATADIR%%/themes/MythCenter/watermark/big_arrow_down.png
@ -564,6 +582,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/menu/menubackground.png
%%DATADIR%%/themes/Terra/menu/menuframe.png
%%DATADIR%%/themes/Terra/music-ui.xml
%%DATADIR%%/themes/Terra/netvision-ui.xml
%%DATADIR%%/themes/Terra/news-ui.xml
%%DATADIR%%/themes/Terra/popups/alt_menu_background.png
%%DATADIR%%/themes/Terra/popups/busy/busy_0.png
%%DATADIR%%/themes/Terra/popups/busy/busy_1.png
@ -645,6 +665,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/recordings/transcoding_8.png
%%DATADIR%%/themes/Terra/schedule-ui.xml
%%DATADIR%%/themes/Terra/schedule/generic_list_frame.png
%%DATADIR%%/themes/Terra/settings-ui.xml
%%DATADIR%%/themes/Terra/shared/black_star.png
%%DATADIR%%/themes/Terra/shared/bronze_star.png
%%DATADIR%%/themes/Terra/shared/cross.png
@ -676,8 +697,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/shared/tick.png
%%DATADIR%%/themes/Terra/shared/updirectory.png
%%DATADIR%%/themes/Terra/shared/watched.png
%%DATADIR%%/themes/Terra/status-ui.xml
%%DATADIR%%/themes/Terra/themeinfo.xml
%%DATADIR%%/themes/Terra/ui.xml
%%DATADIR%%/themes/Terra/video-ui.xml
%%DATADIR%%/themes/Terra/video/browserlistbackground.png
%%DATADIR%%/themes/Terra/video/browserlistframe.png
@ -749,6 +770,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/Terra/watermarks/zm_events.png
%%DATADIR%%/themes/Terra/watermarks/zm_live.png
%%DATADIR%%/themes/Terra/watermarks/zoneminder.png
%%DATADIR%%/themes/Terra/welcome-ui.xml
%%DATADIR%%/themes/classic/classic-preview.png
%%DATADIR%%/themes/classic/main_settings.xml
%%DATADIR%%/themes/classic/mainmenu.xml
@ -785,6 +807,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default-wide/rk-selectbar.png
%%DATADIR%%/themes/default-wide/schedule-ui.xml
%%DATADIR%%/themes/default-wide/selectbar.png
%%DATADIR%%/themes/default-wide/settings-ui.xml
%%DATADIR%%/themes/default-wide/shared/grid_back_reg.png
%%DATADIR%%/themes/default-wide/shared/grid_back_sel.png
%%DATADIR%%/themes/default-wide/shared/grid_noimage.png
@ -888,6 +911,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/hd.png
%%DATADIR%%/themes/default/hd1080.png
%%DATADIR%%/themes/default/hd720.png
%%DATADIR%%/themes/default/htmls/mythbrowser.css
%%DATADIR%%/themes/default/htmls/notfound.html
%%DATADIR%%/themes/default/htmls/progdetails_page1.html
%%DATADIR%%/themes/default/htmls/progdetails_page2.html
@ -946,6 +970,8 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/keyboard/keyboard-background.png
%%DATADIR%%/themes/default/keyboard/keyboard.xml
%%DATADIR%%/themes/default/keyboard/leftarrow.png
%%DATADIR%%/themes/default/keyboard/nb.xml
%%DATADIR%%/themes/default/keyboard/nb_ui.xml
%%DATADIR%%/themes/default/keyboard/returnarrow.png
%%DATADIR%%/themes/default/keyboard/rightarrow.png
%%DATADIR%%/themes/default/keyboard/ru.xml
@ -987,6 +1013,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/processing.png
%%DATADIR%%/themes/default/progressbar_background.png
%%DATADIR%%/themes/default/progressbar_fill.png
%%DATADIR%%/themes/default/progressbar_fill2.png
%%DATADIR%%/themes/default/reclist_background.png
%%DATADIR%%/themes/default/recordings-ui.xml
%%DATADIR%%/themes/default/right_arrow.png
@ -1001,6 +1028,7 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/schedule_record.png
%%DATADIR%%/themes/default/schedule_recording.png
%%DATADIR%%/themes/default/selectbar.png
%%DATADIR%%/themes/default/settings-ui.xml
%%DATADIR%%/themes/default/shared/directory.png
%%DATADIR%%/themes/default/shared/executable.png
%%DATADIR%%/themes/default/shared/file.png
@ -1031,6 +1059,9 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/default/unchecked_high.png
%%DATADIR%%/themes/default/up_arrow.png
%%DATADIR%%/themes/default/uparrow.png
%%DATADIR%%/themes/default/very_wide_button_background.png
%%DATADIR%%/themes/default/very_wide_button_pushed_background.png
%%DATADIR%%/themes/default/very_wide_button_selected_background.png
%%DATADIR%%/themes/default/watched.png
%%DATADIR%%/themes/default/wide.png
%%DATADIR%%/themes/default/wide_button_background.png
@ -1083,9 +1114,6 @@ lib/mythtv/filters/libyadif.so
%%DATADIR%%/themes/mediacentermenu/tv_schedule.xml
%%DATADIR%%/themes/mediacentermenu/tv_search.xml
%%DATADIR%%/themes/mediacentermenu/tv_settings.xml
%%DATADIR%%/themes/default/mw_text_button_off.png
%%DATADIR%%/themes/default/mw_text_button_on.png
%%DATADIR%%/themes/default/mw_text_button_pushed.png
%%DATADIR%%/themes/default/welcome-ui.xml
@dirrm include/mythtv/upnp
@dirrm include/mythtv/mpeg2dec