Submitted By: Mario Fetka (mario-fetka at gmx dot at) Date: 2007-08-26 Initial Package Version: 0.4.0 Origin: Me Upstream Status: Unknow Description: Add support for lirc compatibel irtrans-server diff -Naur gentoo-vdr-scripts-0.4.0.orig/etc/conf.d/vdr gentoo-vdr-scripts-0.4.0/etc/conf.d/vdr --- gentoo-vdr-scripts-0.4.0.orig/etc/conf.d/vdr 2007-08-26 09:42:14.000000000 +0000 +++ gentoo-vdr-scripts-0.4.0/etc/conf.d/vdr 2007-08-26 10:12:47.000000000 +0000 @@ -16,7 +16,7 @@ # What IR control should be used. Override the default set at # compile time # (Usable at vdr version starting from 1.3.28) -# allowed values: lirc rcu +# allowed values: lirc rcu irtrans # default: use no remote # (up to vdr-1.3.36-r2: use what was selected by use-flag) #IR_CTRL="lirc" diff -Naur gentoo-vdr-scripts-0.4.0.orig/etc/init.d/vdr gentoo-vdr-scripts-0.4.0/etc/init.d/vdr --- gentoo-vdr-scripts-0.4.0.orig/etc/init.d/vdr 2007-08-26 09:42:14.000000000 +0000 +++ gentoo-vdr-scripts-0.4.0/etc/init.d/vdr 2007-08-26 09:49:18.000000000 +0000 @@ -14,7 +14,8 @@ depend() { need net [ "${IR_CTRL}" = "lirc" ] && need lircd - use lircd coldplug + [ "${IR_CTRL}" = "irtrans" ] && need irtrans-server + use lircd irtrans-server coldplug after checkroot } diff -Naur gentoo-vdr-scripts-0.4.0.orig/usr/share/vdr/rcscript/pre-start-30-parameter.sh gentoo-vdr-scripts-0.4.0/usr/share/vdr/rcscript/pre-start-30-parameter.sh --- gentoo-vdr-scripts-0.4.0.orig/usr/share/vdr/rcscript/pre-start-30-parameter.sh 2007-08-26 09:42:14.000000000 +0000 +++ gentoo-vdr-scripts-0.4.0/usr/share/vdr/rcscript/pre-start-30-parameter.sh 2007-08-26 09:47:40.000000000 +0000 @@ -22,6 +22,7 @@ if [ -n "${CAP_IRCTRL_RUNTIME_PARAM}" ] && [ -n "${IR_CTRL}" ]; then case "${IR_CTRL}" in lirc|rcu) add_param "--${IR_CTRL}" ;; + irtrans) add_param "--lirc" ;; esac fi