diff options
author | Henrik Brix Andersen <brix@gentoo.org> | 2006-02-13 15:47:31 +0000 |
---|---|---|
committer | Henrik Brix Andersen <brix@gentoo.org> | 2006-02-13 15:47:31 +0000 |
commit | 06e9b6c8532e9ad9299689652f58596a558d1e2f (patch) | |
tree | ae1e3afc912cab913a926f1f9144fa05bc4db81d /sys-power | |
parent | Stable on x86. (diff) | |
download | historical-06e9b6c8532e9ad9299689652f58596a558d1e2f.tar.gz historical-06e9b6c8532e9ad9299689652f58596a558d1e2f.tar.bz2 historical-06e9b6c8532e9ad9299689652f58596a558d1e2f.zip |
Pruned old ebuild.
Package-Manager: portage-2.0.54
Diffstat (limited to 'sys-power')
-rw-r--r-- | sys-power/acpid/ChangeLog | 6 | ||||
-rw-r--r-- | sys-power/acpid/acpid-1.0.2-r2.ebuild | 51 | ||||
-rwxr-xr-x | sys-power/acpid/files/acpid.rc6 | 28 | ||||
-rw-r--r-- | sys-power/acpid/files/default.sh-gentoo.patch | 27 | ||||
-rw-r--r-- | sys-power/acpid/files/digest-acpid-1.0.2-r2 | 1 | ||||
-rw-r--r-- | sys-power/cpufrequtils/ChangeLog | 7 | ||||
-rw-r--r-- | sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild | 37 | ||||
-rw-r--r-- | sys-power/cpufrequtils/files/cpufrequtils-0.3-conf.d | 6 | ||||
-rw-r--r-- | sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d | 19 | ||||
-rw-r--r-- | sys-power/cpufrequtils/files/digest-cpufrequtils-0.3-r1 | 1 |
10 files changed, 11 insertions, 172 deletions
diff --git a/sys-power/acpid/ChangeLog b/sys-power/acpid/ChangeLog index 597c6556c76a..6e946777787a 100644 --- a/sys-power/acpid/ChangeLog +++ b/sys-power/acpid/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-power/acpid # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/ChangeLog,v 1.18 2006/01/19 19:35:11 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/ChangeLog,v 1.19 2006/02/13 15:45:03 brix Exp $ + + 13 Feb 2006; Henrik Brix Andersen <brix@gentoo.org> -files/acpid.rc6, + -files/default.sh-gentoo.patch, -acpid-1.0.2-r2.ebuild: + Pruned old ebuild. 19 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org> acpid-1.0.4-r2.ebuild: Stable on amd64. diff --git a/sys-power/acpid/acpid-1.0.2-r2.ebuild b/sys-power/acpid/acpid-1.0.2-r2.ebuild deleted file mode 100644 index f34fdc55fe8b..000000000000 --- a/sys-power/acpid/acpid-1.0.2-r2.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/acpid-1.0.2-r2.ebuild,v 1.2 2005/09/08 13:01:50 brix Exp $ - -inherit eutils - -DESCRIPTION="Daemon for Advanced Configuration and Power Interface" -HOMEPAGE="http://acpid.sourceforge.net/" -SRC_URI="mirror://sourceforge/acpid/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 -ppc alpha amd64 ia64" -IUSE="" - -# We need the patched kernel with latest ACPI code, or else it will -# be broken. Hopefully it will be merge into release kernel soon. -DEPEND="virtual/libc" - -src_compile() { - # Fix bug # 22238 (default.sh broken) - cd debian && epatch ${FILESDIR}/default.sh-gentoo.patch && cd .. - - # DO NOT COMPILE WITH OPTIMISATIONS. - # That is a note to the devs. IF you are a user, go ahead and optimise - # if you want, but we won't support bugs associated with that" - make INSTPREFIX=${D} || die -} - -src_install() { - make INSTPREFIX=${D} install || die - - dodir /etc/acpi/events - exeinto /etc/acpi - doexe debian/default.sh - insinto /etc/acpi/events - doins debian/default - - dodoc README Changelog - - exeinto /etc/init.d - newexe ${FILESDIR}/acpid.rc6 acpid -} - -pkg_postinst() { - echo - einfo "You may wish to read the Gentoo Linux Power Management Guide," - einfo "which can be found online at:" - einfo " http://www.gentoo.org/doc/en/power-management-guide.xml" - echo -} diff --git a/sys-power/acpid/files/acpid.rc6 b/sys-power/acpid/files/acpid.rc6 deleted file mode 100755 index 29a8629774ff..000000000000 --- a/sys-power/acpid/files/acpid.rc6 +++ /dev/null @@ -1,28 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/acpid/files/acpid.rc6,v 1.1 2005/03/15 19:15:53 ciaranm Exp $ - -depend() { - need localmount -} - -checkconfig() { - if [ ! -e /proc/acpi ] ; then - eerror "ACPI support has not been compiled into the kernel" - return 1 - fi -} - -start() { - checkconfig || return 1 - ebegin "Starting acpid" - start-stop-daemon --start --quiet --exec /usr/sbin/acpid -- -c /etc/acpi/events - eend $? -} - -stop() { - ebegin "Stopping acpid" - start-stop-daemon --stop --quiet --exec /usr/sbin/acpid - eend $? -} diff --git a/sys-power/acpid/files/default.sh-gentoo.patch b/sys-power/acpid/files/default.sh-gentoo.patch deleted file mode 100644 index 6da547d2ded1..000000000000 --- a/sys-power/acpid/files/default.sh-gentoo.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- acpi/default.sh 2003-07-27 19:06:47.000000000 +0200 -+++ acpi-gentoo/default.sh 2003-07-27 19:11:45.000000000 +0200 -@@ -3,17 +3,20 @@ - - set $* - --case "$1" in -+group=${1/\/*/} -+action=${1/*\//} -+ -+case "$group" in - button) -- case "$2" in -+ case "$action" in - power) /sbin/init 0 - ;; -- *) logger "ACPI action $2 is not defined" -+ *) logger "ACPI action $action is not defined" - ;; - esac - ;; - - *) -- logger "ACPI group $1 / action $2 is not defined" -+ logger "ACPI group $group / action $action is not defined" - ;; - esac diff --git a/sys-power/acpid/files/digest-acpid-1.0.2-r2 b/sys-power/acpid/files/digest-acpid-1.0.2-r2 deleted file mode 100644 index ea5c9cf27a55..000000000000 --- a/sys-power/acpid/files/digest-acpid-1.0.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 15884aaf0b82717954f9366b5c00808b acpid-1.0.2.tar.gz 23554 diff --git a/sys-power/cpufrequtils/ChangeLog b/sys-power/cpufrequtils/ChangeLog index f75f2be570d7..e526f0d97bff 100644 --- a/sys-power/cpufrequtils/ChangeLog +++ b/sys-power/cpufrequtils/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-power/cpufrequtils # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/ChangeLog,v 1.17 2006/01/24 18:11:47 chutzpah Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/ChangeLog,v 1.18 2006/02/13 15:47:31 brix Exp $ + + 13 Feb 2006; Henrik Brix Andersen <brix@gentoo.org> + -files/cpufrequtils-0.3-conf.d, -files/cpufrequtils-0.3-init.d, + -cpufrequtils-0.3-r1.ebuild: + Pruned old ebuild. 24 Jan 2006; Patrick McLean <chutzpah@gentoo.org> cpufrequtils-0.4.ebuild: Stable on amd64; bug #119926. diff --git a/sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild b/sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild deleted file mode 100644 index c70969512b2e..000000000000 --- a/sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2006 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild,v 1.6 2006/01/02 18:17:27 hansmi Exp $ - -# The following works for both releases and pre-releases -MY_P=${P/_/-} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="Userspace utilities and library for the Linux kernel cpufreq subsystem" -HOMEPAGE="http://www.kernel.org/pub/linux/utils/kernel/cpufreq/cpufrequtils.html" -SRC_URI="mirror://kernel/linux/utils/kernel/cpufreq/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ~sparc x86" - -IUSE="nls" -DEPEND="sys-fs/sysfsutils" - -src_compile() { - econf \ - --enable-proc \ - --enable-sysfs=/sys \ - $(use_enable nls) \ - || die "econf failed" - - emake || die "emake failed" -} - -src_install() { - emake DESTDIR=${D} install || die "emake install failed" - - newconfd ${FILESDIR}/${P}-conf.d ${PN} - newinitd ${FILESDIR}/${P}-init.d ${PN} - - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/sys-power/cpufrequtils/files/cpufrequtils-0.3-conf.d b/sys-power/cpufrequtils/files/cpufrequtils-0.3-conf.d deleted file mode 100644 index 5f2d91fedc54..000000000000 --- a/sys-power/cpufrequtils/files/cpufrequtils-0.3-conf.d +++ /dev/null @@ -1,6 +0,0 @@ -# /etc/conf.d/cpufrequtils: config file for /etc/init.d/cpufrequtils - -# Which governor to use. Must be one of the governors listed in: -# cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors -# -GOVERNOR="ondemand" diff --git a/sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d b/sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d deleted file mode 100644 index 1524a53aacd8..000000000000 --- a/sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d +++ /dev/null @@ -1,19 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d,v 1.1 2005/05/16 12:10:43 brix Exp $ - -checkconfig() { - if [[ -z "${GOVERNOR}" ]]; then - eerror "No governor set in /etc/conf.d/cpufrequtils" - return 1 - fi -} - -start() { - checkconfig || return 1 - - ebegin "Enabling ${GOVERNOR} cpufreq governor" - cpufreq-set -g ${GOVERNOR} - eend ${?} -} diff --git a/sys-power/cpufrequtils/files/digest-cpufrequtils-0.3-r1 b/sys-power/cpufrequtils/files/digest-cpufrequtils-0.3-r1 deleted file mode 100644 index e24c69ad2348..000000000000 --- a/sys-power/cpufrequtils/files/digest-cpufrequtils-0.3-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 ccd1423d76d19889652f06b7c018106b cpufrequtils-0.3.tar.bz2 421486 |