diff options
author | Michael Imhof <tantive@gentoo.org> | 2003-07-23 15:06:24 +0000 |
---|---|---|
committer | Michael Imhof <tantive@gentoo.org> | 2003-07-23 15:06:24 +0000 |
commit | 7bf671c55b506c077c02c9768475abf5811ef3b8 (patch) | |
tree | 3b0dd6623a63878df1e0f90bf142382d357b5f6c /sys-apps/cpufreqd | |
parent | Initial release. Taken from cpufreqd.sf.net (diff) | |
download | gentoo-2-7bf671c55b506c077c02c9768475abf5811ef3b8.tar.gz gentoo-2-7bf671c55b506c077c02c9768475abf5811ef3b8.tar.bz2 gentoo-2-7bf671c55b506c077c02c9768475abf5811ef3b8.zip |
Initial release. Taken from cpufreqd.sf.net
Diffstat (limited to 'sys-apps/cpufreqd')
-rw-r--r-- | sys-apps/cpufreqd/ChangeLog | 8 | ||||
-rw-r--r-- | sys-apps/cpufreqd/Manifest | 3 | ||||
-rw-r--r-- | sys-apps/cpufreqd/cpufreqd-1.0.ebuild | 34 | ||||
-rw-r--r-- | sys-apps/cpufreqd/files/digest-cpufreqd-1.0 | 1 |
4 files changed, 45 insertions, 1 deletions
diff --git a/sys-apps/cpufreqd/ChangeLog b/sys-apps/cpufreqd/ChangeLog new file mode 100644 index 000000000000..41f604f6b448 --- /dev/null +++ b/sys-apps/cpufreqd/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for sys-apps/autospeedstep +# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/cpufreqd/ChangeLog,v 1.1 2003/07/23 15:06:05 tantive Exp $ + +*cpufreqd-1.0 (23 Jul 2003) + + 18 Jun 2003; Michael Imhof <tantive@gentoo.org> cpufreqd-1.0.ebuild : + Initial release. Taken from cpufreqd.sf.net. diff --git a/sys-apps/cpufreqd/Manifest b/sys-apps/cpufreqd/Manifest index 93eaa68021dd..3f43cd079758 100644 --- a/sys-apps/cpufreqd/Manifest +++ b/sys-apps/cpufreqd/Manifest @@ -1,2 +1,3 @@ -MD5 996658d2ad1fde29c0cc6b099159fac6 cpufreqd-1.0.ebuild 907 +MD5 70b02e0483bd939fc5b45cb79077d097 cpufreqd-1.0.ebuild 917 +MD5 c4c100af9123b44aff9fcaad8035ecfe ChangeLog 370 MD5 38564e062a23f984a5b70fee3c2f27c3 files/digest-cpufreqd-1.0 64 diff --git a/sys-apps/cpufreqd/cpufreqd-1.0.ebuild b/sys-apps/cpufreqd/cpufreqd-1.0.ebuild new file mode 100644 index 000000000000..ba8b7140f95c --- /dev/null +++ b/sys-apps/cpufreqd/cpufreqd-1.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2003 Robert Gogolok +# Distributed under the terms of the GNU General Public License v2 +# email: robertgogolok@web.de +# ------ +# Please email me if you have suggestions how to improve this ebuild +# or when you need help to install it. +DESCRIPTION="Daemon to adjust cpu speed for kernel using the cpufreq patch." +SRC_URI="http://osdn.dl.sourceforge.net/sourceforge/cpufreqd/${P}.tar.gz" +HOMEPAGE="http://sourceforge.net/projects/cpufreqd/" +KEYWORDS="x86" +LICENSE="GPL-1" +SLOT="0" + +src_compile() { + ./configure \ + --host=${CHOST} \ + --prefix=/ \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc + make || die "compile of cpufreqd failed" +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README Authors TODO + + exeinto /etc/init.d + newexe ${S}/scripts/gentoo/cpufreqd cpufreqd +} +pkg_postinst() { + einfo "A default config file is copied to /etc/cpufreqd.conf" +} + diff --git a/sys-apps/cpufreqd/files/digest-cpufreqd-1.0 b/sys-apps/cpufreqd/files/digest-cpufreqd-1.0 new file mode 100644 index 000000000000..a7add06918e3 --- /dev/null +++ b/sys-apps/cpufreqd/files/digest-cpufreqd-1.0 @@ -0,0 +1 @@ +MD5 d1ff917dd364b3246ef0fe2774f7d0bc cpufreqd-1.0.tar.gz 196498 |