diff options
author | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-19 10:57:20 +0000 |
---|---|---|
committer | Sergey Popov <pinkbyte@gentoo.org> | 2012-11-19 10:57:20 +0000 |
commit | 769c744c96db8c4f8e7b6ada1b80625d38aa8a1c (patch) | |
tree | 6dba26905a3b66042212d523679e13d4ff2bf889 /sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild | |
parent | version bump (diff) | |
download | gentoo-2-769c744c96db8c4f8e7b6ada1b80625d38aa8a1c.tar.gz gentoo-2-769c744c96db8c4f8e7b6ada1b80625d38aa8a1c.tar.bz2 gentoo-2-769c744c96db8c4f8e7b6ada1b80625d38aa8a1c.zip |
Revision bump: EAPI 4, QA cleanups, support for user patches, fix for bug #389749
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild')
-rw-r--r-- | sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild | 77 |
1 files changed, 77 insertions, 0 deletions
diff --git a/sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild b/sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild new file mode 100644 index 000000000000..af872ac7cf2c --- /dev/null +++ b/sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild @@ -0,0 +1,77 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-power/cpufreqd/cpufreqd-2.4.2-r2.ebuild,v 1.1 2012/11/19 10:57:20 pinkbyte Exp $ + +EAPI="4" + +inherit eutils + +NVCLOCK_VERSION="0.8b" + +DESCRIPTION="CPU Frequency Daemon" +HOMEPAGE="http://www.linux.it/~malattia/wiki/index.php/Cpufreqd" +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 ~ppc64 ~sparc ~x86" + +IUSE="acpi apm lm_sensors nforce2 nvidia pmu" +RDEPEND=">=sys-power/cpufrequtils-002 + sys-fs/sysfsutils + lm_sensors? ( >sys-apps/lm_sensors-3 )" +DEPEND="sys-apps/sed + ${RDEPEND}" + +DOCS=( AUTHORS ChangeLog NEWS README TODO ) + +src_prepare() { + epatch "${FILESDIR}"/${PN}-conf.d.patch + epatch "${FILESDIR}"/${P}-PATH_MAX.patch #318287 + epatch "${FILESDIR}"/${PN}-battery-attr-name.patch #389749 + + if use nvidia; then + cd "${WORKDIR}/nvclock${NVCLOCK_VERSION}" + epatch "${FILESDIR}/nvclock${NVCLOCK_VERSION}-fpic.patch" + fi + + epatch_user +} + +src_configure() { + local config + + if use nvidia; then + cd "${WORKDIR}/nvclock${NVCLOCK_VERSION}" || die 'cd to nvclock dir failed' + econf \ + --disable-gtk \ + --disable-qt \ + --disable-nvcontrol + emake -j1 + config="--enable-nvclock=${WORKDIR}/nvclock${NVCLOCK_VERSION}" + fi + + cd "${S}" || die 'cd to source dir failed' + econf \ + $(use_enable acpi) \ + $(use_enable apm) \ + $(use_enable lm_sensors sensors) \ + $(use_enable nforce2) \ + $(use_enable pmu) \ + ${config} +} + +src_install() { + default + prune_libtool_files --all + newinitd "${FILESDIR}"/${PN}-init.d ${PN} +} + +pkg_postinst() { + if [ -f "${ROOT}"/etc/conf.d/cpufreqd ] ; then + ewarn "An old \"/etc/conf.d/cpufreqd\" file was found. It breaks" + ewarn "the new init script! Please remove it." + ewarn "# rm /etc/conf.d/cpufreqd" + fi +} |