blob: cc4e553caf67b16353611369122700cd32698439 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=3
inherit toolchain-funcs
DESCRIPTION="Yet Another Configuration and Power Interface"
HOMEPAGE="http://www.ngolde.de/yacpi.html"
SRC_URI="http://www.ngolde.de/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="sys-libs/libacpi
sys-libs/ncurses"
src_prepare() {
sed -i \
-e 's:= -O2 -Wall -g:+= -Wall:' \
-e 's:${CC} -Wall:${CC} ${LDFLAGS} ${CFLAGS}:' \
-e '/strip/d' \
-e 's:COPYING::' \
Makefile || die
}
src_compile() {
emake CC="$(tc-getCC)" || die
}
src_install() {
emake \
prefix="${D}/usr" \
DOCPATH="${D}/usr/share/doc/${PF}" \
install || die
prepalldocs
}
|