67 lines
1.7 KiB
Bash
67 lines
1.7 KiB
Bash
|
# Copyright 1999-2009 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/memtest86+-2.11.ebuild,v 1.6 2009/06/12 14:28:51 flameeyes Exp $
|
||
|
|
||
|
QA_PRESTRIPPED=/boot/memtest86plus/memtest
|
||
|
|
||
|
inherit mount-boot eutils
|
||
|
|
||
|
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="-* ~amd64 ~x86"
|
||
|
IUSE="floppy serial"
|
||
|
RESTRICT="test"
|
||
|
|
||
|
RDEPEND="floppy? ( >=sys-boot/grub-0.95 sys-fs/mtools )"
|
||
|
DEPEND="${RDEPEND}"
|
||
|
|
||
|
src_unpack() {
|
||
|
unpack ${A}
|
||
|
cd "${S}"
|
||
|
|
||
|
epatch "${FILESDIR}"/${PN}-2.11-hardcoded_cc.patch
|
||
|
epatch "${FILESDIR}"/${PN}-1.70-gnu_hash.patch
|
||
|
|
||
|
sed -i -e's,0x10000,0x100000,' memtest.lds
|
||
|
|
||
|
if use serial ; then
|
||
|
sed -i -e 's/#define SERIAL_CONSOLE_DEFAULT 0/#define SERIAL_CONSOLE_DEFAULT 1/' config.h
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
src_compile() {
|
||
|
emake || die
|
||
|
}
|
||
|
|
||
|
src_install() {
|
||
|
insinto /boot/memtest86plus
|
||
|
doins memtest || die
|
||
|
dodoc README README.build-process
|
||
|
|
||
|
if use floppy ; then
|
||
|
dobin "${FILESDIR}"/make-memtest86+-boot-floppy
|
||
|
doman "${FILESDIR}"/make-memtest86+-boot-floppy.1
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
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: (replace '?' with correct numbers for your boot partition)"
|
||
|
einfo " > title=Memtest86Plus"
|
||
|
einfo " > root (hd?,?)"
|
||
|
einfo " > kernel --type=netbsd /boot/memtest86plus/memtest"
|
||
|
|
||
|
einfo " - For lilo:"
|
||
|
einfo " > image = /boot/memtest86plus/memtest"
|
||
|
einfo " > label = Memtest86Plus"
|
||
|
einfo
|
||
|
}
|