diff options
Diffstat (limited to 'sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild')
-rw-r--r-- | sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild b/sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild new file mode 100644 index 000000000000..d64144ad9454 --- /dev/null +++ b/sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufreqd/cpufreqd-1.1.2-r1.ebuild,v 1.1 2005/03/14 22:48:38 ciaranm Exp $ + +inherit eutils flag-o-matic eutils + +DESCRIPTION="Daemon to adjust CPU speed for power saving" +HOMEPAGE="http://sourceforge.net/projects/cpufreqd/" +SRC_URI="mirror://sourceforge/cpufreqd/${P}.tar.gz" +DEPEND=">=sys-apps/sed-4" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc amd64" +IUSE="" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${FILESDIR}/${PV}-prefer-sysfs.patch +} + +src_compile() { + cd ${S} + + # cpufreqd segfaults when built as PIE + filter-flags "-fpie" "-fPIE" "-Wl,-pie" + + econf || die "econf failed for ${P}" +} + +src_install() { + make DESTDIR=${D} install || die + dodoc README Authors TODO + + exeinto /etc/init.d + newexe ${S}/scripts/gentoo/cpufreqd cpufreqd +} + +pkg_postinst() { + echo + einfo "A default config file has been copied to /etc/cpufreqd.conf" + echo + einfo "CPUFreqd does not support using percentage frequencies on" + einfo "2.6 kernels where sysfs is used instead - please manually" + einfo "edit the config file to use an absolute value instead, if" + einfo "you are using a 2.6 series kernel." + echo +} |