summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalum Selkirk <cselkirk@gentoo.org>2002-11-16 13:48:33 +0000
committerCalum Selkirk <cselkirk@gentoo.org>2002-11-16 13:48:33 +0000
commitb5184728ac2046a3386696ed120c76a1c3d3db2e (patch)
treef47638602cce04b56f19c15919a3e39fa0c42cf6 /sys-apps/yaboot
parentYet another attemp at dynamic arch checking (diff)
downloadhistorical-b5184728ac2046a3386696ed120c76a1c3d3db2e.tar.gz
historical-b5184728ac2046a3386696ed120c76a1c3d3db2e.tar.bz2
historical-b5184728ac2046a3386696ed120c76a1c3d3db2e.zip
new ebuild. upstream maintainance release. KEYWORDED ~ppc until tested
Diffstat (limited to 'sys-apps/yaboot')
-rw-r--r--sys-apps/yaboot/ChangeLog11
-rw-r--r--sys-apps/yaboot/files/digest-yaboot-1.3.71
-rw-r--r--sys-apps/yaboot/yaboot-1.3.7.ebuild27
3 files changed, 38 insertions, 1 deletions
diff --git a/sys-apps/yaboot/ChangeLog b/sys-apps/yaboot/ChangeLog
index f2a70def7155..7d2a02cffe1e 100644
--- a/sys-apps/yaboot/ChangeLog
+++ b/sys-apps/yaboot/ChangeLog
@@ -1,6 +1,15 @@
# ChangeLog for sys-apps/yaboot
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/yaboot/ChangeLog,v 1.4 2002/09/04 15:15:12 cselkirk Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/yaboot/ChangeLog,v 1.5 2002/11/16 13:48:32 cselkirk Exp $
+
+*yaboot-1.3.7 (Nov 16 2002); cselkirk <cselkirk@gentoo.org>
+
+ 16 Nov 2002; Calum Selkirk <cselkirk@gentoo.org> yaboot-1.3.7.ebuild
+ digest-yaboot-1.3.7 :
+
+ new ebuild. This mainly an upstream maintaince release with some small
+ buxfixes, it's KEYWORDED ~ppc but should be safe to KEYWORD ppc after some
+ testing
*yaboot-1.3.6-r1 (June 21 2002); Gerk (gerk@gentoo.org)
diff --git a/sys-apps/yaboot/files/digest-yaboot-1.3.7 b/sys-apps/yaboot/files/digest-yaboot-1.3.7
new file mode 100644
index 000000000000..25ee50c0eea3
--- /dev/null
+++ b/sys-apps/yaboot/files/digest-yaboot-1.3.7
@@ -0,0 +1 @@
+MD5 c0bdb7d1dc55676e46903c57b83c1b61 yaboot-1.3.7.tar.gz 270241
diff --git a/sys-apps/yaboot/yaboot-1.3.7.ebuild b/sys-apps/yaboot/yaboot-1.3.7.ebuild
new file mode 100644
index 000000000000..4bb12cf6594e
--- /dev/null
+++ b/sys-apps/yaboot/yaboot-1.3.7.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/yaboot/yaboot-1.3.7.ebuild,v 1.1 2002/11/16 13:48:33 cselkirk Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="PPC Bootloader"
+SRC_URI="http://penguinppc.org/projects/yaboot/${P}.tar.gz"
+HOMEPAGE="http://penguinppc.org/projects/yaboot/"
+DEPEND="sys-apps/powerpc-utils sys-apps/hfsutils"
+RDEPEND=""
+KEYWORDS="~ppc -x86 -sparc -sparc64"
+MAKEOPTS='PREFIX=/usr MANDIR=share/man'
+SLOT="0"
+LICENSE="GPL-2"
+
+src_compile() {
+ export -n CFLAGS
+ export -n CXXFLAGS
+ emake ${MAKEOPTS} || die
+}
+
+src_install() {
+ cp etc/yaboot.conf etc/yaboot.conf.bak
+ sed -e 's/\/local//' etc/yaboot.conf >| etc/yaboot.conf.edit
+ mv -f etc/yaboot.conf.edit etc/yaboot.conf
+ make ROOT=${D} ${MAKEOPTS} install || die
+}