blob: 937dc97072db156919085ca2089250aade7b474b (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/gnu-efi/gnu-efi-3.0a.ebuild,v 1.8 2005/01/23 11:33:41 plasmaroo Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Library for build EFI Applications"
HOMEPAGE="http://developer.intel.com/technology/efi"
SRC_URI="ftp://ftp.hpl.hp.com/pub/linux-ia64/gnu-efi-3.0a.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ia64 x86"
IUSE=""
DEPEND="virtual/libc
sys-apps/pciutils"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/gnu-efi-3.0a-lds.patch
}
src_compile() {
local iarch
case $ARCH in
ia64) iarch=ia64 ;;
x86) iarch=ia32 ;;
*) die "unknown architecture: $ARCH" ;;
esac
emake CC="$(tc-getCC)" ARCH=${iarch} -j1 || die "emake failed"
}
src_install() {
make install INSTALLROOT=${D}/usr || die "einstall failed"
dodoc README* ChangeLog
}
|