blob: fb0c97448deb025bf22f3b71e72d25ec5429a36b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/athcool/athcool-0.3.8.ebuild,v 1.1 2005/03/14 22:56:32 ciaranm Exp $
inherit eutils
DESCRIPTION="small utility to toggle Powersaving mode for AMD Athlon/Duron processors"
HOMEPAGE="http://members.jcom.home.ne.jp/jacobi/linux/softwares.html#athcool"
SRC_URI="http://members.jcom.home.ne.jp/jacobi/linux/files/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE=""
DEPEND="sys-apps/pciutils"
src_compile() {
ewarn "This program is designed for use with AMD Athlon/Duron processors only"
epause 2
emake || die
}
src_install() {
einstall || die
exeinto /etc/init.d
doexe ${FILESDIR}/athcool
dodoc COPYING README ChangeLog
}
pkg_postinst() {
ewarn "WARNING: This program can cause instability in your system."
ewarn "Use at your own risk!"
epause 2
}
|