diff options
author | Joshua Kinard <kumba@gentoo.org> | 2006-01-02 07:37:07 +0000 |
---|---|---|
committer | Joshua Kinard <kumba@gentoo.org> | 2006-01-02 07:37:07 +0000 |
commit | 008ad3fc713cd72749e41c0d74c52c23c7f8ad9a (patch) | |
tree | 4bbb9e9c55b72324d47466797f398ea322033ab0 /sys-boot | |
parent | Masking dbus 0.60 as Cardoe is unmasking (diff) | |
download | historical-008ad3fc713cd72749e41c0d74c52c23c7f8ad9a.tar.gz historical-008ad3fc713cd72749e41c0d74c52c23c7f8ad9a.tar.bz2 historical-008ad3fc713cd72749e41c0d74c52c23c7f8ad9a.zip |
Bump to mips stable, remove 0.41
Package-Manager: portage-2.0.53
Diffstat (limited to 'sys-boot')
-rw-r--r-- | sys-boot/arcload/ChangeLog | 8 | ||||
-rw-r--r-- | sys-boot/arcload/Manifest | 6 | ||||
-rw-r--r-- | sys-boot/arcload/arcload-0.41.ebuild | 68 | ||||
-rw-r--r-- | sys-boot/arcload/arcload-0.43-r1.ebuild | 6 | ||||
-rw-r--r-- | sys-boot/arcload/files/digest-arcload-0.41 | 1 |
5 files changed, 11 insertions, 78 deletions
diff --git a/sys-boot/arcload/ChangeLog b/sys-boot/arcload/ChangeLog index c2a8d60a3019..c86446d502a8 100644 --- a/sys-boot/arcload/ChangeLog +++ b/sys-boot/arcload/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-boot/arcload -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/arcload/ChangeLog,v 1.3 2005/10/14 17:32:26 kumba Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/arcload/ChangeLog,v 1.4 2006/01/02 07:37:07 kumba Exp $ + + 02 Jan 2006; Joshua Kinard <kumba@gentoo.org> -arcload-0.41.ebuild, + arcload-0.43-r1.ebuild: + Bump to mips stable, remove 0.41 *arcload-0.43-r1 (15 Oct 2005) diff --git a/sys-boot/arcload/Manifest b/sys-boot/arcload/Manifest index c4aa29f4e5a5..f111ec556a74 100644 --- a/sys-boot/arcload/Manifest +++ b/sys-boot/arcload/Manifest @@ -1,7 +1,5 @@ -MD5 2099113b095a00c9a20025673f2077b3 ChangeLog 956 -MD5 fb6f9d40d2ded3c067ac1eefaf219a55 arcload-0.41.ebuild 2191 -MD5 9d8d85571a65719bdd086f5312774b23 arcload-0.43-r1.ebuild 2507 +MD5 34f2078c8c812e202bf78cf72df1de11 ChangeLog 1088 +MD5 4e1d95869703346d01284102e6fe5f19 arcload-0.43-r1.ebuild 2506 MD5 4c218c8e9298938004593523435f45b6 files/arcload-0.43-tweaks1.patch 615 -MD5 15044a63205fe66a9f42ccf799b328fe files/digest-arcload-0.41 64 MD5 a95a426a82a8a6ad6249e843a4fcedff files/digest-arcload-0.43-r1 64 MD5 58a9ae7662a7e557b27a74c70106c08d metadata.xml 366 diff --git a/sys-boot/arcload/arcload-0.41.ebuild b/sys-boot/arcload/arcload-0.41.ebuild deleted file mode 100644 index 03dc0330195d..000000000000 --- a/sys-boot/arcload/arcload-0.41.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/arcload/arcload-0.41.ebuild,v 1.1 2005/06/12 05:39:03 kumba Exp $ - -inherit eutils toolchain-funcs - -DESCRIPTION="ARCLoad - SGI Multi-bootloader. Able to bootload many different SGI Systems." -HOMEPAGE="http://www.linux-mips.org/wiki/index.php/ARCLoad" -SRC_URI="http://skylark.cs.put.poznan.pl/ip30/arcload-0.41.tar.bz2" -LICENSE="as-is" -SLOT="0" -KEYWORDS="-* ~mips" -IUSE="" -DEPEND="sys-boot/dvhtool" -RESTRICT="nostrip" - - -pkg_setup() { - # See if we're on a cobalt system (must use the cobalt-mips profile) - if [ "${PROFILE_ARCH}" = "cobalt" ]; then - echo -e "" - eerror "This package is only intended for SGI systems. It will not work on any" - eerror "other types of MIPS-based systems or any other architectures" - echo -e "" - die - fi -} - -src_compile() { - echo -e "" - einfo ">>> Building 32-bit version (sashARCS) for IP22/IP32 ..." - cd ${S} - make MODE=M32 clean || die - make CC=$(tc-getCC) LD=$(tc-getLD) MODE=M32 || die - cp ${S}/arcload.ecoff ${WORKDIR}/sashARCS - - echo -e "" - einfo ">>> Building 64-bit version (sash64) for IP27/IP28/IP30 ..." - make MODE=M64 clean || die - make CC=$(tc-getCC) LD=$(tc-getLD) MODE=M64 || die - cp ${S}/arcload ${WORKDIR}/sash64 -} - -src_install() { - cd ${S} - dodir /usr/lib/arcload - cp ${WORKDIR}/sashARCS ${D}/usr/lib/arcload - cp ${WORKDIR}/sash64 ${D}/usr/lib/arcload - cp ${S}/arc.cf ${D}/usr/lib/arcload -} - -pkg_postinst() { - echo -e "" - einfo "ARCLoad binaries copied to: /usr/lib/arcload" - echo -e "" - einfo "Use of ARCLoad is relatively easy:" - einfo "\t1) Determine which version you need" - einfo "\t\tA) sashARCS for IP22/IP32" - einfo "\t\tB) sash64 for IP27/IP28/IP30" - einfo "\t2) Copy that to the volume header using 'dvhtool'" - einfo "\t3) Edit /usr/lib/arcload/arc.cf to fit your specific system" - einfo "\t (See ${HOMEPAGE} for" - einfo "\t an explanation of the format of the config file)" - einfo "\t4) Copy the config file to the volume header with 'dvhtool'" - einfo "\t5) Copy any kernels to the volume header that you want to be bootable" - einfo "\t6) Reboot, and enjoy!" - echo -e "" -} diff --git a/sys-boot/arcload/arcload-0.43-r1.ebuild b/sys-boot/arcload/arcload-0.43-r1.ebuild index 904f101ee0e8..bb09633fd586 100644 --- a/sys-boot/arcload/arcload-0.43-r1.ebuild +++ b/sys-boot/arcload/arcload-0.43-r1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/arcload/arcload-0.43-r1.ebuild,v 1.1 2005/10/14 17:32:26 kumba Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/arcload/arcload-0.43-r1.ebuild,v 1.2 2006/01/02 07:37:07 kumba Exp $ inherit eutils toolchain-funcs @@ -9,7 +9,7 @@ HOMEPAGE="http://www.linux-mips.org/wiki/index.php/ARCLoad" SRC_URI="ftp://ftp.linux-mips.org/pub/linux/mips/people/skylark/${P}.tar.bz2" LICENSE="as-is" SLOT="0" -KEYWORDS="-* ~mips" +KEYWORDS="-* mips" IUSE="" DEPEND="sys-boot/dvhtool" RESTRICT="nostrip" diff --git a/sys-boot/arcload/files/digest-arcload-0.41 b/sys-boot/arcload/files/digest-arcload-0.41 deleted file mode 100644 index 3ed42e589357..000000000000 --- a/sys-boot/arcload/files/digest-arcload-0.41 +++ /dev/null @@ -1 +0,0 @@ -MD5 2fc12030fa45f0bb5b8a7106fd8f7661 arcload-0.41.tar.bz2 22162 |