diff options
author | 2006-11-30 16:42:10 +0000 | |
---|---|---|
committer | 2006-11-30 16:42:10 +0000 | |
commit | 6d10f225e489ac32f9d473541a14899db604e707 (patch) | |
tree | 5af6c9a69c8bf62263d897f7f5c3b6f43dd43c6f /sys-power/cpufreqd/cpufreqd-2.2.1.ebuild | |
parent | Update xerces dep for upcoming 2.6 slotmove. (diff) | |
download | gentoo-2-6d10f225e489ac32f9d473541a14899db604e707.tar.gz gentoo-2-6d10f225e489ac32f9d473541a14899db604e707.tar.bz2 gentoo-2-6d10f225e489ac32f9d473541a14899db604e707.zip |
Version bump.
(Portage version: 2.1.2_rc2-r3)
Diffstat (limited to 'sys-power/cpufreqd/cpufreqd-2.2.1.ebuild')
-rw-r--r-- | sys-power/cpufreqd/cpufreqd-2.2.1.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/sys-power/cpufreqd/cpufreqd-2.2.1.ebuild b/sys-power/cpufreqd/cpufreqd-2.2.1.ebuild new file mode 100644 index 000000000000..542ca02c885f --- /dev/null +++ b/sys-power/cpufreqd/cpufreqd-2.2.1.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufreqd/cpufreqd-2.2.1.ebuild,v 1.1 2006/11/30 16:42:10 peper Exp $ + +inherit eutils autotools + +NVCLOCK_VERSION="0.8b" + +DESCRIPTION="CPU Frequency Daemon" +HOMEPAGE="http://cpufreqd.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 + nvidia? ( http://www.linuxhardware.org/nvclock/nvclock${NVCLOCK_VERSION}.tar.gz )" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +IUSE="acpi apm lm_sensors nforce2 nvidia pmu" +RDEPEND=">=sys-power/cpufrequtils-002 + lm_sensors? ( sys-apps/lm_sensors )" +DEPEND="sys-apps/sed + ${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i -e "s:acpi_event:acpi:" "${S}"/cpufreqd.conf + + if use nvidia; then + cd "${WORKDIR}"/nvclock${NVCLOCK_VERSION} + epatch "${FILESDIR}"/nvclock${NVCLOCK_VERSION}-fpic.patch + fi +} + +src_compile() { + local config + + if use nvidia; then + cd "${WORKDIR}"/nvclock${NVCLOCK_VERSION} + econf \ + --disable-gtk \ + --disable-qt \ + --disable-nvcontrol \ + || die "econf nvclock failed" + emake -j1 || die "emake nvclock failed" + config="--enable-nvclock=${WORKDIR}/nvclock${NVCLOCK_VERSION}" + fi + + cd "${S}" + econf \ + $(use_enable acpi) \ + $(use_enable apm) \ + $(use_enable lm_sensors sensors) \ + $(use_enable nforce2) \ + $(use_enable pmu) \ + ${config} \ + || die "econf failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + + dodoc AUTHORS ChangeLog NEWS README TODO + + newinitd "${FILESDIR}"/${P}-init.d ${PN} +} + +pkg_postinst() { + if [ -f "${ROOT}"/etc/conf.d/cpufreqd ] ; then + ewarn "Please make sure, you remove \"/etc/conf.d/cpufreqd\". It breaks" + ewarn "the init-script! (#152096)" + ewarn + ewarn "Use this if you don't know how to do it:" + ewarn "# rm /etc/conf.d/cpufreqd" + fi +} |