blob: c833b101f7f7c7ae3ca05e343877148589215e23 (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20060127.ebuild,v 1.1 2006/02/20 04:04:46 robbat2 Exp $
inherit toolchain-funcs eutils
MY_PN=acpica-unix
MY_P=${MY_PN}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Intel ACPI Source Language (ASL) compiler"
HOMEPAGE="http://www.intel.com/technology/iapc/acpi/"
SRC_URI="http://www.intel.com/technology/iapc/acpi/downloads/${MY_P}.tar.gz"
LICENSE="iASL"
SLOT="0"
KEYWORDS="~ppc ~x86 ~amd64"
IUSE=""
DEPEND="sys-devel/bison
sys-devel/flex"
RDEPEND=""
src_unpack() {
unpack ${A}
EPATCH_OPTS="-p1 -d ${S}" epatch ${FILESDIR}/${MY_PN}-20051216-buildfixup.patch
}
src_compile() {
# fix stupid flex 2.5.31 bug
emake -C compiler aslcompilerlex.c || die "emake aslcompilerlex.c failed"
sed -i.orig -e '/#define unput/s,yytext_ptr,AslCompilertext,' \
${S}/compiler/aslcompilerlex.c || die "sed failed"
emake CC=$(tc-getCC) || die "emake failed"
}
src_install() {
dobin compiler/iasl tools/acpibin/acpibin tools/acpiexec/acpiexec tools/acpisrc/acpisrc
dodoc README changes.txt
}
|