diff options
author | Michael Januszewski <spock@gentoo.org> | 2009-11-22 16:49:54 +0000 |
---|---|---|
committer | Michael Januszewski <spock@gentoo.org> | 2009-11-22 16:49:54 +0000 |
commit | df0afc762471b6b13814fad8c93e95fbae43063c (patch) | |
tree | 2dc73d6c376b5ab62b6307b441b97b9a6e627fca | |
parent | Automated update of use.local.desc (diff) | |
download | gentoo-2-df0afc762471b6b13814fad8c93e95fbae43063c.tar.gz gentoo-2-df0afc762471b6b13814fad8c93e95fbae43063c.tar.bz2 gentoo-2-df0afc762471b6b13814fad8c93e95fbae43063c.zip |
Make 'memtest' the actual binary file and 'memtest.bin' the symlink.
(Portage version: 2.2_rc51/cvs/Linux x86_64)
-rw-r--r-- | sys-apps/memtest86+/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/memtest86+/memtest86+-4.00.ebuild | 12 |
2 files changed, 11 insertions, 7 deletions
diff --git a/sys-apps/memtest86+/ChangeLog b/sys-apps/memtest86+/ChangeLog index 665f520ed0bf..bfdea05650de 100644 --- a/sys-apps/memtest86+/ChangeLog +++ b/sys-apps/memtest86+/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/memtest86+ # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/ChangeLog,v 1.54 2009/11/22 16:34:54 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/ChangeLog,v 1.55 2009/11/22 16:49:54 spock Exp $ + + 22 Nov 2009; Michał Januszewski <spock@gentoo.org> + memtest86+-4.00.ebuild: + Make 'memtest' the actual binary file and 'memtest.bin' the symlink. 22 Nov 2009; Michał Januszewski <spock@gentoo.org> memtest86+-4.00.ebuild: diff --git a/sys-apps/memtest86+/memtest86+-4.00.ebuild b/sys-apps/memtest86+/memtest86+-4.00.ebuild index c5dc99998205..d6bf7f4d15db 100644 --- a/sys-apps/memtest86+/memtest86+-4.00.ebuild +++ b/sys-apps/memtest86+/memtest86+-4.00.ebuild @@ -1,6 +1,6 @@ # 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+-4.00.ebuild,v 1.4 2009/11/22 16:34:54 spock Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/memtest86+/memtest86+-4.00.ebuild,v 1.5 2009/11/22 16:49:54 spock Exp $ QA_PRESTRIPPED=/boot/memtest86plus/memtest @@ -41,8 +41,8 @@ src_compile() { src_install() { insinto /boot/memtest86plus - doins memtest.bin || die - dosym memtest.bin /boot/memtest86plus/memtest + newins memtest.bin memtest || die + dosym memtest /boot/memtest86plus/memtest.bin dodoc README README.build-process if use floppy ; then @@ -53,17 +53,17 @@ src_install() { pkg_postinst() { einfo - einfo "memtest.bin has been installed in /boot/memtest86plus/" + einfo "memtest 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 /boot/memtest86plus/memtest.bin" + einfo " > kernel /boot/memtest86plus/memtest" einfo " - For lilo:" - einfo " > image = /boot/memtest86plus/memtest.bin" + einfo " > image = /boot/memtest86plus/memtest" einfo " > label = Memtest86Plus" einfo } |