summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrik Brix Andersen <brix@gentoo.org>2006-02-13 15:47:31 +0000
committerHenrik Brix Andersen <brix@gentoo.org>2006-02-13 15:47:31 +0000
commit06e9b6c8532e9ad9299689652f58596a558d1e2f (patch)
treeae1e3afc912cab913a926f1f9144fa05bc4db81d /sys-power/cpufrequtils
parentStable on x86. (diff)
downloadhistorical-06e9b6c8532e9ad9299689652f58596a558d1e2f.tar.gz
historical-06e9b6c8532e9ad9299689652f58596a558d1e2f.tar.bz2
historical-06e9b6c8532e9ad9299689652f58596a558d1e2f.zip
Pruned old ebuild.
Package-Manager: portage-2.0.54
Diffstat (limited to 'sys-power/cpufrequtils')
-rw-r--r--sys-power/cpufrequtils/ChangeLog7
-rw-r--r--sys-power/cpufrequtils/cpufrequtils-0.3-r1.ebuild37
-rw-r--r--sys-power/cpufrequtils/files/cpufrequtils-0.3-conf.d6
-rw-r--r--sys-power/cpufrequtils/files/cpufrequtils-0.3-init.d19
-rw-r--r--sys-power/cpufrequtils/files/digest-cpufrequtils-0.3-r11
5 files changed, 6 insertions, 64 deletions
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