blob: 1515c24d74a1e7b30d6089031b929faaa81ef7b2 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit flag-o-matic toolchain-funcs
DESCRIPTION="A daemon to control laptop power consumption via cpufreq and disk standby"
HOMEPAGE="http://freecode.com/projects/cpudyn/"
SRC_URI="http://mnm.uib.es/~gallir/${PN}/download/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE=""
S=${WORKDIR}/${PN}
PATCHES=(
"${FILESDIR}/${PN}-0.99.0-init_conf_updates.patch"
)
src_prepare() {
# fix #570082 by restoring pre-GCC5 inline semantics
append-cflags -std=gnu89
default
}
src_compile() {
emake LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" cpudynd
}
src_install() {
dosbin cpudynd
doman cpudynd.8
dodoc INSTALL README VERSION changelog
docinto html
dodoc *.html
newinitd "${FILESDIR}"/cpudyn.init cpudyn
newconfd debian/cpudyn.conf cpudyn
}
pkg_postinst() {
einfo "Configuration file is /etc/conf.d/cpudyn."
}
|