blob: 83b65039414669da58b5bc1079c70bbfae42f71c (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot-static/yaboot-static-1.3.17-r1.ebuild,v 1.6 2015/05/17 03:58:17 vapier Exp $
EAPI=2
inherit eutils
DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware"
### Generated by using quickpkg on a ppc32 machine, compiled with -O2 -pipe
HOMEPAGE="http://yaboot.ozlabs.org/"
SRC_URI="mirror://gentoo/yaboot-static-${PV}.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* ppc ppc64"
IUSE="ibm"
DEPEND="sys-apps/powerpc-utils"
RDEPEND="!sys-boot/yaboot
!ibm? (
sys-fs/hfsutils
sys-fs/hfsplusutils
sys-fs/mac-fdisk
)"
QA_PRESTRIPPED="
/usr/lib/yaboot/yaboot
/usr/lib/yaboot/yaboot.chrp
/usr/lib/yaboot/addnote
"
src_prepare() {
# Fix the devspec path on newer kernels
epatch "${FILESDIR}/new-ofpath-devspec.patch"
}
src_install() {
cp -pPR "${WORKDIR}"/* "${D}" || die "cp failed"
}
|