blob: 0cd0f456007b39a4acfface60d66d6e8b430b56b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2007 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.3 2007/03/13 16:53:43 phreak 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}"
epatch "${FILESDIR}"/${PN}-conf.d.patch
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
}
|