summaryrefslogtreecommitdiff
blob: b4b950d6e9a7ed3c744ca8dfa2ae6a4abbecedab (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/yacpi/yacpi-3.0.1.ebuild,v 1.1 2010/07/08 14:00:40 ssuominen Exp $

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
}