blob: d19ac41afc4917bb6b749fc4065a37a85caebacc (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20060512.ebuild,v 1.2 2008/05/22 21:21:59 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}-20060512-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/acpixtract/acpixtract tools/acpiexec/acpiexec tools/acpisrc/acpisrc
dodoc README changes.txt
}
|