diff options
author | Tom Gall <tgall@gentoo.org> | 2004-03-23 03:58:24 +0000 |
---|---|---|
committer | Tom Gall <tgall@gentoo.org> | 2004-03-23 03:58:24 +0000 |
commit | f3600fca3848f929c34d35baf4d0a1554d531523 (patch) | |
tree | c04da125855121611febcf790a98abd69f45e126 /sys-boot/yaboot-static | |
parent | Marked stable on sparc. (diff) | |
download | historical-f3600fca3848f929c34d35baf4d0a1554d531523.tar.gz historical-f3600fca3848f929c34d35baf4d0a1554d531523.tar.bz2 historical-f3600fca3848f929c34d35baf4d0a1554d531523.zip |
implements bug 45462, static yaboot for ppc64 boxes
Diffstat (limited to 'sys-boot/yaboot-static')
-rw-r--r-- | sys-boot/yaboot-static/ChangeLog | 9 | ||||
-rw-r--r-- | sys-boot/yaboot-static/metadata.xml | 5 | ||||
-rw-r--r-- | sys-boot/yaboot-static/yaboot-static-1.0.ebuild | 19 |
3 files changed, 33 insertions, 0 deletions
diff --git a/sys-boot/yaboot-static/ChangeLog b/sys-boot/yaboot-static/ChangeLog new file mode 100644 index 000000000000..37a8b85a6384 --- /dev/null +++ b/sys-boot/yaboot-static/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for sys-boot/yaboot +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot-static/ChangeLog,v 1.1 2004/03/23 03:58:24 tgall Exp $ + + 22 Mar 2004; Tom Gall <tgall@gentoo.org> yaboot-static-1.0.ebuild: + Initial bout of insanity + +*yaboot-static-1.0 (22 Mar 204) + diff --git a/sys-boot/yaboot-static/metadata.xml b/sys-boot/yaboot-static/metadata.xml new file mode 100644 index 000000000000..f9a5b22fcbec --- /dev/null +++ b/sys-boot/yaboot-static/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>ppc64</herd> +</pkgmetadata> diff --git a/sys-boot/yaboot-static/yaboot-static-1.0.ebuild b/sys-boot/yaboot-static/yaboot-static-1.0.ebuild new file mode 100644 index 000000000000..9e6f73019f61 --- /dev/null +++ b/sys-boot/yaboot-static/yaboot-static-1.0.ebuild @@ -0,0 +1,19 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/yaboot-static/yaboot-static-1.0.ebuild,v 1.1 2004/03/23 03:58:24 tgall Exp $ + +DESCRIPTION="Static yaboot ppc boot loader for machines with open firmware" + +HOMEPAGE="http://penguinppc.org/projects/yaboot/" +SRC_URI="mirror://gentoo/yaboot-static-${PVR}.tbz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="ppc64 -*" +IUSE="" +DEPEND="!sys-apps/yaboot" +PROVIDE="virtual/bootloader" + +src_install() { + cp -a ${WORKDIR}/* ${D}/ + } + |