blob: 3a60f38bb3e8a68d5e56049cbeda14ca3c861f66 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/elilo/elilo-3.4-r3.ebuild,v 1.4 2006/03/10 18:49:06 agriffis Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Linux boot loader for EFI-based systems such as IA-64"
HOMEPAGE="http://elilo.sourceforge.net/"
SRC_URI="ftp://ftp.hpl.hp.com/pub/linux-ia64/${P}.tar.gz
mirror://gentoo/elilo-3.4.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="ia64"
IUSE=""
# gnu-efi contains only static libs, so there's no run-time dep on it
DEPEND=">=sys-boot/gnu-efi-3.0"
RDEPEND="sys-boot/efibootmgr
sys-fs/dosfstools"
PROVIDE="virtual/bootloader"
src_unpack() {
unpack ${P}.tar.gz
gzip -dc ${DISTDIR}/elilo-3.4.gz > elilo-script
cd ${S}
epatch ${FILESDIR}/elilo-3.4-makefile.patch
epatch ${FILESDIR}/elilo-3.4-proc-sigsetjmp.patch
epatch ${FILESDIR}/elilo-3.3a-devscheme.patch
}
src_compile() {
local iarch
case $(tc-arch) in
ia64) iarch=ia64 ;;
x86) iarch=ia32 ;;
*) die "unknown architecture: $(tc-arch)" ;;
esac
# "prefix" on the next line specifies where to find gcc, as, ld,
# etc. It's not the usual meaning of "prefix". By blanking it we
# allow PATH to be searched.
emake -j1 prefix= CC="$(tc-getCC)" ARCH=${iarch} || die "emake failed"
}
src_install() {
newsbin ${WORKDIR}/elilo-script elilo || die "elilo failed"
dosbin tools/eliloalt || die "eliloalt failed"
exeinto /usr/lib/elilo
doexe elilo.efi || die "elilo.efi failed"
insinto /etc
newins ${FILESDIR}/elilo.conf.sample elilo.conf
dodoc docs/* ${FILESDIR}/elilo.conf.sample
newman ${FILESDIR}/elilo.8-${PV} elilo.8
newman ${FILESDIR}/eliloalt.8-${PV} eliloalt.8
}
|