blob: f586ec30b54d7491acb22e258462b70c45e0f2a8 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/powernowd/powernowd-0.90.ebuild,v 1.6 2004/06/24 22:22:26 agriffis Exp $
EV=hun6
DESCRIPTION="Daemon to control the speed and voltage of CPUs"
HOMEPAGE="http://www.deater.net/john/powernowd.html http://n-dimensional.de/projects/cpufreq/"
SRC_URI="http://n-dimensional.de/projects/cpufreq/${P}${EV}.tar.gz"
#http://www.deater.net/john/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64 ppc"
IUSE=""
S="${WORKDIR}/${P}${EV}"
src_unpack() {
unpack ${A}
cd ${S}
sed -i "s:-O2:${CFLAGS}:" Makefile
}
src_compile() {
emake || die "emake failed"
}
src_install() {
dosbin powernowd || die
doman debian/powernowd.1
dodoc README
insinto /etc/conf.d
newins ${FILESDIR}/powernowd.confd powernowd
exeinto /etc/init.d
newexe ${FILESDIR}/powernowd.rc powernowd
}
|