summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorBeech Rintoul <beech@FreeBSD.org>2009-02-02 03:24:19 +0000
committerBeech Rintoul <beech@FreeBSD.org>2009-02-02 03:24:19 +0000
commit2e043352fc704b3e29d701cf1657cbe2ef671693 (patch)
tree049ab6548a3aaf5a62f0f98512774a96d2eef2ea /multimedia
parentUpdate to 1.1.4 (diff)
- Update to 1.8.3
PR: ports/130592 Submitted by: J.R. Oldroyd <fbsd@opal.com>
Notes
Notes: svn path=/head/; revision=227421
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/freevo/Makefile139
-rw-r--r--multimedia/freevo/distinfo6
-rw-r--r--multimedia/freevo/files/freevo-rcsubr.in61
-rw-r--r--multimedia/freevo/files/freevo.in55
-rw-r--r--multimedia/freevo/files/freevo.sh.sample26
-rw-r--r--multimedia/freevo/files/patch-freevo20
-rw-r--r--multimedia/freevo/files/patch-local_conf.py.example61
-rw-r--r--multimedia/freevo/files/patch-src-plugins-autoshutdown.py11
-rw-r--r--multimedia/freevo/files/patch-src-plugins-rom_drives.py11
-rw-r--r--multimedia/freevo/files/patch-src-www-configlib.py11
-rw-r--r--multimedia/freevo/files/pkg-deinstall.in25
-rw-r--r--multimedia/freevo/files/pkg-install.in51
-rw-r--r--multimedia/freevo/files/pkg-message.in38
-rw-r--r--multimedia/freevo/pkg-deinstall64
-rw-r--r--multimedia/freevo/pkg-descr1
-rw-r--r--multimedia/freevo/pkg-install95
-rw-r--r--multimedia/freevo/pkg-plist1691
17 files changed, 1844 insertions, 522 deletions
diff --git a/multimedia/freevo/Makefile b/multimedia/freevo/Makefile
index 5feafd3f1e4f..f9e7d31b4f75 100644
--- a/multimedia/freevo/Makefile
+++ b/multimedia/freevo/Makefile
@@ -6,133 +6,62 @@
#
PORTNAME= freevo
-PORTVERSION= 1.5.4
-PORTREVISION= 5
+PORTVERSION= 1.8.3
CATEGORIES= multimedia
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= freevo
+MASTER_SITES= SF
MAINTAINER= fbsd@opal.com
COMMENT= Open source digital jukebox
-.ifdef NOPORTDOCS
-BROKEN= bad plist
-.endif
-
-RUN_DEPENDS= aumix:${PORTSDIR}/audio/aumix \
- ${PYTHON_SITELIBDIR}/pyosd/__init__.py:${PORTSDIR}/misc/py-osd \
+RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer \
+ mencoder:${PORTSDIR}/multimedia/mencoder \
+ aumix:${PORTSDIR}/audio/aumix \
+ tv_cat:${PORTSDIR}/textproc/p5-xmltv \
+ ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml \
+ ${PYTHON_SITELIBDIR}/kaa/__init__.py:${PORTSDIR}/multimedia/py-kaa-base \
+ ${PYTHON_SITELIBDIR}/kaa/imlib2/__init__.py:${PORTSDIR}/multimedia/py-kaa-imlib2 \
+ ${PYTHON_SITELIBDIR}/kaa/metadata/__init__.py:${PORTSDIR}/multimedia/py-kaa-metadata \
+ ${PYTHON_SITELIBDIR}/BeautifulSoup.py:${PORTSDIR}/www/py-beautifulsoup \
${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game \
${PYTHON_SITELIBDIR}/PIL/__init__.py:${PORTSDIR}/graphics/py-imaging \
${PYTHON_SITELIBDIR}/twisted/__init__.py:${PORTSDIR}/devel/py-twisted \
- ${PYTHON_SITELIBDIR}/mmpython/__init__.py:${PORTSDIR}/multimedia/mmpython \
- ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml \
+ ${PYTHON_SITELIBDIR}/Numeric/Numeric_headers/__init__.py:${PORTSDIR}/math/py-numeric
+
+FREEVO_USER= freevo
+FREEVO_GROUP= ${FREEVO_USER}
+FREEVO_UID= 523
+FREEVO_GID= ${FREEVO_UID}
+FREEVO_HOME= /var/db/${FREEVO_USER}
NO_BUILD= yes
-SUB_LIST+= PORTVERSION=${PORTVERSION}
-SUB_FILES= pkg-message
+SUB_LIST+= PORTVERSION=${PORTVERSION} \
+ FREEVO_USER=${FREEVO_USER} \
+ FREEVO_GROUP=${FREEVO_GROUP} \
+ FREEVO_UID=${FREEVO_UID} \
+ FREEVO_GID=${FREEVO_GID} \
+ FREEVO_HOME=${FREEVO_HOME}
+SUB_FILES= pkg-message pkg-install pkg-deinstall
-USE_GETTEXT= yes
USE_PYTHON= yes
USE_PYDISTUTILS= yes
-PKGINSTALL= pkg-install
-DOCSDIR= ${PREFIX}/share/doc/${DISTNAME}
-CONF= ${PREFIX}/etc/${PORTNAME}
+USE_RC_SUBR= ${PORTNAME}
+RC_SCRIPT= ${PREFIX}/etc/rc.d/${PORTNAME}
-OPTIONS= MPLAYER "Enable mplayer video playback support" On \
- XINE "Enable xine video playback support" On \
- MAME "Enable xmame game support" Off \
- SNES9X "Enable snes9x game support" Off \
- ZSNES "Enable zsnes game support" Off \
- XMLTV "Enable TV guide listings support" On \
- CDPARANOIA "Enable cdparanoia audio extraction support" On \
- LAME "Enable lame MP3 encoding support" On \
- OGG "Enable Ogg Vorbis encoding support" On \
- FLAC "Enable FLAC encoding support" Off \
- LIRC "Enable lirc remote control support" On
+DOCSDIR= ${PREFIX}/share/doc/${DISTNAME}
+CONFDIR= ${PREFIX}/etc/${PORTNAME}
.include <bsd.port.pre.mk>
-###
-# AUTODETECTION
-###
-
-.if exists(${LOCALBASE}/bin/xmame) && !defined(WITHOUT_MAME)
-WITH_MAME= YES
-.endif
-
-.if exists(${LOCALBASE}/bin/snes9x) && !defined(WITHOUT_SNES9X)
-WITH_SNES9X= YES
-.endif
-
-.if exists(${LOCALBASE}/bin/zsnes) && !defined(WITHOUT_ZSNES)
-WITH_ZSNES= YES
-.endif
-
-.if exists(${LOCALBASE}/bin/flac) && !defined(WITHOUT_FLAC)
-WITH_FLAC= YES
-.endif
-
-###
-# CONFIGURE RUN_DEPENDS
-###
-
-.if !defined(WITHOUT_MPLAYER)
-RUN_DEPENDS+= mplayer:${PORTSDIR}/multimedia/mplayer
-.endif
-
-.if !defined(WITHOUT_XINE)
-RUN_DEPENDS+= xine:${PORTSDIR}/multimedia/xine
-.endif
-
-.if defined(WITH_MAME)
-RUN_DEPENDS+= xmame:${PORTSDIR}/emulators/xmame
-.endif
-
-.if defined(WITH_SNES9X)
-RUN_DEPENDS+= snes9x:${PORTSDIR}/emulators/snes9x
-.endif
-
-.if defined(WITH_ZSNES)
-RUN_DEPENDS+= zsnes:${PORTSDIR}/emulators/zsnes
-.endif
-
-.if !defined(WITHOUT_XMLTV)
-RUN_DEPENDS+= tv_cat:${PORTSDIR}/textproc/p5-xmltv
-.endif
-
-.if !defined(WITHOUT_CDPARANOIA)
-RUN_DEPENDS+= cdparanoia:${PORTSDIR}/audio/cdparanoia
-.endif
-
-.if !defined(WITHOUT_LAME)
-RUN_DEPENDS+= lame:${PORTSDIR}/audio/lame
-.endif
-
-.if !defined(WITHOUT_OGG)
-RUN_DEPENDS+= oggenc:${PORTSDIR}/audio/vorbis-tools
-.endif
-
-.if defined(WITH_FLAC)
-RUN_DEPENDS+= flac:${PORTSDIR}/audio/flac
-.endif
-
-.if !defined(WITHOUT_LIRC)
-RUN_DEPENDS+= ${PYTHON_SITELIBDIR}/pylircmodule.so:${PORTSDIR}/comms/py-lirc
-.endif
-
post-patch:
@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/freevo_config.py
@${REINPLACE_CMD} -e 's|/etc/freevo|${PREFIX}/etc/freevo|' ${WRKSRC}/local_conf.py.example
-pre-install:
- @BATCH="${BATCH}" ${SH} ${PKGINSTALL} PRE-INSTALL
-
post-install:
- @${MKDIR} ${CONF} && ${CHMOD} a+rx ${CONF}
- ${INSTALL_DATA} ${WRKSRC}/local_conf.py.example ${CONF}
- @${SED} 's|%%PREFIX%%|${PREFIX}|' ${FILESDIR}/freevo.sh.sample > ${WRKDIR}/freevo.sh.sample
- ${INSTALL_SCRIPT} ${WRKDIR}/freevo.sh.sample ${PREFIX}/etc/rc.d/
- @${SED} 's|%%PREFIX%%|${PREFIX}|' ${PKGMESSAGE}
+ @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
+ ${MKDIR} ${CONFDIR}
+ ${CHMOD} a+rx ${CONFDIR}
+ ${INSTALL_DATA} ${WRKSRC}/local_conf.py.example ${CONFDIR}
+ @${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
diff --git a/multimedia/freevo/distinfo b/multimedia/freevo/distinfo
index 85d66c3447b8..45df09202b05 100644
--- a/multimedia/freevo/distinfo
+++ b/multimedia/freevo/distinfo
@@ -1,3 +1,3 @@
-MD5 (freevo-1.5.4.tar.gz) = 22ada48e84e5e3d7f80110c842ed18ca
-SHA256 (freevo-1.5.4.tar.gz) = d9a7c9455a94c281acb8c5e3f0fc68e4289af7a557af413db2244a254dd48090
-SIZE (freevo-1.5.4.tar.gz) = 4425484
+MD5 (freevo-1.8.3.tar.gz) = 817ae34cca78b57970ce1bbb58e19ce3
+SHA256 (freevo-1.8.3.tar.gz) = ef9491f0d6c40ba4027266ef577f05cb77be49e68e307b67d1f917e9430eefa4
+SIZE (freevo-1.8.3.tar.gz) = 26713301
diff --git a/multimedia/freevo/files/freevo-rcsubr.in b/multimedia/freevo/files/freevo-rcsubr.in
new file mode 100644
index 000000000000..8e82488e3e94
--- /dev/null
+++ b/multimedia/freevo/files/freevo-rcsubr.in
@@ -0,0 +1,61 @@
+#!/bin/sh
+
+# PROVIDE: freevo
+# REQUIRE: DAEMON
+# KEYWORD: shutdown
+#
+# Uses the following /etc/rc.conf variables:
+# freevo_enable="YES" master on/off
+# freevo_recordserver_enable="YES" start freevo record server
+# freevo_webserver_enable="YES" start freevo web server
+# freevo_gui_enable="YES" start freevo GUI
+#
+
+. /etc/rc.subr
+
+name=freevo
+rcvar=`set_rcvar`
+
+load_rc_config $name
+: ${freevo_enable="NO"}
+: ${freevo_recordserver_enable="NO"}
+: ${freevo_webserver_enable="NO"}
+: ${freevo_gui_enable="NO"}
+
+freevo_user=${freevo_user:-"freevo"}
+freevo_group=${freevo_group:-"freevo"}
+freevo_uid=`pw usershow ${freevo_user} | awk -F: '{print $3}'`
+
+command=%%PREFIX%%/bin/freevo
+command_interpreter=%%PREFIX%%/bin/python2.5
+_interpbn=python
+
+case "$1" in
+fast*) freevo_cmd=`expr "$1" : 'fast\(.*\)'` ;;
+*) freevo_cmd="$1" ;;
+esac
+
+name=freevo_recordserver
+rcvar=${name}_enable
+eval ${name}_user=${freevo_user}
+eval ${name}_group=${freevo_group}
+pidfile=/var/run/freevo/recordserver-${freevo_uid}.pid
+command_args="recordserver ${freevo_cmd}"
+run_rc_command "$1"
+
+name=freevo_webserver
+rcvar=${name}_enable
+eval ${name}_user=${freevo_user}
+eval ${name}_group=${freevo_group}
+pidfile=/var/run/freevo/webserver-${freevo_uid}.pid
+command_args="webserver ${freevo_cmd}"
+run_rc_command "$1"
+
+name=freevo_gui
+rcvar=${name}_enable
+eval ${name}_user=${freevo_user}
+eval ${name}_group=${freevo_group}
+pidfile=/var/run/freevo/freevo-${freevo_uid}.pid
+command_args="${freevo_cmd}"
+run_rc_command "$1"
+
diff --git a/multimedia/freevo/files/freevo.in b/multimedia/freevo/files/freevo.in
new file mode 100644
index 000000000000..67c752654dbc
--- /dev/null
+++ b/multimedia/freevo/files/freevo.in
@@ -0,0 +1,55 @@
+#!/bin/sh
+
+# PROVIDE: freevo
+# REQUIRE: DAEMON lircd
+# KEYWORD: shutdown
+#
+# Uses the following /etc/rc.conf variables:
+# freevo_enable="YES" master on/off
+# freevo_recordserver_enable="YES" start freevo record server
+# freevo_webserver_enable="YES" start freevo web server
+# freevo_gui_enable="YES" start freevo GUI
+#
+
+. /etc/rc.subr
+
+name=freevo
+rcvar=`set_rcvar`
+
+load_rc_config $name
+: ${freevo_enable="NO"}
+: ${freevo_recordserver_enable="NO"}
+: ${freevo_webserver_enable="NO"}
+: ${freevo_gui_enable="NO"}
+
+freevo_user=${freevo_user:-"freevo"}
+freevo_group=${freevo_group:-"freevo"}
+freevo_uid=`pw usershow ${freevo_user} | awk -F: '{print $3}'`
+freevo_dir=`pw usershow ${freevo_user} | awk -F: '{print $9}'`
+
+command=%%PREFIX%%/bin/freevo
+command_interpreter="%%PREFIX%%/bin/python2.5"
+
+cd ${freevo_dir}
+
+case "$1" in
+start)
+ [ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver start"
+ [ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver start"
+ [ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command} start"
+ ;;
+stop)
+ [ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver stop"
+ [ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver stop"
+ [ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command} stop"
+ ;;
+restart)
+ [ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver stop"
+ [ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver stop"
+ [ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command} stop"
+ [ ${freevo_recordserver_enable} = "YES" ] && su ${freevo_user} -c "${command} recordserver start"
+ [ ${freevo_webserver_enable} = "YES" ] && su ${freevo_user} -c "${command} webserver start"
+ [ ${freevo_gui_enable} = "YES" ] && su ${freevo_user} -c "${command} start"
+ ;;
+esac
+
diff --git a/multimedia/freevo/files/freevo.sh.sample b/multimedia/freevo/files/freevo.sh.sample
deleted file mode 100644
index f7059746a465..000000000000
--- a/multimedia/freevo/files/freevo.sh.sample
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/bin/sh
-
-PREFIX=%%PREFIX%%
-RUN="/usr/bin/su freevo -c"
-PATH=${PATH}:%%PREFIX%%/bin
-
-case "$1" in
-start)
- ${RUN} "${PREFIX}/bin/freevo recordserver start" \
- && echo -n " freevo-recordserver"
- ${RUN} "${PREFIX}/bin/freevo webserver start" \
- && echo -n " freevo-webserver"
- ${RUN} "${PREFIX}/bin/freevo -fs start" > /dev/null 2>&1 &
- echo -n " freevo"
- ;;
-stop)
- ${RUN} "${PREFIX}/bin/freevo stop"
- ${RUN} "${PREFIX}/bin/freevo webserver stop"
- ${RUN} "${PREFIX}/bin/freevo recordserver stop"
- ;;
-*)
- echo "Usage: `basename $0` {start|stop}" >&2
- ;;
-esac
-
-exit 0
diff --git a/multimedia/freevo/files/patch-freevo b/multimedia/freevo/files/patch-freevo
new file mode 100644
index 000000000000..c32689fdb96a
--- /dev/null
+++ b/multimedia/freevo/files/patch-freevo
@@ -0,0 +1,20 @@
+--- freevo.orig 2009-01-11 15:50:59.000000000 -0500
++++ freevo 2009-01-13 21:39:10.000000000 -0500
+@@ -156,7 +156,7 @@
+ get pid of running 'name'
+ """
+ _debug_('getpid(name=%r, arg=%r)' % (name, arg))
+- for fname in ('/var/run/' + name + '-%s.pid' % os.getuid(),
++ for fname in ('/var/run/freevo/' + name + '-%s.pid' % os.getuid(),
+ '/tmp/' + name + '-%s.pid' % os.getuid()):
+ if os.path.isfile(fname):
+ f = open(fname)
+@@ -259,7 +259,7 @@
+ if pid:
+ if store:
+ try:
+- f = open('/var/run/' + name + '-%s.pid' % os.getuid(), 'w')
++ f = open('/var/run/freevo/' + name + '-%s.pid' % os.getuid(), 'w')
+ except (OSError, IOError):
+ f = open('/tmp/' + name + '-%s.pid' % os.getuid(), 'w')
+
diff --git a/multimedia/freevo/files/patch-local_conf.py.example b/multimedia/freevo/files/patch-local_conf.py.example
deleted file mode 100644
index 3866cec397ab..000000000000
--- a/multimedia/freevo/files/patch-local_conf.py.example
+++ /dev/null
@@ -1,61 +0,0 @@
---- local_conf.py.example Mon Jan 24 00:04:02 2005
-+++ local_conf.py.example Tue Sep 20 20:24:12 2005
-@@ -92,6 +92,15 @@
- # ENABLE_SHUTDOWN_SYS = 0
-
- #
-+# FreeBSD shutdown-specific options.
-+#
-+# SHUTDOWN_SYS_CMD = '/sbin/shutdown -p now'
-+# RESTART_SYS_CMD = '/sbin/shutdown -r now'
-+#
-+# You might consider installing sudo and having:
-+# SHUTDOWN_SYS_CMD = '/usr/local/bin/sudo /sbin/...'
-+
-+#
- # You can add more keybindings by adding them to the correct hash.
- # e.g. If you want to send 'contrast -100' to mplayer by pressing the '1' key,
- # just add the following line:
-@@ -126,6 +135,7 @@
- # Freevo can write to.
- #
- # OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs')
-+OVERLAY_DIR = os.path.join(FREEVO_CACHEDIR, 'vfs')
-
- #
- # Umask setting for all files.
-@@ -133,6 +143,7 @@
- # installation with different users, set this to 002
- #
- # UMASK = 022
-+UMASK = 002
-
- #
- # Suffix for playlist files
-@@ -195,6 +206,18 @@
- # Enable this for joystick support:
- # plugin.activate('joy')
-
-+#
-+# Extra FreeBSD default plugins (all detailed on the Freevo Wiki's
-+# PluginInfo page):
-+plugin.activate('idlebar')
-+#plugin.activate('idlebar.mail')
-+plugin.activate('idlebar.tv')
-+#plugin.activate('idlebar.weather', level=30, args=('CODE'))
-+plugin.activate('idlebar.clock')
-+plugin.activate('idlebar.cdstatus')
-+plugin.activate('idlebar.holidays')
-+plugin.activate('idlebar.sensors')
-+
- # ======================================================================
- # Freevo directory settings:
- # ======================================================================
-@@ -231,6 +254,7 @@
- # Smart sorting ignores the word "The" in item names.
- #
- # DIRECTORY_SMART_SORT = 0
-+DIRECTORY_SMART_SORT = 1
-
- #
- # Should Freevo autoplay an item if only one item is in the directory?
diff --git a/multimedia/freevo/files/patch-src-plugins-autoshutdown.py b/multimedia/freevo/files/patch-src-plugins-autoshutdown.py
new file mode 100644
index 000000000000..5a7f6904ecc0
--- /dev/null
+++ b/multimedia/freevo/files/patch-src-plugins-autoshutdown.py
@@ -0,0 +1,11 @@
+--- src/plugins/autoshutdown.py.orig 2008-03-22 07:42:02.000000000 -0400
++++ src/plugins/autoshutdown.py 2009-01-13 21:39:21.000000000 -0500
+@@ -632,7 +632,7 @@
+ @returns: True/False
+ """
+ _debug_('__is_recordserver_remote()', 2)
+- if len(glob.glob('/var/run/recordserver*.pid')) > 0:
++ if len(glob.glob('/var/run/freevo/recordserver*.pid')) > 0:
+ return False
+ elif len(glob.glob('/tmp/recordserver*.pid')) > 0:
+ return False
diff --git a/multimedia/freevo/files/patch-src-plugins-rom_drives.py b/multimedia/freevo/files/patch-src-plugins-rom_drives.py
deleted file mode 100644
index 2ac0b75496e8..000000000000
--- a/multimedia/freevo/files/patch-src-plugins-rom_drives.py
+++ /dev/null
@@ -1,11 +0,0 @@
---- src/plugins/rom_drives.py.orig Sun Oct 16 18:18:49 2005
-+++ src/plugins/rom_drives.py Sun Feb 26 17:59:30 2006
-@@ -70,7 +70,7 @@
- # FreeBSD ioctls - there is no CDROM.py...
- CDIOCEJECT = 0x20006318
- CDIOCCLOSE = 0x2000631c
-- CDIOREADTOCENTRYS = 0xc0086305
-+ CDIOREADTOCENTRYS = -1073192187
- CD_LBA_FORMAT = 1
- CD_MSF_FORMAT = 2
- CDS_NO_DISC = 1
diff --git a/multimedia/freevo/files/patch-src-www-configlib.py b/multimedia/freevo/files/patch-src-www-configlib.py
new file mode 100644
index 000000000000..f1a6ed1658ab
--- /dev/null
+++ b/multimedia/freevo/files/patch-src-www-configlib.py
@@ -0,0 +1,11 @@
+--- src/www/configlib.py.orig 2008-02-21 15:49:20.000000000 -0500
++++ src/www/configlib.py 2009-01-13 21:39:28.000000000 -0500
+@@ -53,7 +53,7 @@
+ """
+ get pid of running 'name'
+ """
+- for fname in ('/var/run/' + name + '-%s.pid' % os.getuid(),
++ for fname in ('/var/run/freevo/' + name + '-%s.pid' % os.getuid(),
+ '/tmp/' + name + '-%s.pid' % os.getuid()):
+ if os.path.isfile(fname):
+ f = open(fname)
diff --git a/multimedia/freevo/files/pkg-deinstall.in b/multimedia/freevo/files/pkg-deinstall.in
new file mode 100644
index 000000000000..d805488a3d06
--- /dev/null
+++ b/multimedia/freevo/files/pkg-deinstall.in
@@ -0,0 +1,25 @@
+#!/bin/sh
+# warn about manually removing user/group/homedir and log/rundirs
+
+user=%%FREEVO_USER%%
+group=%%FREEVO_GROUP%%
+home=%%FREEVO_HOME%%
+
+if [ "$2" = "POST-DEINSTALL" ]; then
+ if pw usershow "$user" >/dev/null 2>&1; then
+ echo "Warning: if this is a final deinstall, remove user \"$user\" manually"
+ fi
+ if pw groupshow "$group" >/dev/null 2>&1; then
+ echo "Warning: if this is a final deinstall, remove group \"$group\" manually"
+ fi
+ if [ -d "$home" ]; then
+ echo "Warning: if this is a final deinstall, remove directory \"$home\" manually"
+ fi
+ if [ -d "/var/log/freevo" ]; then
+ echo "Warning: if this is a final deinstall, remove directory \"/var/log/freevo\" manually"
+ fi
+ if [ -d "/var/run/freevo" ]; then
+ echo "Warning: if this is a final deinstall, remove directory \"/var/run/freevo\" manually"
+ fi
+fi
+
diff --git a/multimedia/freevo/files/pkg-install.in b/multimedia/freevo/files/pkg-install.in
new file mode 100644
index 000000000000..6449b1e4ab10
--- /dev/null
+++ b/multimedia/freevo/files/pkg-install.in
@@ -0,0 +1,51 @@
+#!/bin/sh
+# create freevo user/group/homedir and log/rundirs
+
+user=%%FREEVO_USER%%
+group=%%FREEVO_GROUP%%
+uid=%%FREEVO_UID%%
+gid=%%FREEVO_GID%%
+home=%%FREEVO_HOME%%
+
+export PATH=/bin:/usr/bin:/sbin:/usr/sbin
+
+if [ "$1" = "PRE-INSTALL" ]; then
+ if pw groupshow "$group" 2>/dev/null; then
+ echo "You already have a group \"$group\", so I will use it."
+ else
+ echo "Creating group \"$group\"..."
+ pw groupadd $group -g $gid || exit 1
+ fi
+
+ if pw usershow "$user" 2>/dev/null; then
+ echo "You already have a user \"$user\", so I will use it."
+ else
+ echo "Creating user \"$user\"..."
+ pw useradd $user -u $uid -g $group -d $home -s /bin/sh \
+ -c "Freevo Owner" || exit 1
+ fi
+
+ if [ -d "$home" ]; then
+ echo "You already have a freevo home directory \"$home\", so I will use it."
+ else
+ echo "Creating freevo home directory \"$home\"..."
+ mkdir -p $home
+ chown $user:$group $home
+ fi
+
+ if [ -d "/var/log/freevo" ]; then
+ echo "You already have a freevo log directory \"/var/log/freevo\", so I will use it."
+ else
+ echo "Creating freevo log directory \"/var/log/freevo\"..."
+ mkdir -p /var/log/freevo
+ chown $user:$group /var/log/freevo
+ fi
+
+ if [ -d "/var/run/freevo" ]; then
+ echo "You already have a freevo log directory \"/var/run/freevo\", so I will use it."
+ else
+ echo "Creating freevo run directory \"/var/run/freevo\"..."
+ mkdir -p /var/run/freevo
+ chown $user:$group /var/run/freevo
+ fi
+fi
diff --git a/multimedia/freevo/files/pkg-message.in b/multimedia/freevo/files/pkg-message.in
index 3ecc09ee5fdf..64e394928e91 100644
--- a/multimedia/freevo/files/pkg-message.in
+++ b/multimedia/freevo/files/pkg-message.in
@@ -3,21 +3,39 @@
Freevo is now installed. It might be a good idea to read the docs
in %%PREFIX%%/share/doc/freevo-%%PORTVERSION%%
- By default Freevo is configured with a single VFS in /var/db/cache.
- You can use this by adding users to the freevo group.
-
- To get up and running quickly try: freevo setup && freevo --help
+***********************************************************************
- Freevo can be configured to start on boot by using the sample
- startup script in %%PREFIX%%/etc/rc.d/freevo.sh.sample
+ You will need to ensure that the directory %%FREEVO_HOME%%/tv is on
+ a filesystem with lots of space. The default location may not be
+ adequate. One possibility is to create a freevo TV directory on a
+ suitable filesystem, then create a symlink to it from %%FREEVO_HOME%%/tv.
***********************************************************************
- IMPORTANT: Freevo requires procfs to be mounted on /proc. You can
- do this by adding the following entry to your /etc/fstab:
+ Freevo requires procfs to be mounted on /proc. You can do this by
+ adding the following entry to your /etc/fstab:
+
+ proc /proc procfs rw 0 0
- proc /proc procfs rw 1 1
+ Without this freevo will not shut down correctly.
+
+***********************************************************************
- WITHOUT THIS FREEVO WILL NOT SHUT DOWN CORRECTLY!
+ To get freevo up and running copy and edit:
+ %%PREFIX%%/etc/freevo/local_conf.py.example
+ then:
+ su freevo
+ freevo setup
+ freevo start recordserver
+ freevo start
+ and also:
+ freevo --help
+
+ Freevo can be configured to start on boot by setting the following
+ variables in /etc/rc.conf:
+ freevo_enable="YES" enables Freevo subsystem
+ freevo_recordserver_enable="YES" starts record server
+ freevo_webserver_enable="YES" starts record server
+ freevo_gui_enable="YES" starts Freevo GUI
***********************************************************************
diff --git a/multimedia/freevo/pkg-deinstall b/multimedia/freevo/pkg-deinstall
deleted file mode 100644
index 1bda690cc381..000000000000
--- a/multimedia/freevo/pkg-deinstall
+++ /dev/null
@@ -1,64 +0,0 @@
-#!/bin/sh
-# Stolen from mail/nullmailer
-
-user=freevo
-group=freevo
-home=/var/db/freevo
-
-ask() {
- local question default answer
-
- question=$1
- default=$2
- if [ -z "${PACKAGE_BUILDING}" ]; then
- read -p "${question} [${default}]? " answer
- fi
- if [ x${answer} = x ]; then
- answer=${default}
- fi
- echo ${answer}
-}
-
-yesno() {
- local dflt question answer
-
- question=$1
- dflt=$2
- while :; do
- answer=$(ask "${question}" "${dflt}")
- case "${answer}" in
- [Yy]*) return 0;;
- [Nn]*) return 1;;
- esac
- echo "Please answer yes or no."
- done
-}
-
-delete_account() {
- local u g home
-
- u=$1
- g=$2
- if yesno "Do you want me to remove group \"${g}\"" y; then
- pw groupdel -n ${g}
- echo "Done."
- fi
- if yesno "Do you want me to remove user \"${u}\"" y; then
- pw userdel -n ${u}
- echo "Done."
- fi
-}
-
-delete_home() {
- if [ -d ${home} ]; then
- if yesno "Do you want me to remove your Freevo cache \"${home}\"" n; then
- rm -rf ${home}
- echo "Done."
- fi
- fi
-}
-
-if [ x"$2" = xPOST-DEINSTALL ]; then
- delete_account ${user} ${group};
- delete_home;
-fi
diff --git a/multimedia/freevo/pkg-descr b/multimedia/freevo/pkg-descr
index a44592d390a9..fb5fc496a20d 100644
--- a/multimedia/freevo/pkg-descr
+++ b/multimedia/freevo/pkg-descr
@@ -13,3 +13,4 @@ Python programming language which is very well suited for high-level
control applications like Freevo.
WWW: http://freevo.sourceforge.net/
+WWW: http://opal.com/jr/freebsd/ports/multimedia/freevo/
diff --git a/multimedia/freevo/pkg-install b/multimedia/freevo/pkg-install
deleted file mode 100644
index 921cd7c6ae21..000000000000
--- a/multimedia/freevo/pkg-install
+++ /dev/null
@@ -1,95 +0,0 @@
-#!/bin/sh
-# Stolen by lewiz from mail/nullmailer
-
-user=freevo
-group=freevo
-uid=523
-gid=523
-home=/var/db/freevo
-perm=775
-
-ask() {
- local question default answer
-
- question=$1
- default=$2
- if [ -z "${PACKAGE_BUILDING}" ]; then
- read -p "${question} [${default}]? " answer
- fi
- if [ x${answer} = x ]; then
- answer=${default}
- fi
- echo ${answer}
-}
-
-yesno() {
- local dflt question answer
-
- question=$1
- dflt=$2
- while :; do
- answer=$(ask "${question}" "${dflt}")
- case "${answer}" in
- [Yy]*) return 0;;
- [Nn]*) return 1;;
- esac
- echo "Please answer yes or no."
- done
-}
-
-creategroup() {
- if /usr/sbin/pw groupshow "${group}" 2>/dev/null; then
- echo "You already have a group \"${group}\", so I will use it."
- else
- echo "You need a group \"${group}\"."
- if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
- /usr/sbin/pw groupadd ${group} -g ${gid} || exit
- echo "Done."
- else
- echo "Please create it, and try again."
- exit 1
- fi
- fi
-}
-
-createuser() {
- if /usr/sbin/pw user show "${user}" 2>/dev/null; then
- echo "You already have a user \"${user}\", so I will use it."
- pw usermod "${user}" -d ${home}
- else
- echo "You need a user \"${user}\"."
- if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
- /usr/sbin/pw useradd ${user} -u ${uid} -g ${group} -d ${home} \
- -s /bin/sh -c "Freevo Owner" || exit
- echo "Done."
- else
- echo "Please create it, and try again."
- exit 1
- fi
- fi
-}
-
-createhome() {
- if [ -d ${home} ]; then
- echo "You already have a cache directory \"${home}\", so I will use it."
- chown ${user}:${group} ${home} # Should we recurse?
- chmod ${perm} ${home} # Should we recurse?
- else
- echo "You need a cache directory \"${home}\"."
- if ([ -n "$BATCH" ] || yesno "Would you like me to create it" y); then
- mkdir ${home}
- chown ${user}:${group} ${home}
- chmod ${perm} ${home}
- echo "Done."
- else
- echo "Please create it, and try again."
- exit 1
- fi
- fi
-}
-
-if [ x"$1" = xPRE-INSTALL ]; then
- creategroup;
- createuser;
- createhome;
-fi
diff --git a/multimedia/freevo/pkg-plist b/multimedia/freevo/pkg-plist
index ef3207ad17e2..3754de7a7103 100644
--- a/multimedia/freevo/pkg-plist
+++ b/multimedia/freevo/pkg-plist
@@ -1,6 +1,5 @@
bin/freevo
etc/freevo/local_conf.py.example
-etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/__init__.pyo
@@ -37,6 +36,15 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/album_tree.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/apodcast.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/audioscrobbler.pyo
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/cdbackup.pyo
@@ -49,24 +57,48 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/detachbar.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/freevo_scrobbler.pyo
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/fxmms.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lastfm2.pyo
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/logger.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/lyrics.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_playlist.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpd_status.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mpdclient2.pyo
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayer.pyo
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.py
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.pyc
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervbr.pyo
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.py
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.pyc
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis.pyo
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.py
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.pyc
-%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlist.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis1.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/mplayervis2.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/musicip.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/playlists.pyo
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/radio.pyo
@@ -79,18 +111,57 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.py
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyc
%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xine.pyo
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.py
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.pyc
+%%PYTHON_SITELIBDIR%%/freevo/audio/plugins/xmradio.pyo
%%PYTHON_SITELIBDIR%%/freevo/childapp.py
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyc
%%PYTHON_SITELIBDIR%%/freevo/childapp.pyo
+%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.py
+%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.pyc
+%%PYTHON_SITELIBDIR%%/freevo/commdetectcore.pyo
%%PYTHON_SITELIBDIR%%/freevo/config.py
%%PYTHON_SITELIBDIR%%/freevo/config.pyc
%%PYTHON_SITELIBDIR%%/freevo/config.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/dialogs.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/display.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/display.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/display.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/osd_display.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/tiny_xosd_display.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/plugins/x11_overlay_display.pyo
+%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.py
+%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.pyc
+%%PYTHON_SITELIBDIR%%/freevo/dialog/widgets.pyo
%%PYTHON_SITELIBDIR%%/freevo/directory.py
%%PYTHON_SITELIBDIR%%/freevo/directory.pyc
%%PYTHON_SITELIBDIR%%/freevo/directory.pyo
+%%PYTHON_SITELIBDIR%%/freevo/encodingcore.py
+%%PYTHON_SITELIBDIR%%/freevo/encodingcore.pyc
+%%PYTHON_SITELIBDIR%%/freevo/encodingcore.pyo
+%%PYTHON_SITELIBDIR%%/freevo/evdev.py
+%%PYTHON_SITELIBDIR%%/freevo/evdev.pyc
+%%PYTHON_SITELIBDIR%%/freevo/evdev.pyo
%%PYTHON_SITELIBDIR%%/freevo/event.py
%%PYTHON_SITELIBDIR%%/freevo/event.pyc
%%PYTHON_SITELIBDIR%%/freevo/event.pyo
+%%PYTHON_SITELIBDIR%%/freevo/evfallback.py
+%%PYTHON_SITELIBDIR%%/freevo/evfallback.pyc
+%%PYTHON_SITELIBDIR%%/freevo/evfallback.pyo
%%PYTHON_SITELIBDIR%%/freevo/fxditem.py
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyc
%%PYTHON_SITELIBDIR%%/freevo/fxditem.pyo
@@ -190,24 +261,42 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.py
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyc
%%PYTHON_SITELIBDIR%%/freevo/gui/exceptions.pyo
+%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.py
+%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.pyc
+%%PYTHON_SITELIBDIR%%/freevo/gui/sounds.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/audioscrobbler-errors.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/cache.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/commdetectserver.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_config.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/convert_favorites.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/daemon.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/encodingserver.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/imdb.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/install.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/makelinuxevent.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/makelircrc.pyo
@@ -217,6 +306,12 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/makestationlist.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/mkimagemrss.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/passwd.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/plugins.pyo
@@ -226,12 +321,21 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/remote.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/rssserver.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/schedulefavorites.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/svgtodialog.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/tv_grab.pyo
+%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.py
+%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.pyc
+%%PYTHON_SITELIBDIR%%/freevo/helpers/vg.pyo
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.py
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyc
%%PYTHON_SITELIBDIR%%/freevo/helpers/vtrelease.pyo
@@ -250,6 +354,9 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.py
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyc
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/apod.pyo
+%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.py
+%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.pyc
+%%PYTHON_SITELIBDIR%%/freevo/image/plugins/flickr.pyo
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.py
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyc
%%PYTHON_SITELIBDIR%%/freevo/image/plugins/gphoto.pyo
@@ -259,6 +366,9 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/item.py
%%PYTHON_SITELIBDIR%%/freevo/item.pyc
%%PYTHON_SITELIBDIR%%/freevo/item.pyo
+%%PYTHON_SITELIBDIR%%/freevo/linuxevent.py
+%%PYTHON_SITELIBDIR%%/freevo/linuxevent.pyc
+%%PYTHON_SITELIBDIR%%/freevo/linuxevent.pyo
%%PYTHON_SITELIBDIR%%/freevo/main.py
%%PYTHON_SITELIBDIR%%/freevo/main.pyc
%%PYTHON_SITELIBDIR%%/freevo/main.pyo
@@ -277,15 +387,36 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/alsamixer2.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/autocolor.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autoshutdown.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/autostart.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/buttonbar.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/cd_burn.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/command.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/df.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/ejectromdrives.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/file_ops.pyo
@@ -295,9 +426,15 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/freevoscreensaver.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/freevused.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/headlines.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/home_automation.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/icecast.pyo
@@ -307,60 +444,168 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/cdstatus.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/diskfree.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/encoding.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/holidays.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/mail.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/progactive.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/remindicon.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/sixvolume.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/system.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/transcode.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/tv.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/volume.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar/weather.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/itv.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/joy.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/lcd2.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/mediamenu.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/mixer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/mpd.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/newevents.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/oneclick.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/ossmixer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/processevent.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/remind.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/rom_drives.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/balls.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver/bouncing_freevo.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/shoppingcart.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/shutdown.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/sixmixer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/speak.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_osd.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/tiny_xosd.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/udpremote.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/usb.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/usbstorage.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/vfd.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/weatherdata.pyo
+%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.py
+%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.pyc
+%%PYTHON_SITELIBDIR%%/freevo/plugins/wiimote.pyo
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.py
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyc
%%PYTHON_SITELIBDIR%%/freevo/plugins/yac.pyo
+%%PYTHON_SITELIBDIR%%/freevo/pylcd.py
+%%PYTHON_SITELIBDIR%%/freevo/pylcd.pyc
+%%PYTHON_SITELIBDIR%%/freevo/pylcd.pyo
%%PYTHON_SITELIBDIR%%/freevo/rc.py
%%PYTHON_SITELIBDIR%%/freevo/rc.pyc
%%PYTHON_SITELIBDIR%%/freevo/rc.pyo
+%%PYTHON_SITELIBDIR%%/freevo/revision.py
+%%PYTHON_SITELIBDIR%%/freevo/revision.pyc
+%%PYTHON_SITELIBDIR%%/freevo/revision.pyo
+%%PYTHON_SITELIBDIR%%/freevo/rssfeed.py
+%%PYTHON_SITELIBDIR%%/freevo/rssfeed.pyc
+%%PYTHON_SITELIBDIR%%/freevo/rssfeed.pyo
+%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.py
+%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.pyc
+%%PYTHON_SITELIBDIR%%/freevo/rssperiodic.pyo
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.py
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyc
%%PYTHON_SITELIBDIR%%/freevo/setup_freevo.pyo
-%%PYTHON_SITELIBDIR%%/freevo/skin.py
-%%PYTHON_SITELIBDIR%%/freevo/skin.pyc
-%%PYTHON_SITELIBDIR%%/freevo/skin.pyo
+%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.py
+%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.pyc
+%%PYTHON_SITELIBDIR%%/freevo/sitecustomize.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skin/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skin/models.py
+%%PYTHON_SITELIBDIR%%/freevo/skin/models.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skin/models.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.py
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/scrollabletext_screen.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.py
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skin/widgets/textentry_screen.pyo
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/__init__.pyo
@@ -370,6 +615,9 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/area.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/buttongroup_area.pyo
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/default_areas.pyo
@@ -385,9 +633,15 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/screen.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/scrollabletext_area.pyo
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/skin_utils.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/main/textentry_area.pyo
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/tvlisting_area.pyo
@@ -397,6 +651,15 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.py
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/main/xml_skin.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/skin.pyo
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.py
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.pyc
+%%PYTHON_SITELIBDIR%%/freevo/skins/osd/xml.pyo
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/skins/plugins/__init__.pyo
@@ -415,6 +678,9 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.py
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/epg_xmltv.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/favoriteitem.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.py
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/freq.pyo
@@ -424,9 +690,42 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/comms.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/live_pause.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/manager.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/record.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/ring_buffer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/rwlock.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer/vlc_live_pause.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/freeboxtv.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/generic_record.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/genre.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_directv.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/irsend_echostar.pyo
@@ -436,36 +735,99 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_record.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/ivtv_xine_tv.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/chunk_buffer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/controllers.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/base.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/dialogs.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/graphics.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display/text.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/events.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/fillers.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/players.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/record.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/ring_buffer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/rwlock.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/test.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/testosd.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/manual_record.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/mplayer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/recordings_manager.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/scheduled_recordings.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/search_programs.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/tvtime.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/upsoon.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/vbi2srt_record.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_favorites.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_line_in.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/view_recordings.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xawtv.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.py
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/plugins/xine.pyo
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.py
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.pyc
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_display.pyo
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.py
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.pyc
-%%PYTHON_SITELIBDIR%%/freevo/tv/program_search.pyo
+%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.py
+%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.pyc
+%%PYTHON_SITELIBDIR%%/freevo/tv/programitem.pyo
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.py
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyc
%%PYTHON_SITELIBDIR%%/freevo/tv/record_client.pyo
@@ -496,6 +858,12 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.py
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyc
%%PYTHON_SITELIBDIR%%/freevo/util/amazon.pyo
+%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.py
+%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.pyc
+%%PYTHON_SITELIBDIR%%/freevo/util/audioscrobbler.pyo
+%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.py
+%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.pyc
+%%PYTHON_SITELIBDIR%%/freevo/util/benchmark.pyo
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.py
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyc
%%PYTHON_SITELIBDIR%%/freevo/util/dbutil.pyo
@@ -508,6 +876,9 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.py
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyc
%%PYTHON_SITELIBDIR%%/freevo/util/extendedmeta.pyo
+%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.py
+%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.pyc
+%%PYTHON_SITELIBDIR%%/freevo/util/feedparser.pyo
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.py
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyc
%%PYTHON_SITELIBDIR%%/freevo/util/fileops.pyo
@@ -550,30 +921,69 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.py
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyc
%%PYTHON_SITELIBDIR%%/freevo/util/videothumb.pyo
+%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.py
+%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.pyc
+%%PYTHON_SITELIBDIR%%/freevo/util/youtube_dl.pyo
%%PYTHON_SITELIBDIR%%/freevo/version.py
%%PYTHON_SITELIBDIR%%/freevo/version.pyc
%%PYTHON_SITELIBDIR%%/freevo/version.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.py
+%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/commdetectclient.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/configure.py
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/configure.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.py
+%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/encodingclient.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.py
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/fxdhandler.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/applelib.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/appletrailers.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bilingual.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bmovl.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/bookmarker.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/cinemovies_trailers.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/details.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdbackup.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdcopy.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/dvdimage.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fillscreen.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/filmaffinity.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/fxdarchive.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/imdb.pyo
@@ -583,93 +993,141 @@ etc/rc.d/freevo.sh.sample
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mover.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/moviecovers.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/mplayer_autoaspect.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode-old.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/reencode.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/removecommercials.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtve.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/rtvelib.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vlc.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/vpodcast.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wikisubtitles.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/wwitv.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.py
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/xine_info.pyo
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.py
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.pyc
+%%PYTHON_SITELIBDIR%%/freevo/video/plugins/youtube.pyo
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.py
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyc
%%PYTHON_SITELIBDIR%%/freevo/video/videoitem.pyo
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.py
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyc
%%PYTHON_SITELIBDIR%%/freevo/www/__init__.pyo
+%%PYTHON_SITELIBDIR%%/freevo/www/configlib.py
+%%PYTHON_SITELIBDIR%%/freevo/www/configlib.pyc
+%%PYTHON_SITELIBDIR%%/freevo/www/configlib.pyo
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.py
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyc
%%PYTHON_SITELIBDIR%%/freevo/www/wap_types.pyo
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.py
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyc
%%PYTHON_SITELIBDIR%%/freevo/www/web_types.pyo
-%%PORTDOCS%%%%DOCSDIR%%/COPYING
-%%PORTDOCS%%%%DOCSDIR%%/CREDITS
-%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
-%%PORTDOCS%%%%DOCSDIR%%/INSTALL
-%%PORTDOCS%%%%DOCSDIR%%/README
-%%PORTDOCS%%%%DOCSDIR%%/installation/a354.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c170.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c19.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c206.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c223.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c249.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c303.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c323.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/c63.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/index.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x184.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x217.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x229.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x234.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x245.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x25.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x256.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x263.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x274.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x28.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x289.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x32.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x334.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x344.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x349.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x364.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x376.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x38.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x380.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x386.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x425.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x431.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x435.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x439.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x443.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x446.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x450.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x59.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x71.html
-%%PORTDOCS%%%%DOCSDIR%%/installation/x90.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c145.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c223.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c27.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c314.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/c50.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/index.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x105.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x109.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x153.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x187.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x200.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x211.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x219.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x232.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x245.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x276.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x301.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x33.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x36.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x41.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x55.html
-%%PORTDOCS%%%%DOCSDIR%%/plugin_writing/x69.html
+%%DOCSDIR%%/COPYING
+%%DOCSDIR%%/CREDITS
+%%DOCSDIR%%/ChangeLog
+%%DOCSDIR%%/INSTALL
+%%DOCSDIR%%/README
+%%DOCSDIR%%/RELEASE_NOTES
+%%DOCSDIR%%/installation/a353.html
+%%DOCSDIR%%/installation/c169.html
+%%DOCSDIR%%/installation/c19.html
+%%DOCSDIR%%/installation/c205.html
+%%DOCSDIR%%/installation/c222.html
+%%DOCSDIR%%/installation/c248.html
+%%DOCSDIR%%/installation/c302.html
+%%DOCSDIR%%/installation/c322.html
+%%DOCSDIR%%/installation/c63.html
+%%DOCSDIR%%/installation/index.html
+%%DOCSDIR%%/installation/x183.html
+%%DOCSDIR%%/installation/x216.html
+%%DOCSDIR%%/installation/x228.html
+%%DOCSDIR%%/installation/x233.html
+%%DOCSDIR%%/installation/x244.html
+%%DOCSDIR%%/installation/x25.html
+%%DOCSDIR%%/installation/x255.html
+%%DOCSDIR%%/installation/x262.html
+%%DOCSDIR%%/installation/x273.html
+%%DOCSDIR%%/installation/x28.html
+%%DOCSDIR%%/installation/x288.html
+%%DOCSDIR%%/installation/x32.html
+%%DOCSDIR%%/installation/x333.html
+%%DOCSDIR%%/installation/x343.html
+%%DOCSDIR%%/installation/x348.html
+%%DOCSDIR%%/installation/x363.html
+%%DOCSDIR%%/installation/x375.html
+%%DOCSDIR%%/installation/x379.html
+%%DOCSDIR%%/installation/x38.html
+%%DOCSDIR%%/installation/x385.html
+%%DOCSDIR%%/installation/x424.html
+%%DOCSDIR%%/installation/x430.html
+%%DOCSDIR%%/installation/x434.html
+%%DOCSDIR%%/installation/x438.html
+%%DOCSDIR%%/installation/x442.html
+%%DOCSDIR%%/installation/x445.html
+%%DOCSDIR%%/installation/x449.html
+%%DOCSDIR%%/installation/x59.html
+%%DOCSDIR%%/installation/x71.html
+%%DOCSDIR%%/installation/x90.html
+%%DOCSDIR%%/plugin_writing/c145.html
+%%DOCSDIR%%/plugin_writing/c223.html
+%%DOCSDIR%%/plugin_writing/c27.html
+%%DOCSDIR%%/plugin_writing/c314.html
+%%DOCSDIR%%/plugin_writing/c50.html
+%%DOCSDIR%%/plugin_writing/index.html
+%%DOCSDIR%%/plugin_writing/x105.html
+%%DOCSDIR%%/plugin_writing/x109.html
+%%DOCSDIR%%/plugin_writing/x153.html
+%%DOCSDIR%%/plugin_writing/x187.html
+%%DOCSDIR%%/plugin_writing/x200.html
+%%DOCSDIR%%/plugin_writing/x211.html
+%%DOCSDIR%%/plugin_writing/x219.html
+%%DOCSDIR%%/plugin_writing/x232.html
+%%DOCSDIR%%/plugin_writing/x245.html
+%%DOCSDIR%%/plugin_writing/x276.html
+%%DOCSDIR%%/plugin_writing/x301.html
+%%DOCSDIR%%/plugin_writing/x33.html
+%%DOCSDIR%%/plugin_writing/x36.html
+%%DOCSDIR%%/plugin_writing/x41.html
+%%DOCSDIR%%/plugin_writing/x55.html
+%%DOCSDIR%%/plugin_writing/x69.html
%%DATADIR%%/contrib/fbcon/fbset.db
%%DATADIR%%/contrib/fbcon/mgafb
+%%DATADIR%%/fonts/DejaVuSans-Oblique.ttf
+%%DATADIR%%/fonts/DejaVuSansCondensed-Oblique.ttf
+%%DATADIR%%/fonts/DejaVuSansCondensed.ttf
+%%DATADIR%%/fonts/DejaVuSansMono.ttf
+%%DATADIR%%/fonts/Sansumi-DemiBold.ttf
%%DATADIR%%/fonts/Vera.ttf
%%DATADIR%%/fonts/VeraBI.ttf
%%DATADIR%%/fonts/VeraBd.ttf
@@ -680,15 +1138,24 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/fonts/VeraMono.ttf
%%DATADIR%%/fonts/VeraSe.ttf
%%DATADIR%%/fonts/VeraSeBd.ttf
+%%DATADIR%%/fonts/ethopool.ttf
%%DATADIR%%/freevo_config.py
%%DATADIR%%/fxd/examples/german-news.fxd
%%DATADIR%%/fxd/examples/playlist.fxd
%%DATADIR%%/fxd/examples/slideshow.fxd
+%%DATADIR%%/fxd/somafm.fxd
%%DATADIR%%/fxd/webradio.fxd
+%%DATADIR%%/htdocs/config.rpy
+%%DATADIR%%/htdocs/configedit.rpy
+%%DATADIR%%/htdocs/downloadurl
%%DATADIR%%/htdocs/edit_favorite.rpy
+%%DATADIR%%/htdocs/encoding_web.rpy
+%%DATADIR%%/htdocs/favicon.ico
%%DATADIR%%/htdocs/favorites.rpy
+%%DATADIR%%/htdocs/fileinfo.rpy
%%DATADIR%%/htdocs/genre.rpy
%%DATADIR%%/htdocs/guide.rpy
+%%DATADIR%%/htdocs/guidechannel.rpy
%%DATADIR%%/htdocs/help/doc.rpy
%%DATADIR%%/htdocs/help/howto.rpy
%%DATADIR%%/htdocs/help/index.rpy
@@ -698,19 +1165,84 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/htdocs/help/wiki/faq.html
%%DATADIR%%/htdocs/help/wiki/recording.html
%%DATADIR%%/htdocs/iceslistchanger.rpy
+%%DATADIR%%/htdocs/icons/back.png
+%%DATADIR%%/htdocs/icons/button_ok.png
+%%DATADIR%%/htdocs/icons/down.png
+%%DATADIR%%/htdocs/icons/forward.png
+%%DATADIR%%/htdocs/icons/gohome.png
+%%DATADIR%%/htdocs/icons/help.png
+%%DATADIR%%/htdocs/icons/player_eject.png
+%%DATADIR%%/htdocs/icons/player_end.png
+%%DATADIR%%/htdocs/icons/player_fwd.png
+%%DATADIR%%/htdocs/icons/player_pause.png
+%%DATADIR%%/htdocs/icons/player_play.png
+%%DATADIR%%/htdocs/icons/player_playlist.png
+%%DATADIR%%/htdocs/icons/player_rew.png
+%%DATADIR%%/htdocs/icons/player_start.png
+%%DATADIR%%/htdocs/icons/player_stop.png
+%%DATADIR%%/htdocs/icons/previous.png
+%%DATADIR%%/htdocs/icons/redo.png
+%%DATADIR%%/htdocs/icons/reload.png
+%%DATADIR%%/htdocs/icons/reload3.png
+%%DATADIR%%/htdocs/icons/reload_all_tabs.png
+%%DATADIR%%/htdocs/icons/reload_page.png
+%%DATADIR%%/htdocs/icons/rotate.png
+%%DATADIR%%/htdocs/icons/rotate_ccw.png
+%%DATADIR%%/htdocs/icons/rotate_cw.png
+%%DATADIR%%/htdocs/icons/start.png
+%%DATADIR%%/htdocs/icons/up.png
%%DATADIR%%/htdocs/images/attention.gif
%%DATADIR%%/htdocs/images/bg.gif
+%%DATADIR%%/htdocs/images/config/auto.png
+%%DATADIR%%/htdocs/images/config/down-16px.png
+%%DATADIR%%/htdocs/images/config/down.png
+%%DATADIR%%/htdocs/images/config/error-16px.png
+%%DATADIR%%/htdocs/images/config/folder-16px.png
+%%DATADIR%%/htdocs/images/config/folder-new.png
+%%DATADIR%%/htdocs/images/config/folder.png
+%%DATADIR%%/htdocs/images/config/left-16px.png
+%%DATADIR%%/htdocs/images/config/left.png
+%%DATADIR%%/htdocs/images/config/menu_toplevel_hover.png
+%%DATADIR%%/htdocs/images/config/off-16px.png
+%%DATADIR%%/htdocs/images/config/on-16px.png
+%%DATADIR%%/htdocs/images/config/right-16px.png
+%%DATADIR%%/htdocs/images/config/right.png
+%%DATADIR%%/htdocs/images/config/up-16px.png
+%%DATADIR%%/htdocs/images/config/up.png
+%%DATADIR%%/htdocs/images/config/warning-16px.png
%%DATADIR%%/htdocs/images/freevoheader2.jpg
+%%DATADIR%%/htdocs/images/freevoheader2.png
%%DATADIR%%/htdocs/images/headerfreevo.jpg
%%DATADIR%%/htdocs/images/headertxtbg.png
%%DATADIR%%/htdocs/images/icon-info.gif
+%%DATADIR%%/htdocs/images/library/folder.png
+%%DATADIR%%/htdocs/images/library/images.png
+%%DATADIR%%/htdocs/images/library/images_small.png
%%DATADIR%%/htdocs/images/library/library-images.jpg
%%DATADIR%%/htdocs/images/library/library-movies.jpg
%%DATADIR%%/htdocs/images/library/library-music.jpg
%%DATADIR%%/htdocs/images/library/library-tv.jpg
+%%DATADIR%%/htdocs/images/library/movies.png
+%%DATADIR%%/htdocs/images/library/movies_small.png
+%%DATADIR%%/htdocs/images/library/music.png
+%%DATADIR%%/htdocs/images/library/music_small.png
+%%DATADIR%%/htdocs/images/library/recorded.png
+%%DATADIR%%/htdocs/images/library/recorded_small.png
+%%DATADIR%%/htdocs/images/library/television_keep.png
+%%DATADIR%%/htdocs/images/library/television_unwatched.png
+%%DATADIR%%/htdocs/images/library/television_watched.png
+%%DATADIR%%/htdocs/images/library/www-mp-movies.png
+%%DATADIR%%/htdocs/images/library/www-mp-music.png
+%%DATADIR%%/htdocs/images/library/www-mp-pictures.png
+%%DATADIR%%/htdocs/images/library/www-mp-tv.png
%%DATADIR%%/htdocs/images/logo_200x100.png
%%DATADIR%%/htdocs/images/moin-www.gif
%%DATADIR%%/htdocs/images/pix.gif
+%%DATADIR%%/htdocs/images/sb_anchor_spacer.gif
+%%DATADIR%%/htdocs/images/sb_closelabel.gif
+%%DATADIR%%/htdocs/images/sb_loading.gif
+%%DATADIR%%/htdocs/images/sb_nextlabel.gif
+%%DATADIR%%/htdocs/images/sb_prevlabel.gif
%%DATADIR%%/htdocs/images/smile.gif
%%DATADIR%%/htdocs/images/tab/left.gif
%%DATADIR%%/htdocs/images/tab/left_on.gif
@@ -718,14 +1250,44 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/htdocs/images/tab/right_on.gif
%%DATADIR%%/htdocs/index.rpy
%%DATADIR%%/htdocs/library.rpy
+%%DATADIR%%/htdocs/library1.rpy
%%DATADIR%%/htdocs/manualrecord.rpy
+%%DATADIR%%/htdocs/pluginconfig.rpy
%%DATADIR%%/htdocs/proginfo.rpy
%%DATADIR%%/htdocs/record.rpy
+%%DATADIR%%/htdocs/scripts/browsefile.js
+%%DATADIR%%/htdocs/scripts/config.js
+%%DATADIR%%/htdocs/scripts/display_info-head.js
%%DATADIR%%/htdocs/scripts/display_prog-head.js
+%%DATADIR%%/htdocs/scripts/encoding_web.js
+%%DATADIR%%/htdocs/scripts/guidechannel.js
+%%DATADIR%%/htdocs/scripts/pluginconfig.js
+%%DATADIR%%/htdocs/scripts/viewlogfile.js
+%%DATADIR%%/htdocs/scripts/youtube.js
%%DATADIR%%/htdocs/search.rpy
+%%DATADIR%%/htdocs/styles/config.css
+%%DATADIR%%/htdocs/styles/guidechannel.css
%%DATADIR%%/htdocs/styles/main.css
+%%DATADIR%%/htdocs/styles/pluginconfig.css
+%%DATADIR%%/htdocs/styles/slimbox_ex.css
+%%DATADIR%%/htdocs/styles/viewlogfile.css
+%%DATADIR%%/htdocs/styles/youtube.css
+%%DATADIR%%/htdocs/videolan/Bs_FormUtil.lib.js
+%%DATADIR%%/htdocs/videolan/Bs_Slider.class.js
+%%DATADIR%%/htdocs/videolan/EventHandler.js
+%%DATADIR%%/htdocs/videolan/LibCrossBrowser.js
+%%DATADIR%%/htdocs/videolan/img/horizontal_background.gif
+%%DATADIR%%/htdocs/videolan/img/horizontal_backgroundLeft.gif
+%%DATADIR%%/htdocs/videolan/img/horizontal_backgroundRight.gif
+%%DATADIR%%/htdocs/videolan/img/horizontal_knob.gif
+%%DATADIR%%/htdocs/videolan/vlc_funcs.js
+%%DATADIR%%/htdocs/videolan/vlc_init.js
+%%DATADIR%%/htdocs/viewlogfile.rpy
+%%DATADIR%%/htdocs/vlcwin.rpy
%%DATADIR%%/htdocs/wap_login.rpy
%%DATADIR%%/htdocs/wap_rec.rpy
+%%DATADIR%%/htdocs/webremote.rpy
+%%DATADIR%%/htdocs/youtube.rpy
%%DATADIR%%/icons/holidays/christmas.png
%%DATADIR%%/icons/holidays/freevo_bday.png
%%DATADIR%%/icons/holidays/ghost.png
@@ -733,13 +1295,21 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/holidays/snowman.png
%%DATADIR%%/icons/holidays/usa_flag.png
%%DATADIR%%/icons/holidays/valentine.png
+%%DATADIR%%/icons/misc/bluebutton.png
%%DATADIR%%/icons/misc/case.png
%%DATADIR%%/icons/misc/cdrom_mount.png
+%%DATADIR%%/icons/misc/chartpie.png
%%DATADIR%%/icons/misc/clock.png
%%DATADIR%%/icons/misc/cpu.png
%%DATADIR%%/icons/misc/freevo_app.png
+%%DATADIR%%/icons/misc/greenbutton.png
%%DATADIR%%/icons/misc/memory.png
%%DATADIR%%/icons/misc/osd_busy.png
+%%DATADIR%%/icons/misc/radio.png
+%%DATADIR%%/icons/misc/redbutton.png
+%%DATADIR%%/icons/misc/reminder_off.png
+%%DATADIR%%/icons/misc/reminder_on.png
+%%DATADIR%%/icons/misc/yellowbutton.png
%%DATADIR%%/icons/popup/popup_alert.png
%%DATADIR%%/icons/popup/popup_wait.png
%%DATADIR%%/icons/popup/popup_warn.png
@@ -750,16 +1320,57 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/status/cd_photo.png
%%DATADIR%%/icons/status/cd_rip.png
%%DATADIR%%/icons/status/cd_video.png
+%%DATADIR%%/icons/status/check.png
+%%DATADIR%%/icons/status/copy_to_hdd.png
+%%DATADIR%%/icons/status/cross.png
+%%DATADIR%%/icons/status/diskfree-bad.png
+%%DATADIR%%/icons/status/diskfree-good.png
+%%DATADIR%%/icons/status/diskfree-poor.png
+%%DATADIR%%/icons/status/diskfree.png
+%%DATADIR%%/icons/status/enc_audio.png
+%%DATADIR%%/icons/status/enc_background.png
+%%DATADIR%%/icons/status/enc_leftclamp.png
+%%DATADIR%%/icons/status/enc_multiplex.png
+%%DATADIR%%/icons/status/enc_nojobs.png
+%%DATADIR%%/icons/status/enc_notrunning.png
+%%DATADIR%%/icons/status/enc_rightclamp.png
+%%DATADIR%%/icons/status/enc_video.png
+%%DATADIR%%/icons/status/enc_video1.png
+%%DATADIR%%/icons/status/enc_video2.png
+%%DATADIR%%/icons/status/enc_video3.png
+%%DATADIR%%/icons/status/encode_1.png
+%%DATADIR%%/icons/status/encode_2.png
+%%DATADIR%%/icons/status/encode_3.png
+%%DATADIR%%/icons/status/encode_audio.png
+%%DATADIR%%/icons/status/encode_clamp.png
+%%DATADIR%%/icons/status/encode_video.png
+%%DATADIR%%/icons/status/encoding_bar.png
+%%DATADIR%%/icons/status/encoding_box.png
%%DATADIR%%/icons/status/newmail_active.png
%%DATADIR%%/icons/status/newmail_active_small.png
%%DATADIR%%/icons/status/newmail_dimmed.png
+%%DATADIR%%/icons/status/series_keep.png
+%%DATADIR%%/icons/status/series_keep_watched.png
+%%DATADIR%%/icons/status/series_unwatched.png
+%%DATADIR%%/icons/status/series_watched.png
%%DATADIR%%/icons/status/television_active.png
%%DATADIR%%/icons/status/television_expired.png
%%DATADIR%%/icons/status/television_inactive.png
+%%DATADIR%%/icons/status/television_keep.png
+%%DATADIR%%/icons/status/television_keep_watched.png
%%DATADIR%%/icons/status/television_near_expired.png
+%%DATADIR%%/icons/status/television_unwatched.png
+%%DATADIR%%/icons/status/television_watched.png
+%%DATADIR%%/icons/status/volbar1.png
+%%DATADIR%%/icons/status/volbar2.png
+%%DATADIR%%/icons/status/volbar3.png
+%%DATADIR%%/icons/status/volbar4.png
+%%DATADIR%%/icons/status/volbar5.png
%%DATADIR%%/icons/status/volume_bar.png
%%DATADIR%%/icons/status/volume_mute.png
+%%DATADIR%%/icons/status/volume_mute_multi.png
%%DATADIR%%/icons/status/volume_out.png
+%%DATADIR%%/icons/status/volume_out_multi.png
%%DATADIR%%/icons/themes/AquaFusion/AquaFusion_Icons.txt
%%DATADIR%%/icons/themes/AquaFusion/AquaFusion_Icons_LICENSE
%%DATADIR%%/icons/themes/AquaFusion/auto.png
@@ -790,6 +1401,79 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/themes/AquaFusion/tv.png
%%DATADIR%%/icons/themes/AquaFusion/up.png
%%DATADIR%%/icons/themes/AquaFusion/videogame.png
+%%DATADIR%%/icons/themes/Crystal/auto.png
+%%DATADIR%%/icons/themes/Crystal/commands_off.png
+%%DATADIR%%/icons/themes/Crystal/commands_on.png
+%%DATADIR%%/icons/themes/Crystal/down.png
+%%DATADIR%%/icons/themes/Crystal/email_off.png
+%%DATADIR%%/icons/themes/Crystal/email_on.png
+%%DATADIR%%/icons/themes/Crystal/games_off.png
+%%DATADIR%%/icons/themes/Crystal/games_on.png
+%%DATADIR%%/icons/themes/Crystal/headlines_off.png
+%%DATADIR%%/icons/themes/Crystal/headlines_on.png
+%%DATADIR%%/icons/themes/Crystal/image_off.png
+%%DATADIR%%/icons/themes/Crystal/image_on.png
+%%DATADIR%%/icons/themes/Crystal/left.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/RadioNetscape.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/audio.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/detached_player.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/dvd.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/folder.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/linkbrowser.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/trailers.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/vcd.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/video.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/video_quicktime.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/video_real.png
+%%DATADIR%%/icons/themes/Crystal/mimetypes/webradio.png
+%%DATADIR%%/icons/themes/Crystal/misc/case.png
+%%DATADIR%%/icons/themes/Crystal/misc/cdrom_mount.png
+%%DATADIR%%/icons/themes/Crystal/misc/clock.png
+%%DATADIR%%/icons/themes/Crystal/misc/cpu.png
+%%DATADIR%%/icons/themes/Crystal/misc/freevo_app.png
+%%DATADIR%%/icons/themes/Crystal/misc/hddtemp-cool.png
+%%DATADIR%%/icons/themes/Crystal/misc/hddtemp-norm.png
+%%DATADIR%%/icons/themes/Crystal/misc/hddtemp-warm.png
+%%DATADIR%%/icons/themes/Crystal/misc/memory.png
+%%DATADIR%%/icons/themes/Crystal/movie_off.png
+%%DATADIR%%/icons/themes/Crystal/movie_on.png
+%%DATADIR%%/icons/themes/Crystal/music_off.png
+%%DATADIR%%/icons/themes/Crystal/music_on.png
+%%DATADIR%%/icons/themes/Crystal/off.png
+%%DATADIR%%/icons/themes/Crystal/on.png
+%%DATADIR%%/icons/themes/Crystal/popup/popup_wait.png
+%%DATADIR%%/icons/themes/Crystal/right.png
+%%DATADIR%%/icons/themes/Crystal/shutdown_off.png
+%%DATADIR%%/icons/themes/Crystal/shutdown_on.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_audio.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_burn.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_inactive.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_mixed.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_photo.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_rip.png
+%%DATADIR%%/icons/themes/Crystal/status/cd_video.png
+%%DATADIR%%/icons/themes/Crystal/status/mail_dimmed.png
+%%DATADIR%%/icons/themes/Crystal/status/mail_new.png
+%%DATADIR%%/icons/themes/Crystal/status/newmail_active.png
+%%DATADIR%%/icons/themes/Crystal/status/newmail_active_small.png
+%%DATADIR%%/icons/themes/Crystal/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/Crystal/status/television_active.png
+%%DATADIR%%/icons/themes/Crystal/status/television_expired.png
+%%DATADIR%%/icons/themes/Crystal/status/television_inactive.png
+%%DATADIR%%/icons/themes/Crystal/status/television_near_expired.png
+%%DATADIR%%/icons/themes/Crystal/status/volume_bar.png
+%%DATADIR%%/icons/themes/Crystal/status/volume_mute.png
+%%DATADIR%%/icons/themes/Crystal/status/volume_out.png
+%%DATADIR%%/icons/themes/Crystal/tv_off.png
+%%DATADIR%%/icons/themes/Crystal/tv_on.png
+%%DATADIR%%/icons/themes/Crystal/up.png
+%%DATADIR%%/icons/themes/Crystal/weather_off.png
+%%DATADIR%%/icons/themes/Crystal/weather_on.png
%%DATADIR%%/icons/themes/Noia/README
%%DATADIR%%/icons/themes/Noia/auto.png
%%DATADIR%%/icons/themes/Noia/down.png
@@ -814,6 +1498,207 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/themes/Noia/on.png
%%DATADIR%%/icons/themes/Noia/right.png
%%DATADIR%%/icons/themes/Noia/up.png
+%%DATADIR%%/icons/themes/Panorama/down.png
+%%DATADIR%%/icons/themes/Panorama/left.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/folder.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/folder_image.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/playlist_image.png
+%%DATADIR%%/icons/themes/Panorama/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/Panorama/recordinglater.png
+%%DATADIR%%/icons/themes/Panorama/recordingnow.png
+%%DATADIR%%/icons/themes/Panorama/right.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_audio.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_burn.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_inactive.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_mixed.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_photo.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_rip.png
+%%DATADIR%%/icons/themes/Panorama/status/cd_video.png
+%%DATADIR%%/icons/themes/Panorama/status/mail_dimmed.png
+%%DATADIR%%/icons/themes/Panorama/status/mail_new.png
+%%DATADIR%%/icons/themes/Panorama/status/newmail_active.png
+%%DATADIR%%/icons/themes/Panorama/status/newmail_active_small.png
+%%DATADIR%%/icons/themes/Panorama/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/Panorama/status/television_active.png
+%%DATADIR%%/icons/themes/Panorama/status/television_expired.png
+%%DATADIR%%/icons/themes/Panorama/status/television_inactive.png
+%%DATADIR%%/icons/themes/Panorama/status/television_near_expired.png
+%%DATADIR%%/icons/themes/Panorama/status/volume_bar.png
+%%DATADIR%%/icons/themes/Panorama/status/volume_mute.png
+%%DATADIR%%/icons/themes/Panorama/status/volume_out.png
+%%DATADIR%%/icons/themes/Panorama/up.png
+%%DATADIR%%/icons/themes/Rain/auto.png
+%%DATADIR%%/icons/themes/Rain/commands_off.png
+%%DATADIR%%/icons/themes/Rain/commands_on.png
+%%DATADIR%%/icons/themes/Rain/down.png
+%%DATADIR%%/icons/themes/Rain/email_off.png
+%%DATADIR%%/icons/themes/Rain/email_on.png
+%%DATADIR%%/icons/themes/Rain/games_off.png
+%%DATADIR%%/icons/themes/Rain/games_on.png
+%%DATADIR%%/icons/themes/Rain/headlines_off.png
+%%DATADIR%%/icons/themes/Rain/headlines_on.png
+%%DATADIR%%/icons/themes/Rain/image_off.png
+%%DATADIR%%/icons/themes/Rain/image_on.png
+%%DATADIR%%/icons/themes/Rain/left.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/audio.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/detached_player.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/dvd.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/folder.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/linkbrowser.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/trailers.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/vcd.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/video.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/video_quicktime.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/video_real.png
+%%DATADIR%%/icons/themes/Rain/mimetypes/webradio.png
+%%DATADIR%%/icons/themes/Rain/misc/case.png
+%%DATADIR%%/icons/themes/Rain/misc/cdrom_mount.png
+%%DATADIR%%/icons/themes/Rain/misc/clock.png
+%%DATADIR%%/icons/themes/Rain/misc/cpu.png
+%%DATADIR%%/icons/themes/Rain/misc/freevo_app.png
+%%DATADIR%%/icons/themes/Rain/misc/hddtemp-cool.png
+%%DATADIR%%/icons/themes/Rain/misc/hddtemp-norm.png
+%%DATADIR%%/icons/themes/Rain/misc/hddtemp-warm.png
+%%DATADIR%%/icons/themes/Rain/misc/memory.png
+%%DATADIR%%/icons/themes/Rain/movie_off.png
+%%DATADIR%%/icons/themes/Rain/movie_on.png
+%%DATADIR%%/icons/themes/Rain/music_off.png
+%%DATADIR%%/icons/themes/Rain/music_on.png
+%%DATADIR%%/icons/themes/Rain/off.png
+%%DATADIR%%/icons/themes/Rain/on.png
+%%DATADIR%%/icons/themes/Rain/popup/popup_wait.png
+%%DATADIR%%/icons/themes/Rain/right.png
+%%DATADIR%%/icons/themes/Rain/shutdown_off.png
+%%DATADIR%%/icons/themes/Rain/shutdown_on.png
+%%DATADIR%%/icons/themes/Rain/status/cd_audio.png
+%%DATADIR%%/icons/themes/Rain/status/cd_burn.png
+%%DATADIR%%/icons/themes/Rain/status/cd_inactive.png
+%%DATADIR%%/icons/themes/Rain/status/cd_mixed.png
+%%DATADIR%%/icons/themes/Rain/status/cd_photo.png
+%%DATADIR%%/icons/themes/Rain/status/cd_rip.png
+%%DATADIR%%/icons/themes/Rain/status/cd_video.png
+%%DATADIR%%/icons/themes/Rain/status/mail_dimmed.png
+%%DATADIR%%/icons/themes/Rain/status/mail_new.png
+%%DATADIR%%/icons/themes/Rain/status/newmail_active.png
+%%DATADIR%%/icons/themes/Rain/status/newmail_active_small.png
+%%DATADIR%%/icons/themes/Rain/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/Rain/status/television_active.png
+%%DATADIR%%/icons/themes/Rain/status/television_expired.png
+%%DATADIR%%/icons/themes/Rain/status/television_inactive.png
+%%DATADIR%%/icons/themes/Rain/status/television_near_expired.png
+%%DATADIR%%/icons/themes/Rain/status/volume_bar.png
+%%DATADIR%%/icons/themes/Rain/status/volume_mute.png
+%%DATADIR%%/icons/themes/Rain/status/volume_out.png
+%%DATADIR%%/icons/themes/Rain/tv_off.png
+%%DATADIR%%/icons/themes/Rain/tv_on.png
+%%DATADIR%%/icons/themes/Rain/up.png
+%%DATADIR%%/icons/themes/Rain/weather_off.png
+%%DATADIR%%/icons/themes/Rain/weather_on.png
+%%DATADIR%%/icons/themes/atlantice/down.png
+%%DATADIR%%/icons/themes/atlantice/left.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/audio.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder_audio.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder_html.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder_image.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder_image2.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/folder_video.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/image.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/news.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/playlist_video.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/unknown2.png
+%%DATADIR%%/icons/themes/atlantice/mimetypes/video.png
+%%DATADIR%%/icons/themes/atlantice/right.png
+%%DATADIR%%/icons/themes/atlantice/status/cd_active.png
+%%DATADIR%%/icons/themes/atlantice/status/cd_audio.png
+%%DATADIR%%/icons/themes/atlantice/status/cd_inactive.png
+%%DATADIR%%/icons/themes/atlantice/status/cd_mixed.png
+%%DATADIR%%/icons/themes/atlantice/status/cd_video.png
+%%DATADIR%%/icons/themes/atlantice/status/newmail_active.png
+%%DATADIR%%/icons/themes/atlantice/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/atlantice/status/television_active.png
+%%DATADIR%%/icons/themes/atlantice/status/television_inactive.png
+%%DATADIR%%/icons/themes/atlantice/up.png
+%%DATADIR%%/icons/themes/bluestar/auto.png
+%%DATADIR%%/icons/themes/bluestar/down.png
+%%DATADIR%%/icons/themes/bluestar/email_off.png
+%%DATADIR%%/icons/themes/bluestar/email_on.png
+%%DATADIR%%/icons/themes/bluestar/games_off.png
+%%DATADIR%%/icons/themes/bluestar/games_on.png
+%%DATADIR%%/icons/themes/bluestar/headlines_off.png
+%%DATADIR%%/icons/themes/bluestar/headlines_on.png
+%%DATADIR%%/icons/themes/bluestar/image_off.png
+%%DATADIR%%/icons/themes/bluestar/image_on.png
+%%DATADIR%%/icons/themes/bluestar/left.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/audio.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/detached_player.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/dvd.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/folder.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/folder_audio.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/folder_image.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/folder_video.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/image.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/linkbrowser.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/playlist_image.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/vcd.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/video.png
+%%DATADIR%%/icons/themes/bluestar/mimetypes/webradio.png
+%%DATADIR%%/icons/themes/bluestar/movie_off.png
+%%DATADIR%%/icons/themes/bluestar/movie_on.png
+%%DATADIR%%/icons/themes/bluestar/music_off.png
+%%DATADIR%%/icons/themes/bluestar/music_on.png
+%%DATADIR%%/icons/themes/bluestar/off.png
+%%DATADIR%%/icons/themes/bluestar/on.png
+%%DATADIR%%/icons/themes/bluestar/popup/osd_busy.png
+%%DATADIR%%/icons/themes/bluestar/popup/popup_wait.png
+%%DATADIR%%/icons/themes/bluestar/recordinglater.png
+%%DATADIR%%/icons/themes/bluestar/recordingnow.png
+%%DATADIR%%/icons/themes/bluestar/right.png
+%%DATADIR%%/icons/themes/bluestar/shutdown_off.png
+%%DATADIR%%/icons/themes/bluestar/shutdown_on.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_audio.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_burn.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_inactive.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_mixed.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_photo.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_rip.png
+%%DATADIR%%/icons/themes/bluestar/status/cd_video.png
+%%DATADIR%%/icons/themes/bluestar/status/mail_dimmed.png
+%%DATADIR%%/icons/themes/bluestar/status/mail_new.png
+%%DATADIR%%/icons/themes/bluestar/status/mail_offline.png
+%%DATADIR%%/icons/themes/bluestar/status/newmail_active.png
+%%DATADIR%%/icons/themes/bluestar/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/bluestar/status/television_active.png
+%%DATADIR%%/icons/themes/bluestar/status/television_expired.png
+%%DATADIR%%/icons/themes/bluestar/status/television_inactive.png
+%%DATADIR%%/icons/themes/bluestar/status/television_near_expired.png
+%%DATADIR%%/icons/themes/bluestar/status/volume_bar.png
+%%DATADIR%%/icons/themes/bluestar/status/volume_mute.png
+%%DATADIR%%/icons/themes/bluestar/status/volume_out.png
+%%DATADIR%%/icons/themes/bluestar/tv_off.png
+%%DATADIR%%/icons/themes/bluestar/tv_on.png
+%%DATADIR%%/icons/themes/bluestar/up.png
+%%DATADIR%%/icons/themes/bluestar/weather_off.png
+%%DATADIR%%/icons/themes/bluestar/weather_on.png
%%DATADIR%%/icons/themes/blurr/down.png
%%DATADIR%%/icons/themes/blurr/left.png
%%DATADIR%%/icons/themes/blurr/mimetypes/audiocd.png
@@ -823,6 +1708,11 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/themes/blurr/mimetypes/playlist.png
%%DATADIR%%/icons/themes/blurr/mimetypes/playlist_image.png
%%DATADIR%%/icons/themes/blurr/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/blurr/misc/bluebutton.png
+%%DATADIR%%/icons/themes/blurr/misc/greenbutton.png
+%%DATADIR%%/icons/themes/blurr/misc/radio.png
+%%DATADIR%%/icons/themes/blurr/misc/redbutton.png
+%%DATADIR%%/icons/themes/blurr/misc/yellowbutton.png
%%DATADIR%%/icons/themes/blurr/recordinglater.png
%%DATADIR%%/icons/themes/blurr/recordingnow.png
%%DATADIR%%/icons/themes/blurr/right.png
@@ -830,11 +1720,98 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/themes/blurr/status/cd_inactive.png
%%DATADIR%%/icons/themes/blurr/status/cd_mixed.png
%%DATADIR%%/icons/themes/blurr/status/cd_video.png
+%%DATADIR%%/icons/themes/blurr/status/diskfree-bad.png
+%%DATADIR%%/icons/themes/blurr/status/diskfree-good.png
+%%DATADIR%%/icons/themes/blurr/status/diskfree-poor.png
+%%DATADIR%%/icons/themes/blurr/status/diskfree.png
%%DATADIR%%/icons/themes/blurr/status/newmail_active.png
%%DATADIR%%/icons/themes/blurr/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/blurr/status/series_keep.png
+%%DATADIR%%/icons/themes/blurr/status/series_keep_watched.png
+%%DATADIR%%/icons/themes/blurr/status/series_unwatched.png
+%%DATADIR%%/icons/themes/blurr/status/series_watched.png
%%DATADIR%%/icons/themes/blurr/status/television_active.png
%%DATADIR%%/icons/themes/blurr/status/television_inactive.png
+%%DATADIR%%/icons/themes/blurr/status/television_keep.png
+%%DATADIR%%/icons/themes/blurr/status/television_keep_watched.png
+%%DATADIR%%/icons/themes/blurr/status/television_unwatched.png
+%%DATADIR%%/icons/themes/blurr/status/television_watched.png
%%DATADIR%%/icons/themes/blurr/up.png
+%%DATADIR%%/icons/themes/geexbox/down.png
+%%DATADIR%%/icons/themes/geexbox/left.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/folder_image.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/playlist_image.png
+%%DATADIR%%/icons/themes/geexbox/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/geexbox/right.png
+%%DATADIR%%/icons/themes/geexbox/status/cd_audio.png
+%%DATADIR%%/icons/themes/geexbox/status/cd_inactive.png
+%%DATADIR%%/icons/themes/geexbox/status/cd_mixed.png
+%%DATADIR%%/icons/themes/geexbox/status/cd_video.png
+%%DATADIR%%/icons/themes/geexbox/status/newmail_active.png
+%%DATADIR%%/icons/themes/geexbox/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/geexbox/status/television_active.png
+%%DATADIR%%/icons/themes/geexbox/status/television_inactive.png
+%%DATADIR%%/icons/themes/geexbox/up.png
+%%DATADIR%%/icons/themes/mediaportal/auto.png
+%%DATADIR%%/icons/themes/mediaportal/down.png
+%%DATADIR%%/icons/themes/mediaportal/left.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/RadioNetscape.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/audio.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/detached_player.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/dvd.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/folder.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/linkbrowser.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/trailers.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/vcd.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/video.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/video_quicktime.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/video_real.png
+%%DATADIR%%/icons/themes/mediaportal/mimetypes/webradio.png
+%%DATADIR%%/icons/themes/mediaportal/misc/case.png
+%%DATADIR%%/icons/themes/mediaportal/misc/cdrom_mount.png
+%%DATADIR%%/icons/themes/mediaportal/misc/clock.png
+%%DATADIR%%/icons/themes/mediaportal/misc/freevo_app.png
+%%DATADIR%%/icons/themes/mediaportal/misc/hddtemp-cool.png
+%%DATADIR%%/icons/themes/mediaportal/misc/hddtemp-norm.png
+%%DATADIR%%/icons/themes/mediaportal/misc/hddtemp-warm.png
+%%DATADIR%%/icons/themes/mediaportal/misc/memory.png
+%%DATADIR%%/icons/themes/mediaportal/off.png
+%%DATADIR%%/icons/themes/mediaportal/on.png
+%%DATADIR%%/icons/themes/mediaportal/popup/popup_wait.png
+%%DATADIR%%/icons/themes/mediaportal/right.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_audio.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_burn.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_inactive.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_mixed.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_photo.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_rip.png
+%%DATADIR%%/icons/themes/mediaportal/status/cd_video.png
+%%DATADIR%%/icons/themes/mediaportal/status/mail_dimmed.png
+%%DATADIR%%/icons/themes/mediaportal/status/mail_new.png
+%%DATADIR%%/icons/themes/mediaportal/status/newmail_active.png
+%%DATADIR%%/icons/themes/mediaportal/status/newmail_active_small.png
+%%DATADIR%%/icons/themes/mediaportal/status/newmail_dimmed.png
+%%DATADIR%%/icons/themes/mediaportal/status/television_active.png
+%%DATADIR%%/icons/themes/mediaportal/status/television_expired.png
+%%DATADIR%%/icons/themes/mediaportal/status/television_inactive.png
+%%DATADIR%%/icons/themes/mediaportal/status/television_near_expired.png
+%%DATADIR%%/icons/themes/mediaportal/status/volume_bar.png
+%%DATADIR%%/icons/themes/mediaportal/status/volume_mute.png
+%%DATADIR%%/icons/themes/mediaportal/status/volume_out.png
+%%DATADIR%%/icons/themes/mediaportal/tv_down.png
+%%DATADIR%%/icons/themes/mediaportal/tv_up.png
+%%DATADIR%%/icons/themes/mediaportal/tvguide_arrow_left.png
+%%DATADIR%%/icons/themes/mediaportal/tvguide_arrow_right.png
+%%DATADIR%%/icons/themes/mediaportal/up.png
%%DATADIR%%/icons/themes/tuxntosh/down.png
%%DATADIR%%/icons/themes/tuxntosh/left.png
%%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54/images.png
@@ -884,11 +1861,65 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/themes/tuxntosh/mimetypes/video.png
%%DATADIR%%/icons/themes/tuxntosh/right.png
%%DATADIR%%/icons/themes/tuxntosh/up.png
+%%DATADIR%%/icons/themes/tuxntosh2/appletux.jpeg
+%%DATADIR%%/icons/themes/tuxntosh2/down.png
+%%DATADIR%%/icons/themes/tuxntosh2/iconblank.png
+%%DATADIR%%/icons/themes/tuxntosh2/left.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/images.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/movies.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/music.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/out_images.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/out_movies.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/out_music.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/out_shutdown.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/out_tv.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/shutdown.png
+%%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54/tv.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/audiocd.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/cdrom.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/dvd.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/empty_cdrom.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/file.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/folder.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/folder_audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/folder_image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/folder_video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_audiocd.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_cdrom.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_dvd.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_empty_cdrom.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_file.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_folder.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_folder_audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_folder_image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_folder_video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_playlist.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_playlist_audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_playlist_image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_playlist_video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_unknown.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_vcd.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/out_video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/playlist.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/playlist_audio.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/playlist_image.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/playlist_video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/unknown.png
+%%DATADIR%%/icons/themes/tuxntosh2/mimetypes/video.png
+%%DATADIR%%/icons/themes/tuxntosh2/mright.png
+%%DATADIR%%/icons/themes/tuxntosh2/mright_out.png
+%%DATADIR%%/icons/themes/tuxntosh2/right.png
+%%DATADIR%%/icons/themes/tuxntosh2/up.png
%%DATADIR%%/icons/weather/cloud.png
%%DATADIR%%/icons/weather/fog.png
%%DATADIR%%/icons/weather/moon-mc.png
%%DATADIR%%/icons/weather/moon-pc.png
%%DATADIR%%/icons/weather/moon.png
+%%DATADIR%%/icons/weather/na.png
%%DATADIR%%/icons/weather/rain.png
%%DATADIR%%/icons/weather/snow.png
%%DATADIR%%/icons/weather/storm.png
@@ -898,12 +1929,62 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/icons/weather/suncloud.png
%%DATADIR%%/icons/weather/tstorms.png
%%DATADIR%%/icons/weather/wind.png
+%%DATADIR%%/images/TuxnTosh/button.psd
+%%DATADIR%%/images/TuxnTosh/buttondir.png
+%%DATADIR%%/images/TuxnTosh/buttonnodir.png
+%%DATADIR%%/images/TuxnTosh/buttonplaylist.png
+%%DATADIR%%/images/TuxnTosh/notselecteddir.png
+%%DATADIR%%/images/TuxnTosh/tuxntosh_audio.png
+%%DATADIR%%/images/TuxnTosh/tuxntosh_movies.png
+%%DATADIR%%/images/TuxnTosh/tuxntosh_photo.png
+%%DATADIR%%/images/atlantice/Coverback.png
+%%DATADIR%%/images/atlantice/back.png
+%%DATADIR%%/images/atlantice/back_black.jpg
+%%DATADIR%%/images/atlantice/commands.png
+%%DATADIR%%/images/atlantice/coverart_logo.png
+%%DATADIR%%/images/atlantice/games.png
+%%DATADIR%%/images/atlantice/image.png
+%%DATADIR%%/images/atlantice/logo.png
+%%DATADIR%%/images/atlantice/mail.png
+%%DATADIR%%/images/atlantice/movie.png
+%%DATADIR%%/images/atlantice/movie_cover.png
+%%DATADIR%%/images/atlantice/music.png
+%%DATADIR%%/images/atlantice/music_cover.png
+%%DATADIR%%/images/atlantice/music_cover2.png
+%%DATADIR%%/images/atlantice/news.png
+%%DATADIR%%/images/atlantice/panel.png
+%%DATADIR%%/images/atlantice/rain_movie.png
+%%DATADIR%%/images/atlantice/shutdown.png
+%%DATADIR%%/images/atlantice/tv.png
+%%DATADIR%%/images/atlantice/weather.png
%%DATADIR%%/images/aubin_bg2.jpg
%%DATADIR%%/images/barbieri/bg.jpg
+%%DATADIR%%/images/blackground.png
+%%DATADIR%%/images/bluestar_back.jpg
+%%DATADIR%%/images/bluestar_logo.png
+%%DATADIR%%/images/bluestar_scheduledtv.png
+%%DATADIR%%/images/bluestar_splash.jpg
%%DATADIR%%/images/blurr_naxos.jpg
%%DATADIR%%/images/blurrback.jpg
%%DATADIR%%/images/blurrsplash.jpg
+%%DATADIR%%/images/crystal_back.jpg
+%%DATADIR%%/images/dark.png
%%DATADIR%%/images/frame.png
+%%DATADIR%%/images/fxd/webradio/somafm/250x250sfm.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/DroneZoneBox.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/GrooveSaladBox.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/SecretAgentBox.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/blender.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/bootliquor.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/cliqhop.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/digitalis.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/doomed.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/illstreet.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/indychick.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/lush.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/sonicuniverse.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/sss.jpg
+%%DATADIR%%/images/fxd/webradio/somafm/tagstrancefract.jpg
%%DATADIR%%/images/gant/chat.png
%%DATADIR%%/images/gant/commands.png
%%DATADIR%%/images/gant/games.png
@@ -916,113 +1997,429 @@ etc/rc.d/freevo.sh.sample
%%DATADIR%%/images/gant/shutdown.png
%%DATADIR%%/images/gant/tv.png
%%DATADIR%%/images/gant/weather.png
+%%DATADIR%%/images/geexbox/back.png
+%%DATADIR%%/images/geexbox/back_image.png
+%%DATADIR%%/images/geexbox/back_main.png
+%%DATADIR%%/images/geexbox/back_movie.png
+%%DATADIR%%/images/geexbox/back_music.png
+%%DATADIR%%/images/geexbox/back_tv.png
+%%DATADIR%%/images/geexbox/back_weather.png
+%%DATADIR%%/images/geexbox/headlines.jpg
+%%DATADIR%%/images/geexbox/image.png
+%%DATADIR%%/images/geexbox/logo.png
+%%DATADIR%%/images/geexbox/movie.png
+%%DATADIR%%/images/geexbox/music.png
+%%DATADIR%%/images/geexbox/newspaper.jpg
+%%DATADIR%%/images/geexbox/panel.png
+%%DATADIR%%/images/geexbox/panel2.png
+%%DATADIR%%/images/geexbox/shutdown.jpg
+%%DATADIR%%/images/geexbox/tv.png
+%%DATADIR%%/images/geexbox/weather.png
%%DATADIR%%/images/idlebar.png
%%DATADIR%%/images/logo.png
%%DATADIR%%/images/logo_david.png
+%%DATADIR%%/images/mactvsplash.png
+%%DATADIR%%/images/mediaportal/background-xbmc.png
+%%DATADIR%%/images/mediaportal/background_my_recipies.png
+%%DATADIR%%/images/mediaportal/background_myalarm.png
+%%DATADIR%%/images/mediaportal/background_myburn.png
+%%DATADIR%%/images/mediaportal/background_myexplorer.png
+%%DATADIR%%/images/mediaportal/background_mymessenger.png
+%%DATADIR%%/images/mediaportal/background_mymusic.png
+%%DATADIR%%/images/mediaportal/background_mynews.png
+%%DATADIR%%/images/mediaportal/background_mypictures.png
+%%DATADIR%%/images/mediaportal/background_myprograms.png
+%%DATADIR%%/images/mediaportal/background_myradio.png
+%%DATADIR%%/images/mediaportal/background_mystatus.png
+%%DATADIR%%/images/mediaportal/background_mytv.png
+%%DATADIR%%/images/mediaportal/background_myvideos.png
+%%DATADIR%%/images/mediaportal/background_myweather.png
+%%DATADIR%%/images/mediaportal/background_scheduletv.png
+%%DATADIR%%/images/mediaportal/commands.png
+%%DATADIR%%/images/mediaportal/mail.png
+%%DATADIR%%/images/mediaportalsplash.png
+%%DATADIR%%/images/mpd_frame.png
+%%DATADIR%%/images/mpd_watermark.png
+%%DATADIR%%/images/mplayervis/freevo-medium-16x9.avi
+%%DATADIR%%/images/mplayervis/freevo-medium-4x3.avi
+%%DATADIR%%/images/mplayervis/freevo-small-16x9.avi
+%%DATADIR%%/images/mplayervis/freevo-small-4x3.avi
+%%DATADIR%%/images/newmarks/README
+%%DATADIR%%/images/newmarks/game.png
+%%DATADIR%%/images/newmarks/headlines.png
+%%DATADIR%%/images/newmarks/image.png
+%%DATADIR%%/images/newmarks/mail.png
+%%DATADIR%%/images/newmarks/movie.png
+%%DATADIR%%/images/newmarks/music.png
+%%DATADIR%%/images/newmarks/shutdown.png
+%%DATADIR%%/images/newmarks/term.png
+%%DATADIR%%/images/newmarks/tv.png
+%%DATADIR%%/images/osd/base/bar.png
+%%DATADIR%%/images/osd/base/bboptionsmenubg.png
+%%DATADIR%%/images/osd/base/button_active_bg.png
+%%DATADIR%%/images/osd/base/button_normal_bg.png
+%%DATADIR%%/images/osd/base/button_pressed_bg.png
+%%DATADIR%%/images/osd/base/details_bg.png
+%%DATADIR%%/images/osd/base/dialog_bg.png
+%%DATADIR%%/images/osd/base/fastforward.png
+%%DATADIR%%/images/osd/base/menu_active.png
+%%DATADIR%%/images/osd/base/menu_bg.png
+%%DATADIR%%/images/osd/base/menu_down.png
+%%DATADIR%%/images/osd/base/menu_normal.png
+%%DATADIR%%/images/osd/base/menu_pressed.png
+%%DATADIR%%/images/osd/base/menu_up.png
+%%DATADIR%%/images/osd/base/muted.png
+%%DATADIR%%/images/osd/base/pause.png
+%%DATADIR%%/images/osd/base/percent_bar.png
+%%DATADIR%%/images/osd/base/play.png
+%%DATADIR%%/images/osd/base/radio_active_bg.png
+%%DATADIR%%/images/osd/base/radio_selected.png
+%%DATADIR%%/images/osd/base/radio_unselected.png
+%%DATADIR%%/images/osd/base/rewind.png
+%%DATADIR%%/images/osd/base/seekback.png
+%%DATADIR%%/images/osd/base/seekforward.png
+%%DATADIR%%/images/osd/base/stop.png
+%%DATADIR%%/images/osd/base/volume_bar.png
+%%DATADIR%%/images/panorama/background.jpg
+%%DATADIR%%/images/panorama/gant_chat.png
+%%DATADIR%%/images/panorama/gant_commands.png
+%%DATADIR%%/images/panorama/gant_games.png
+%%DATADIR%%/images/panorama/gant_headlines.png
+%%DATADIR%%/images/panorama/gant_image.png
+%%DATADIR%%/images/panorama/gant_movie.png
+%%DATADIR%%/images/panorama/gant_music.png
+%%DATADIR%%/images/panorama/gant_scheduledtv.png
+%%DATADIR%%/images/panorama/gant_shutdown.png
+%%DATADIR%%/images/panorama/gant_tv.png
+%%DATADIR%%/images/panorama/gant_weather.png
+%%DATADIR%%/images/panorama/logo.png
+%%DATADIR%%/images/panorama/myth_cd.png
+%%DATADIR%%/images/panorama/myth_gallery.png
+%%DATADIR%%/images/panorama/myth_joystick.png
+%%DATADIR%%/images/panorama/myth_music.png
+%%DATADIR%%/images/panorama/myth_news.png
+%%DATADIR%%/images/panorama/myth_shutdown.png
+%%DATADIR%%/images/panorama/myth_tv.png
+%%DATADIR%%/images/panorama/myth_video.png
+%%DATADIR%%/images/panorama/myth_weather.png
+%%DATADIR%%/images/panorama/splashlogo.png
+%%DATADIR%%/images/panorama/watermark_cd.png
+%%DATADIR%%/images/panorama/watermark_gallery.png
+%%DATADIR%%/images/panorama/watermark_joystick.png
+%%DATADIR%%/images/panorama/watermark_logo.png
+%%DATADIR%%/images/panorama/watermark_music.png
+%%DATADIR%%/images/panorama/watermark_news.png
+%%DATADIR%%/images/panorama/watermark_shutdown.png
+%%DATADIR%%/images/panorama/watermark_tv.png
+%%DATADIR%%/images/panorama/watermark_video.png
+%%DATADIR%%/images/panorama/watermark_weather.png
+%%DATADIR%%/images/rain_back.jpg
+%%DATADIR%%/images/recording.png
+%%DATADIR%%/images/reminder_frame.png
+%%DATADIR%%/images/reminder_watermark.png
%%DATADIR%%/images/splashscreen-bsd.png
%%DATADIR%%/images/splashscreen.png
+%%DATADIR%%/images/star.png
+%%DATADIR%%/images/watermarks/bluestar_email.png
+%%DATADIR%%/images/watermarks/bluestar_games.png
+%%DATADIR%%/images/watermarks/bluestar_headlines.png
+%%DATADIR%%/images/watermarks/bluestar_image.png
+%%DATADIR%%/images/watermarks/bluestar_movie.png
+%%DATADIR%%/images/watermarks/bluestar_music.png
+%%DATADIR%%/images/watermarks/bluestar_shutdown.png
+%%DATADIR%%/images/watermarks/bluestar_tv.png
+%%DATADIR%%/images/watermarks/bluestar_weather.png
+%%DATADIR%%/images/watermarks/crystal_commands.png
+%%DATADIR%%/images/watermarks/crystal_email.png
+%%DATADIR%%/images/watermarks/crystal_games.png
+%%DATADIR%%/images/watermarks/crystal_headlines.png
+%%DATADIR%%/images/watermarks/crystal_image.png
+%%DATADIR%%/images/watermarks/crystal_movie.png
+%%DATADIR%%/images/watermarks/crystal_music.png
+%%DATADIR%%/images/watermarks/crystal_shutdown.png
+%%DATADIR%%/images/watermarks/crystal_tv.png
+%%DATADIR%%/images/watermarks/crystal_weather.png
%%DATADIR%%/images/watermarks/image.png
+%%DATADIR%%/images/watermarks/mail.png
%%DATADIR%%/images/watermarks/movie.png
%%DATADIR%%/images/watermarks/music.png
+%%DATADIR%%/images/watermarks/rain_commands.png
+%%DATADIR%%/images/watermarks/rain_email.png
+%%DATADIR%%/images/watermarks/rain_games.png
+%%DATADIR%%/images/watermarks/rain_headlines.png
+%%DATADIR%%/images/watermarks/rain_image.png
+%%DATADIR%%/images/watermarks/rain_movie.png
+%%DATADIR%%/images/watermarks/rain_music.png
+%%DATADIR%%/images/watermarks/rain_shutdown.png
+%%DATADIR%%/images/watermarks/rain_tv.png
+%%DATADIR%%/images/watermarks/rain_weather.png
%%DATADIR%%/images/watermarks/shutdown.png
%%DATADIR%%/images/watermarks/tv.png
+%%DATADIR%%/images/weather/cloudy.png
+%%DATADIR%%/images/weather/fair.png
+%%DATADIR%%/images/weather/flurries.png
+%%DATADIR%%/images/weather/fog.png
+%%DATADIR%%/images/weather/lshowers.png
+%%DATADIR%%/images/weather/mcloudy.png
+%%DATADIR%%/images/weather/mediaportal/cloudy.png
+%%DATADIR%%/images/weather/mediaportal/drizzle.png
+%%DATADIR%%/images/weather/mediaportal/fair.png
+%%DATADIR%%/images/weather/mediaportal/flurries.png
+%%DATADIR%%/images/weather/mediaportal/fog.png
+%%DATADIR%%/images/weather/mediaportal/ice.png
+%%DATADIR%%/images/weather/mediaportal/lrain.png
+%%DATADIR%%/images/weather/mediaportal/lshowers.png
+%%DATADIR%%/images/weather/mediaportal/mcloudy.png
+%%DATADIR%%/images/weather/mediaportal/msunny.png
+%%DATADIR%%/images/weather/mediaportal/pcloudy.png
+%%DATADIR%%/images/weather/mediaportal/permission.txt
+%%DATADIR%%/images/weather/mediaportal/rain.png
+%%DATADIR%%/images/weather/mediaportal/rainsnow.png
+%%DATADIR%%/images/weather/mediaportal/scthunder.png
+%%DATADIR%%/images/weather/mediaportal/showers.png
+%%DATADIR%%/images/weather/mediaportal/snow.png
+%%DATADIR%%/images/weather/mediaportal/snowshow.png
+%%DATADIR%%/images/weather/mediaportal/sunny.png
+%%DATADIR%%/images/weather/mediaportal/thunder.png
+%%DATADIR%%/images/weather/mediaportal/thunshowers.png
+%%DATADIR%%/images/weather/mediaportal/unknown.png
+%%DATADIR%%/images/weather/mediaportal/weather_frame.png
+%%DATADIR%%/images/weather/mediaportal/weathertypes.dat
+%%DATADIR%%/images/weather/mediaportal/wshowers.png
+%%DATADIR%%/images/weather/oneclick_frame.png
+%%DATADIR%%/images/weather/pcloudy.png
+%%DATADIR%%/images/weather/rainsnow.png
+%%DATADIR%%/images/weather/showers.png
+%%DATADIR%%/images/weather/snowshow.png
+%%DATADIR%%/images/weather/sunny.png
+%%DATADIR%%/images/weather/thunshowers.png
+%%DATADIR%%/images/weather/unknown.png
+%%DATADIR%%/images/weather/weather_frame.png
+%%DATADIR%%/images/weather/weather_watermark.png
+%%DATADIR%%/images/weather/weathertypes.dat
+%%DATADIR%%/skins/freevo-osd.dtd
+%%DATADIR%%/skins/freevo-skin.dtd
+%%DATADIR%%/skins/main/Panorama.fxd
+%%DATADIR%%/skins/main/Panorama.jpg
+%%DATADIR%%/skins/main/Panorama.txt
%%DATADIR%%/skins/main/README
+%%DATADIR%%/skins/main/Tux'n Tosh TV.fxd
+%%DATADIR%%/skins/main/Tux'n Tosh TV.png
+%%DATADIR%%/skins/main/atlantice.fxd
+%%DATADIR%%/skins/main/atlantice.png
%%DATADIR%%/skins/main/basic.fxd
+%%DATADIR%%/skins/main/bluestar.fxd
+%%DATADIR%%/skins/main/bluestar.jpg
%%DATADIR%%/skins/main/blurr.fxd
%%DATADIR%%/skins/main/blurr.jpg
+%%DATADIR%%/skins/main/crystal.fxd
+%%DATADIR%%/skins/main/crystal.png
+%%DATADIR%%/skins/main/dark.fxd
+%%DATADIR%%/skins/main/dark.jpg
+%%DATADIR%%/skins/main/geexbox.fxd
+%%DATADIR%%/skins/main/geexbox.png
%%DATADIR%%/skins/main/image.fxd
%%DATADIR%%/skins/main/info.fxd
%%DATADIR%%/skins/main/info.jpg
+%%DATADIR%%/skins/main/mediaportal.fxd
+%%DATADIR%%/skins/main/mediaportal.png
%%DATADIR%%/skins/main/noia.fxd
%%DATADIR%%/skins/main/noia.jpg
+%%DATADIR%%/skins/main/rain.fxd
+%%DATADIR%%/skins/main/rain.jpg
+%%DATADIR%%/skins/osd/base.fxd
+%%DATADIR%%/skins/plugins/mpd.fxd
+%%DATADIR%%/skins/plugins/oneclick.fxd
+%%DATADIR%%/skins/plugins/osd/livepause.fxd
+%%DATADIR%%/skins/plugins/reminder.fxd
%%DATADIR%%/skins/plugins/video_details.fxd
-share/fxd/webradio.fxd
+%%DATADIR%%/skins/plugins/weather.fxd
+share/locale/af/LC_MESSAGES/freevo.mo
+share/locale/af/LC_MESSAGES/freevo.po
+share/locale/ca/LC_MESSAGES/freevo.mo
+share/locale/ca/LC_MESSAGES/freevo.po
share/locale/cs/LC_MESSAGES/freevo.mo
share/locale/cs/LC_MESSAGES/freevo.po
share/locale/da/LC_MESSAGES/freevo.mo
share/locale/da/LC_MESSAGES/freevo.po
share/locale/de/LC_MESSAGES/freevo.mo
share/locale/de/LC_MESSAGES/freevo.po
+share/locale/el/LC_MESSAGES/freevo.mo
+share/locale/el/LC_MESSAGES/freevo.po
+share/locale/en_GB/LC_MESSAGES/freevo.mo
+share/locale/en_GB/LC_MESSAGES/freevo.po
share/locale/es/LC_MESSAGES/freevo.mo
share/locale/es/LC_MESSAGES/freevo.po
share/locale/fi/LC_MESSAGES/freevo.mo
share/locale/fi/LC_MESSAGES/freevo.po
share/locale/fr/LC_MESSAGES/freevo.mo
share/locale/fr/LC_MESSAGES/freevo.po
+share/locale/hu/LC_MESSAGES/freevo.mo
+share/locale/hu/LC_MESSAGES/freevo.po
share/locale/it/LC_MESSAGES/freevo.mo
share/locale/it/LC_MESSAGES/freevo.po
share/locale/nl/LC_MESSAGES/freevo.mo
share/locale/nl/LC_MESSAGES/freevo.po
share/locale/no/LC_MESSAGES/freevo.mo
share/locale/no/LC_MESSAGES/freevo.po
+share/locale/pl/LC_MESSAGES/freevo.mo
+share/locale/pl/LC_MESSAGES/freevo.po
share/locale/pt/LC_MESSAGES/freevo.mo
share/locale/pt/LC_MESSAGES/freevo.po
share/locale/pt_BR/LC_MESSAGES/freevo.mo
share/locale/pt_BR/LC_MESSAGES/freevo.po
+share/locale/ro/LC_MESSAGES/freevo.mo
+share/locale/ro/LC_MESSAGES/freevo.po
+share/locale/ru/LC_MESSAGES/freevo.mo
+share/locale/ru/LC_MESSAGES/freevo.po
share/locale/sv/LC_MESSAGES/freevo.mo
share/locale/sv/LC_MESSAGES/freevo.po
-@dirrm share/fxd
-@dirrm %%DATADIR%%/skins/plugins
-@dirrm %%DATADIR%%/skins/main
-@dirrm %%DATADIR%%/skins
-@dirrm %%DATADIR%%/images/watermarks
-@dirrm %%DATADIR%%/images/gant
-@dirrm %%DATADIR%%/images/barbieri
-@dirrm %%DATADIR%%/images
-@dirrm %%DATADIR%%/icons/weather
-@dirrm %%DATADIR%%/icons/themes/tuxntosh/mimetypes
+share/locale/zh_CN/LC_MESSAGES/freevo.mo
+share/locale/zh_CN/LC_MESSAGES/freevo.po
+@dirrmtry etc/freevo
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/animation
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/dialog/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/dialog
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/games
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/gui
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/helpers
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/image/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/image
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/screensaver
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skin/widgets
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skin
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/main
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/osd
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/dvbstreamer
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause/display
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins/livepause
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/util
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/video/plugins
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/video
+@dirrm %%PYTHON_SITELIBDIR%%/freevo/www
+@dirrm %%PYTHON_SITELIBDIR%%/freevo
+@dirrmtry %%PYTHON_SITELIBDIR%%
+@dirrm %%DOCSDIR%%/installation
+@dirrm %%DOCSDIR%%/plugin_writing
+@dirrm %%DOCSDIR%%
+@dirrm %%DATADIR%%/contrib/fbcon
+@dirrm %%DATADIR%%/contrib
+@dirrm %%DATADIR%%/fonts
+@dirrm %%DATADIR%%/fxd/examples
+@dirrm %%DATADIR%%/fxd
+@dirrm %%DATADIR%%/htdocs/help/wiki
+@dirrm %%DATADIR%%/htdocs/help
+@dirrm %%DATADIR%%/htdocs/icons
+@dirrm %%DATADIR%%/htdocs/images/config
+@dirrm %%DATADIR%%/htdocs/images/library
+@dirrm %%DATADIR%%/htdocs/images/tab
+@dirrm %%DATADIR%%/htdocs/images
+@dirrm %%DATADIR%%/htdocs/scripts
+@dirrm %%DATADIR%%/htdocs/styles
+@dirrm %%DATADIR%%/htdocs/videolan/img
+@dirrm %%DATADIR%%/htdocs/videolan
+@dirrm %%DATADIR%%/htdocs
+@dirrm %%DATADIR%%/icons/holidays
+@dirrm %%DATADIR%%/icons/misc
+@dirrm %%DATADIR%%/icons/popup
+@dirrm %%DATADIR%%/icons/status
+@dirrm %%DATADIR%%/icons/themes/AquaFusion/mimetypes
+@dirrm %%DATADIR%%/icons/themes/AquaFusion
+@dirrm %%DATADIR%%/icons/themes/Crystal/mimetypes
+@dirrm %%DATADIR%%/icons/themes/Crystal/misc
+@dirrm %%DATADIR%%/icons/themes/Crystal/popup
+@dirrm %%DATADIR%%/icons/themes/Crystal/status
+@dirrm %%DATADIR%%/icons/themes/Crystal
+@dirrm %%DATADIR%%/icons/themes/Noia/mimetypes
+@dirrm %%DATADIR%%/icons/themes/Noia/misc
+@dirrm %%DATADIR%%/icons/themes/Noia
+@dirrm %%DATADIR%%/icons/themes/Panorama/mimetypes
+@dirrm %%DATADIR%%/icons/themes/Panorama/status
+@dirrm %%DATADIR%%/icons/themes/Panorama
+@dirrm %%DATADIR%%/icons/themes/Rain/mimetypes
+@dirrm %%DATADIR%%/icons/themes/Rain/misc
+@dirrm %%DATADIR%%/icons/themes/Rain/popup
+@dirrm %%DATADIR%%/icons/themes/Rain/status
+@dirrm %%DATADIR%%/icons/themes/Rain
+@dirrm %%DATADIR%%/icons/themes/atlantice/mimetypes
+@dirrm %%DATADIR%%/icons/themes/atlantice/status
+@dirrm %%DATADIR%%/icons/themes/atlantice
+@dirrm %%DATADIR%%/icons/themes/bluestar/mimetypes
+@dirrm %%DATADIR%%/icons/themes/bluestar/popup
+@dirrm %%DATADIR%%/icons/themes/bluestar/status
+@dirrm %%DATADIR%%/icons/themes/bluestar
+@dirrm %%DATADIR%%/icons/themes/blurr/mimetypes
+@dirrm %%DATADIR%%/icons/themes/blurr/misc
+@dirrm %%DATADIR%%/icons/themes/blurr/status
+@dirrm %%DATADIR%%/icons/themes/blurr
+@dirrm %%DATADIR%%/icons/themes/geexbox/mimetypes
+@dirrm %%DATADIR%%/icons/themes/geexbox/status
+@dirrm %%DATADIR%%/icons/themes/geexbox
+@dirrm %%DATADIR%%/icons/themes/mediaportal/mimetypes
+@dirrm %%DATADIR%%/icons/themes/mediaportal/misc
+@dirrm %%DATADIR%%/icons/themes/mediaportal/popup
+@dirrm %%DATADIR%%/icons/themes/mediaportal/status
+@dirrm %%DATADIR%%/icons/themes/mediaportal
@dirrm %%DATADIR%%/icons/themes/tuxntosh/mainmenu/54x54
@dirrm %%DATADIR%%/icons/themes/tuxntosh/mainmenu
+@dirrm %%DATADIR%%/icons/themes/tuxntosh/mimetypes
@dirrm %%DATADIR%%/icons/themes/tuxntosh
-@dirrm %%DATADIR%%/icons/themes/blurr/status
-@dirrm %%DATADIR%%/icons/themes/blurr/mimetypes
-@dirrm %%DATADIR%%/icons/themes/blurr
-@dirrm %%DATADIR%%/icons/themes/Noia/misc
-@dirrm %%DATADIR%%/icons/themes/Noia/mimetypes
-@dirrm %%DATADIR%%/icons/themes/Noia
-@dirrm %%DATADIR%%/icons/themes/AquaFusion/mimetypes
-@dirrm %%DATADIR%%/icons/themes/AquaFusion
+@dirrm %%DATADIR%%/icons/themes/tuxntosh2/mainmenu/54x54
+@dirrm %%DATADIR%%/icons/themes/tuxntosh2/mainmenu
+@dirrm %%DATADIR%%/icons/themes/tuxntosh2/mimetypes
+@dirrm %%DATADIR%%/icons/themes/tuxntosh2
@dirrm %%DATADIR%%/icons/themes
-@dirrm %%DATADIR%%/icons/status
-@dirrm %%DATADIR%%/icons/popup
-@dirrm %%DATADIR%%/icons/misc
-@dirrm %%DATADIR%%/icons/holidays
+@dirrm %%DATADIR%%/icons/weather
@dirrm %%DATADIR%%/icons
-@dirrm %%DATADIR%%/htdocs/styles
-@dirrm %%DATADIR%%/htdocs/scripts
-@dirrm %%DATADIR%%/htdocs/images/tab
-@dirrm %%DATADIR%%/htdocs/images/library
-@dirrm %%DATADIR%%/htdocs/images
-@dirrm %%DATADIR%%/htdocs/help/wiki
-@dirrm %%DATADIR%%/htdocs/help
-@dirrm %%DATADIR%%/htdocs
-@dirrm %%DATADIR%%/fxd/examples
-@dirrm %%DATADIR%%/fxd
-@dirrm %%DATADIR%%/fonts
-@dirrm %%DATADIR%%/contrib/fbcon
-@dirrm %%DATADIR%%/contrib
-@dirrm %%DATADIR%%
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/plugin_writing
-@dirrm %%PORTDOCS%%%%DOCSDIR%%/installation
-@dirrm %%PORTDOCS%%%%DOCSDIR%%
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/www
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/video/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/video
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/util
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/tv
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins/main
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/skins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins/idlebar
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/image/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/image
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/helpers
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/gui
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/games
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio/plugins
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/audio
-@dirrm %%PYTHON_SITELIBDIR%%/freevo/animation
-@dirrm %%PYTHON_SITELIBDIR%%/freevo
-@dirrm etc/freevo
+@dirrm %%DATADIR%%/images/TuxnTosh
+@dirrm %%DATADIR%%/images/atlantice
+@dirrm %%DATADIR%%/images/barbieri
+@dirrm %%DATADIR%%/images/fxd/webradio/somafm
+@dirrm %%DATADIR%%/images/fxd/webradio
+@dirrm %%DATADIR%%/images/fxd
+@dirrm %%DATADIR%%/images/gant
+@dirrm %%DATADIR%%/images/geexbox
+@dirrm %%DATADIR%%/images/mediaportal
+@dirrm %%DATADIR%%/images/mplayervis
+@dirrm %%DATADIR%%/images/newmarks
+@dirrm %%DATADIR%%/images/osd/base
+@dirrm %%DATADIR%%/images/osd
+@dirrm %%DATADIR%%/images/panorama
+@dirrm %%DATADIR%%/images/watermarks
+@dirrm %%DATADIR%%/images/weather/mediaportal
+@dirrm %%DATADIR%%/images/weather
+@dirrm %%DATADIR%%/images
+@dirrm %%DATADIR%%/skins/main
+@dirrm %%DATADIR%%/skins/osd
+@dirrm %%DATADIR%%/skins/plugins/osd
+@dirrm %%DATADIR%%/skins/plugins
+@dirrm %%DATADIR%%/skins
+@dirrm share/freevo
+@dirrmtry share/locale/af/LC_MESSAGES
+@dirrmtry share/locale/ca/LC_MESSAGES
+@dirrmtry share/locale/cs/LC_MESSAGES
+@dirrmtry share/locale/da/LC_MESSAGES
+@dirrmtry share/locale/de/LC_MESSAGES
+@dirrmtry share/locale/el/LC_MESSAGES
+@dirrmtry share/locale/en_GB/LC_MESSAGES
+@dirrmtry share/locale/es/LC_MESSAGES
+@dirrmtry share/locale/fi/LC_MESSAGES
+@dirrmtry share/locale/fr/LC_MESSAGES
+@dirrmtry share/locale/hu/LC_MESSAGES
+@dirrmtry share/locale/it/LC_MESSAGES
+@dirrmtry share/locale/nl/LC_MESSAGES
+@dirrmtry share/locale/pl/LC_MESSAGES
+@dirrmtry share/locale/pt/LC_MESSAGES
+@dirrmtry share/locale/pt_BR/LC_MESSAGES
+@dirrmtry share/locale/ro/LC_MESSAGES
+@dirrmtry share/locale/ru/LC_MESSAGES
+@dirrmtry share/locale/sv/LC_MESSAGES
+@dirrmtry share/locale/zh_CN/LC_MESSAGES