summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-08-22 13:42:01 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-08-22 13:42:01 +0000
commit2c0ae03f787e9e921bb430742ba17139ad0b5e3e (patch)
treefb551ec956c5ce5ae826a104e5adc5dfbc060dca /app-laptop
parentAdd qt-test as a DEPEND, thanks to Vladimir V. Kamarzin, wrt to bug #432264 (diff)
downloadgentoo-2-2c0ae03f787e9e921bb430742ba17139ad0b5e3e.tar.gz
gentoo-2-2c0ae03f787e9e921bb430742ba17139ad0b5e3e.tar.bz2
gentoo-2-2c0ae03f787e9e921bb430742ba17139ad0b5e3e.zip
Remove old.
(Portage version: 2.1.11.10/cvs/Linux x86_64)
Diffstat (limited to 'app-laptop')
-rw-r--r--app-laptop/i8kutils/ChangeLog6
-rw-r--r--app-laptop/i8kutils/files/i8k.init48
-rw-r--r--app-laptop/i8kutils/i8kutils-1.25-r1.ebuild58
-rw-r--r--app-laptop/i8kutils/i8kutils-1.25.ebuild45
4 files changed, 5 insertions, 152 deletions
diff --git a/app-laptop/i8kutils/ChangeLog b/app-laptop/i8kutils/ChangeLog
index b0df4547d135..a98c0412365e 100644
--- a/app-laptop/i8kutils/ChangeLog
+++ b/app-laptop/i8kutils/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-laptop/i8kutils
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.21 2012/08/21 11:06:31 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/ChangeLog,v 1.22 2012/08/22 13:42:00 kensington Exp $
+
+ 22 Aug 2012; Michael Palimaka <kensington@gentoo.org> -files/i8k.init,
+ -i8kutils-1.25-r1.ebuild, -i8kutils-1.25.ebuild:
+ Remove old.
21 Aug 2012; Johannes Huber <johu@gentoo.org> i8kutils-1.33.ebuild:
Stable for x86, wrt bug #428876
diff --git a/app-laptop/i8kutils/files/i8k.init b/app-laptop/i8kutils/files/i8k.init
deleted file mode 100644
index 98003962ff77..000000000000
--- a/app-laptop/i8kutils/files/i8k.init
+++ /dev/null
@@ -1,48 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- after alsasound
- after modules
-}
-
-checkconfig() {
- if [ ! -e /proc/i8k ] ; then
- eerror "The i8k driver is not installed"
- return 1
- fi
-}
-
-start() {
- checkconfig || return 1
- if [ -n "$VOLUME_UP$VOLUME_DOWN$VOLUME_MUTE" ] ; then
- ebegin "Starting i8kbuttons"
- start-stop-daemon --start --quiet --pidfile /var/run/i8kbuttons.pid \
- --make-pidfile --exec /usr/bin/i8kbuttons --background \
- -- ${VOLUME_UP:+-u "${VOLUME_UP}"} \
- ${VOLUME_DOWN:+-d "$VOLUME_DOWN"} \
- ${VOLUME_MUTE:+-m "$VOLUME_MUTE"} \
- ${BUTTON_REPEAT:+-r "$BUTTON_REPEAT"}
- eend $?
- fi
- if [ ! -n "$NOMON" ]; then
- ebegin "Starting i8kmon"
- start-stop-daemon --start -b --quiet \
- --exec /usr/bin/i8kmon --background \
- --name "tclsh /usr/bin/i8kmon" \
- -- -d ${NOAUTO:+-na} ${TIMEOUT:+-t $TIMEOUT}
- eend $?
- fi
-}
-
-stop() {
- if [ -n "$VOLUME_UP$VOLUME_DOWN$VOLUME_MUTE" ] ; then
- ebegin "Stopping i8kbuttons"
- start-stop-daemon --stop --quiet --pidfile /var/run/i8kbuttons.pid
- eend $?
- fi
- if [ ! -n "$NOMON" ]; then
- ebegin "Stopping i8kmon"
- start-stop-daemon --stop --quiet --name "tclsh /usr/bin/i8kmon"
- eend $?
- fi
-}
diff --git a/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild b/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild
deleted file mode 100644
index 0b196effe7bc..000000000000
--- a/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25-r1.ebuild,v 1.4 2012/07/01 11:03:09 jlec Exp $
-
-EAPI=4
-
-inherit toolchain-funcs
-
-DESCRIPTION="Dell Inspiron and Latitude utilities"
-HOMEPAGE="http://packages.debian.org/sid/i8kutils"
-SRC_URI="http://people.debian.org/~dz/i8k/${P/-/_}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="examples tk"
-
-DEPEND="tk? ( dev-lang/tk )"
-RDEPEND="${DEPEND}"
-
-DOCS=( README.i8kutils )
-
-src_prepare() {
- sed \
- -e '/^CC/d' \
- -e '/^CFLAGS/d' \
- -e 's: -g : $(LDFLAGS) :g' \
- -i Makefile || die
-
- tc-export CC
-}
-
-src_compile() {
- make all || die
-}
-
-src_install() {
- dobin i8kbuttons i8kctl
- doman i8kbuttons.1 i8kctl.1
- dosym /usr/bin/i8kctl /usr/bin/i8kfan
-
- use examples && dodoc -r examples
-
- newinitd "${FILESDIR}"/i8k.init-r1 i8k
- newconfd "${FILESDIR}"/i8k.conf i8k
-
- if use tk; then
- dobin i8kmon
- doman i8kmon.1
- dodoc i8kmon.conf
- else
- cat >> "${ED}"/etc/conf.d/i8k <<- EOF
- # i8kmon disabled because the package was installed without USE=tk
- NOMON=1
- EOF
- fi
-
-}
diff --git a/app-laptop/i8kutils/i8kutils-1.25.ebuild b/app-laptop/i8kutils/i8kutils-1.25.ebuild
deleted file mode 100644
index 3e308560b71c..000000000000
--- a/app-laptop/i8kutils/i8kutils-1.25.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-laptop/i8kutils/i8kutils-1.25.ebuild,v 1.14 2012/07/01 11:03:09 jlec Exp $
-
-EAPI=4
-
-DESCRIPTION="Dell Inspiron and Latitude utilities"
-HOMEPAGE="http://packages.debian.org/sid/i8kutils"
-SRC_URI="http://people.debian.org/~dz/i8k/${P/-/_}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* amd64 x86"
-IUSE="tk"
-
-DEPEND="tk? ( dev-lang/tk )"
-RDEPEND="${DEPEND}"
-
-src_compile() {
- make all || die
-}
-
-src_install() {
- dobin i8kbuttons i8kctl
- doman i8kbuttons.1 i8kctl.1
- dosym /usr/bin/i8kctl /usr/bin/i8kfan
- dodoc README.i8kutils
- docinto examples/
- dodoc examples/*
-
- newinitd "${FILESDIR}"/i8k.init i8k
- newconfd "${FILESDIR}"/i8k.conf i8k
-
- if use tk; then
- dobin i8kmon
- doman i8kmon.1
- docinto /
- dodoc i8kmon.conf
- else
- echo >> "${ED}"/etc/conf.d/i8k
- echo '# i8kmon disabled because the package was installed without USE=tk' >> "${ED}"/etc/conf.d/i8k
- echo 'NOMON=1' >> "${ED}"/etc/conf.d/i8k
- fi
-
-}