You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
852 B
41 lines
852 B
# 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
|
|
}
|