summaryrefslogtreecommitdiff
blob: f2000bb00d3778dbd7da42a782df9231b27ccd2a (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-power/iasl/iasl-20050309.ebuild,v 1.2 2005/05/13 19:14:21 robbat2 Exp $

MY_PN="acpica-unix"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Intel ACPI Source Language (ASL) compiler"
HOMEPAGE="http://www.intel.com/technology/iapc/acpi/"
SRC_URI="${HOMEPAGE}/downloads/${MY_P}.tar.gz"
LICENSE="iASL"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/${MY_P}"

src_compile() {
	cd ${S}/compiler && emake -j1 || die "make failed"
}

src_install() {
	dobin compiler/iasl || die "iasl binary not created"
	dodoc ${S}/README || die "README not found"
}