blob: b499e2de1cd0a9ac5c26cd75ae04c178dcb40284 (
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
60
61
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot/yaboot-1.3.17-r2.ebuild,v 1.2 2012/06/20 13:54:25 josejx Exp $
EAPI=2
inherit eutils toolchain-funcs
DESCRIPTION="PPC Bootloader"
SRC_URI="http://yaboot.ozlabs.org/releases/${P}.tar.gz"
HOMEPAGE="http://yaboot.ozlabs.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="-* ppc -ppc64"
IUSE="ibm"
DEPEND="sys-apps/powerpc-utils
sys-fs/e2fsprogs[static-libs]"
RDEPEND="!ibm? ( sys-fs/hfsutils
sys-fs/hfsplusutils
sys-fs/mac-fdisk )"
src_unpack() {
unpack ${A}
cd "${S}"
cp "${FILESDIR}/new-ofpath" "${S}/ybin/ofpath"
}
src_prepare() {
# dual boot patch
epatch "${FILESDIR}/yabootconfig-1.3.13.patch"
epatch "${FILESDIR}/chrpfix.patch"
if [[ "$(gcc-major-version)" -eq "3" ]]; then
epatch "${FILESDIR}/${PN}-nopiessp.patch"
fi
if [[ "$(gcc-major-version)" -eq "4" ]]; then
epatch "${FILESDIR}/${P}-nopiessp-gcc4.patch"
fi
# Error only on real errors, for prom printing format compile failure
sed -i "s:-Werror:-Wno-error:g" Makefile
# Stub out some functions that are not provided (and unneeded)
epatch "${FILESDIR}/${PN}-stubfuncs.patch"
# Fix the devspec path on newer kernels
epatch "${FILESDIR}/new-ofpath-devspec.patch"
}
src_compile() {
export -n CFLAGS
export -n CXXFLAGS
[ -n "$(tc-getCC)" ] || CC="gcc"
emake PREFIX=/usr MANDIR=share/man CC="$(tc-getCC)" || die
}
src_install() {
sed -i -e 's/\/local//' etc/yaboot.conf
make ROOT="${D}" PREFIX=/usr MANDIR=share/man install || die
mv "${D}/etc/yaboot.conf" "${D}/etc/yaboot.conf.sample"
}
|