diff options
author | 2010-11-21 02:59:34 +0000 | |
---|---|---|
committer | 2010-11-21 02:59:34 +0000 | |
commit | 0cf0690e92f8ff525ed046aa456bbbf77935a574 (patch) | |
tree | acd6eb44bb7dfdc26c2255b976ce23e68c0d9de8 /app-misc/g15daemon/files | |
parent | app-vim/cream: Remove unused file (bug #344617) (diff) | |
download | historical-0cf0690e92f8ff525ed046aa456bbbf77935a574.tar.gz historical-0cf0690e92f8ff525ed046aa456bbbf77935a574.tar.bz2 historical-0cf0690e92f8ff525ed046aa456bbbf77935a574.zip |
app-misc/g15daemon: Remove unused files (bug #342671)
Package-Manager: portage-2.1.9.24/cvs/Linux x86_64
Diffstat (limited to 'app-misc/g15daemon/files')
-rw-r--r-- | app-misc/g15daemon/files/g15daemon-1.2.6a.confd | 5 | ||||
-rw-r--r-- | app-misc/g15daemon/files/g15daemon-1.2.6a.initd | 36 | ||||
-rw-r--r-- | app-misc/g15daemon/files/g15daemon-1.2.7-r1.initd | 40 | ||||
-rw-r--r-- | app-misc/g15daemon/files/g15daemon-1.2.7.initd | 38 |
4 files changed, 0 insertions, 119 deletions
diff --git a/app-misc/g15daemon/files/g15daemon-1.2.6a.confd b/app-misc/g15daemon/files/g15daemon-1.2.6a.confd deleted file mode 100644 index 2d7cd51ce83b..000000000000 --- a/app-misc/g15daemon/files/g15daemon-1.2.6a.confd +++ /dev/null @@ -1,5 +0,0 @@ -# /etc/conf.d/g15daemon: Configuration for the g15daemon - -# Key to switch the client-screens. Default is the MR key, -# Set to "yes" to use L1 key instead (black round key below the LCD, above the multimedia keys). -CLIENT_SWITCH_L1="no" diff --git a/app-misc/g15daemon/files/g15daemon-1.2.6a.initd b/app-misc/g15daemon/files/g15daemon-1.2.6a.initd deleted file mode 100644 index 499fcd5f3422..000000000000 --- a/app-misc/g15daemon/files/g15daemon-1.2.6a.initd +++ /dev/null @@ -1,36 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15daemon/files/g15daemon-1.2.6a.initd,v 1.1 2007/01/07 03:09:00 rbu Exp $ - -# Init script for g15daemon - -depend() { - after hotplug - after usb - after modules -} - -start() { - ebegin "Starting g15daemon" - - # Does the input device already exist? - if [[ -e /proc/modules && ! -e /dev/input/uinput ]] ; then - # We can load modules, but uinput device does not exist - einfo "Loading uinput module" - /sbin/modprobe uinput &> /dev/null - fi - - local SWITCHKEY="" - [[ ${CLIENT_SWITCH_L1} = "yes" ]] && SWITCHKEY="--switch" - start-stop-daemon --start --background --pidfile /var/run/g15daemon.pid \ - --exec /usr/sbin/g15daemon -- ${SWITCHKEY} - eend $? "Failed to start g15daemon." -} - -stop() { - ebegin "Stopping g15daemon" - /usr/sbin/g15daemon -k 2&> /dev/null \ - || start-stop-daemon --stop --quiet --pidfile /var/run/g15daemon.pid - eend $? -} diff --git a/app-misc/g15daemon/files/g15daemon-1.2.7-r1.initd b/app-misc/g15daemon/files/g15daemon-1.2.7-r1.initd deleted file mode 100644 index 4ab66102e46b..000000000000 --- a/app-misc/g15daemon/files/g15daemon-1.2.7-r1.initd +++ /dev/null @@ -1,40 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15daemon/files/g15daemon-1.2.7-r1.initd,v 1.1 2007/10/04 08:43:58 rbu Exp $ - -# Init script for g15daemon - -depend() { - after hotplug - after usb - after modules -} - -start() { - ebegin "Starting g15daemon" - - # Does the input device already exist? - if [ -e /proc/modules -a ! -e /dev/input/uinput ]; then - # We can load modules, but uinput device does not exist - einfo "Loading uinput module" - /sbin/modprobe uinput > /dev/null 2> /dev/null - fi - - local SWITCHKEY="" - [ "${CLIENT_SWITCH_L1}" = "yes" ] && SWITCHKEY="--switch" - start-stop-daemon --start --background --pidfile /var/run/g15daemon.pid \ - --exec /usr/sbin/g15daemon -- ${SWITCHKEY} - eend $? "Failed to start g15daemon." -} - -stop() { - ebegin "Stopping g15daemon" - local KILLOPT="-k" - if [ $BACKLIGHT_OFF = "yes" ]; then - KILLOPT="-K" - fi - /usr/sbin/g15daemon ${KILLOPT} >/dev/null 2> /dev/null&&wait `cat /var/run/g15daemon.pid` \ - || start-stop-daemon --signal SIGKILL --stop --quiet --pidfile /var/run/g15daemon.pid - eend $? -} diff --git a/app-misc/g15daemon/files/g15daemon-1.2.7.initd b/app-misc/g15daemon/files/g15daemon-1.2.7.initd deleted file mode 100644 index 13996c8fcf1f..000000000000 --- a/app-misc/g15daemon/files/g15daemon-1.2.7.initd +++ /dev/null @@ -1,38 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/g15daemon/files/g15daemon-1.2.7.initd,v 1.1 2007/02/18 19:38:16 rbu Exp $ - -# Init script for g15daemon - -depend() { - after hotplug - after usb - after modules -} - -start() { - ebegin "Starting g15daemon" - - # Does the input device already exist? - if [[ -e /proc/modules && ! -e /dev/input/uinput ]] ; then - # We can load modules, but uinput device does not exist - einfo "Loading uinput module" - /sbin/modprobe uinput &> /dev/null - fi - - local SWITCHKEY="" - [[ ${CLIENT_SWITCH_L1} = "yes" ]] && SWITCHKEY="--switch" - start-stop-daemon --start --background --pidfile /var/run/g15daemon.pid \ - --exec /usr/sbin/g15daemon -- ${SWITCHKEY} - eend $? "Failed to start g15daemon." -} - -stop() { - ebegin "Stopping g15daemon" - local KILLOPT="-k" - [[ ${BACKLIGHT_OFF} = "yes" ]] && KILLOPT="-K" - /usr/sbin/g15daemon ${KILLOPT} 2&> /dev/null \ - || start-stop-daemon --stop --quiet --pidfile /var/run/g15daemon.pid - eend $? -} |