blob: 44c20fd9a67214f2b88bb71bbb8e4ee85c44e73b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/ncpufreqd/ncpufreqd-2.3.ebuild,v 1.2 2007/04/28 17:13:01 tove Exp $
DESCRIPTION="Daemon controlling CPU speed and temperature"
HOMEPAGE="http://www.nelchael.net/"
SRC_URI="http://download.nelchael.net/${PN}/${P}.tar.bz2"
LICENSE="ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/logger"
src_install() {
make DESTDIR="${D}" install || die "emake install failed"
doinitd "${S}"/gentoo-init.d/ncpufreqd
dodoc AUTHORS ChangeLog NEWS README
}
|