diff options
author | Matt Turner <mattst88@gentoo.org> | 2020-10-14 13:08:17 -0700 |
---|---|---|
committer | Matt Turner <mattst88@gentoo.org> | 2020-10-14 13:22:08 -0700 |
commit | ab5d1f9ab2507f761e7c9d07db157a204f8c1973 (patch) | |
tree | 61cec67122b86d6b9d1bb789963932fcc0907b45 /sys-boot | |
parent | sys-boot/yaboot: Drop old versions (diff) | |
download | gentoo-ab5d1f9ab2507f761e7c9d07db157a204f8c1973.tar.gz gentoo-ab5d1f9ab2507f761e7c9d07db157a204f8c1973.tar.bz2 gentoo-ab5d1f9ab2507f761e7c9d07db157a204f8c1973.zip |
sys-boot/yaboot-static: Depend on sys-apps/ibm-powerpc-utils
Signed-off-by: Matt Turner <mattst88@gentoo.org>
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/yaboot-static/yaboot-static-1.3.17-r2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sys-boot/yaboot-static/yaboot-static-1.3.17-r2.ebuild b/sys-boot/yaboot-static/yaboot-static-1.3.17-r2.ebuild new file mode 100644 index 000000000000..d5157e407db7 --- /dev/null +++ b/sys-boot/yaboot-static/yaboot-static-1.3.17-r2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Generated by using quickpkg on a ppc32 machine, compiled with -O2 -pipe. + +EAPI=7 + +DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware" +HOMEPAGE="http://yaboot.ozlabs.org/" +SRC_URI="mirror://gentoo/yaboot-static-${PV}.tbz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="-* ~ppc ppc64" +IUSE="ibm" + +DEPEND="" +RDEPEND=" + !sys-boot/yaboot + sys-apps/ibm-powerpc-utils + !ibm? ( + sys-fs/hfsutils + sys-fs/hfsplusutils + sys-fs/mac-fdisk + )" + +S=${WORKDIR} + +QA_PRESTRIPPED=" + /usr/lib/yaboot/yaboot + /usr/lib/yaboot/yaboot.chrp + /usr/lib/yaboot/addnote +" + +src_prepare() { + epatch "${FILESDIR}/new-ofpath-devspec.patch" +} + +src_install() { + cp -pPR "${WORKDIR}"/* "${D}" || die +} |