diff options
author | 2004-06-28 21:28:16 +0000 | |
---|---|---|
committer | 2004-06-28 21:28:16 +0000 | |
commit | 20a98ea73abef66d2553c9dbc9aef3ff5f4cb829 (patch) | |
tree | 90f961a8047f9845b28ed1ae6e0b41e219ce22c4 | |
parent | comment out patch until its fixed (Manifest recommit) (diff) | |
download | gentoo-2-20a98ea73abef66d2553c9dbc9aef3ff5f4cb829.tar.gz gentoo-2-20a98ea73abef66d2553c9dbc9aef3ff5f4cb829.tar.bz2 gentoo-2-20a98ea73abef66d2553c9dbc9aef3ff5f4cb829.zip |
Version bump.
-rw-r--r-- | sys-apps/memtest86+/ChangeLog | 7 | ||||
-rw-r--r-- | sys-apps/memtest86+/files/digest-memtest86+-1.20 | 1 | ||||
-rw-r--r-- | sys-apps/memtest86+/memtest86+-1.20.ebuild | 74 |
3 files changed, 81 insertions, 1 deletions
diff --git a/sys-apps/memtest86+/ChangeLog b/sys-apps/memtest86+/ChangeLog index c97a1d495412..75564e141387 100644 --- a/sys-apps/memtest86+/ChangeLog +++ b/sys-apps/memtest86+/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-apps/memtest86+ # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/ChangeLog,v 1.8 2004/06/27 17:29:48 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/ChangeLog,v 1.9 2004/06/28 21:28:16 spock Exp $ + +*memtest86+-1.20 (28 Jun 2004) + + 28 Jun 2004; Michal Januszewski <spock@gentoo.org> +memtest86+-1.20.ebuild: + Version bump. 27 Jun 2004; Aron Griffis <agriffis@gentoo.org> memtest86+-1.0.ebuild, memtest86+-1.11.ebuild, memtest86+-1.15.ebuild: diff --git a/sys-apps/memtest86+/files/digest-memtest86+-1.20 b/sys-apps/memtest86+/files/digest-memtest86+-1.20 new file mode 100644 index 000000000000..1f32f5ab87f8 --- /dev/null +++ b/sys-apps/memtest86+/files/digest-memtest86+-1.20 @@ -0,0 +1 @@ +MD5 163ec13b1b16ee4cb627e61d5eb41b1f memtest86+-1.20.tar.gz 120735 diff --git a/sys-apps/memtest86+/memtest86+-1.20.ebuild b/sys-apps/memtest86+/memtest86+-1.20.ebuild new file mode 100644 index 000000000000..7f940741bc1b --- /dev/null +++ b/sys-apps/memtest86+/memtest86+-1.20.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/memtest86+-1.20.ebuild,v 1.1 2004/06/28 21:28:16 spock Exp $ + +inherit mount-boot + +DESCRIPTION="Memory tester based on memtest86" +HOMEPAGE="http://www.memtest.org/" +SRC_URI="http://www.memtest.org/download/${PV}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" +IUSE="serial" +DEPEND="virtual/glibc" + +S=${WORKDIR}/${P} + +src_unpack() { + unpack ${A} + cd ${S} + + # a little fix to make gcc-3.3.x happy + #sed -e '/DISCARD/d' -i memtest_shared.lds + + if use serial ; then + sed -e 's/#define SERIAL_CONSOLE_DEFAULT 0/#define SERIAL_CONSOLE_DEFAULT 1/' -i config.h + fi +} + +src_compile() { + emake || die +} + +src_install() { + dodir /boot/memtest86plus + cp memtest.bin ${D}/boot/memtest86plus/memtest.bin + dodoc README README.build-process +} + +pkg_postinst() { + einfo + einfo "memtest.bin has been installed in /boot/memtest86plus/" + einfo "You may wish to update your bootloader configs" + einfo "by adding these lines:" + einfo " - For grub:" + einfo " > title=Memtest86Plus" + + # a little magic to make users' life as easy as possible ;) + bootpart=0 + root="(hd0,0)" + res=`cat /etc/fstab | grep /boot | grep -v "^#" | awk '{print $1}' | grep '/dev/hd[a-z0-9]\+'` + if [ -n "${res}" ] ; then + bootpart=1 + else + res=`cat /etc/fstab | grep -v '^#' | grep -e '/dev/hd[a-z0-9]\+[[:space:]]\+\/[[:space:]]\+' | awk '{print $1}'` + fi + + if [ -n "${res}" ] ; then + root=`echo ${res} | grep -o '[a-z][0-9]' | tr -t a-z 0123456789 | sed -e 's/\([0-9]\)\([0-9]\)/\1 \2/' | awk '{print "(hd" $1 "," $2-1 ")" }'` + fi + + einfo " > root ${root}" + if [ "${bootpart}" -eq 1 ] ; then + einfo " > kernel /memtest86plus/memtest.bin" + else + einfo " > kernel /boot/memtest86plus/memtest.bin" + fi + + einfo " - For lilo:" + einfo " > image = /boot/memtest86plus/memtest.bin" + einfo " > label = Memtest86Plus" + einfo +} + |