diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-05-08 01:00:26 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-05-08 01:00:26 +0000 |
commit | 122ddf4ce502347352d64c2c2a1ae1a35128d4b4 (patch) | |
tree | c2be9d336de568ebbe56eca6bcddb1f105c70e73 /sys-apps/lilo | |
parent | Update (diff) | |
download | historical-122ddf4ce502347352d64c2c2a1ae1a35128d4b4.tar.gz historical-122ddf4ce502347352d64c2c2a1ae1a35128d4b4.tar.bz2 historical-122ddf4ce502347352d64c2c2a1ae1a35128d4b4.zip |
Updatee
Diffstat (limited to 'sys-apps/lilo')
-rw-r--r-- | sys-apps/lilo/files/digest-lilo-21.7.5 | 1 | ||||
-rw-r--r-- | sys-apps/lilo/lilo-21.7.5.ebuild | 76 |
2 files changed, 77 insertions, 0 deletions
diff --git a/sys-apps/lilo/files/digest-lilo-21.7.5 b/sys-apps/lilo/files/digest-lilo-21.7.5 new file mode 100644 index 000000000000..942f74127745 --- /dev/null +++ b/sys-apps/lilo/files/digest-lilo-21.7.5 @@ -0,0 +1 @@ +MD5 517c337c871a7e6ac66eae0090a337ec lilo-21.7.5.tar.gz diff --git a/sys-apps/lilo/lilo-21.7.5.ebuild b/sys-apps/lilo/lilo-21.7.5.ebuild new file mode 100644 index 000000000000..e174d8b4feb4 --- /dev/null +++ b/sys-apps/lilo/lilo-21.7.5.ebuild @@ -0,0 +1,76 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lilo/lilo-21.7.5.ebuild,v 1.1 2001/05/08 01:00:26 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Standard Linux boot loader" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/system/boot/lilo/"${A} + +DEPEND="virtual/glibc + >=sys-devel/bin86-0.15.5" + +RDEPEND="virtual/glibc" + +src_unpack() { + + unpack ${A} + cd ${S} + cp Makefile Makefile.orig + sed -e "s:-g:${CFLAGS}:" \ + Makefile.orig > Makefile + +} + +src_compile() { + + try pmake +} + +src_install() { + + into / + dosbin lilo + into /usr + dosbin keytab-lilo.pl + dodir /boot + insinto /boot + doins boot-text.b boot-menu.b chain.b os2_d.b + doman manPages/*.[5-8] + dodoc CHANGES COPYING INCOMPAT QuickInst README* +} + +pkg_preinst() { + + . ${ROOT}/etc/rc.d/config/functions + + if [ ! -L $ROOT/boot/boot.b -a -f $ROOT/boot/boot.b ] + then + einfo "Saving old boot.b..." + mv $ROOT/boot/boot.b $ROOT/boot/boot.old; + fi + + if [ ! -L $ROOT/boot/chain.b -a -f $ROOT/boot/chain.b ] + then + einfo "Saving old chain.b..." + mv $ROOT/boot/chain.b $ROOT/boot/chain.old; + fi + + if [ ! -L $ROOT/boot/os2_d.b -a -f $ROOT/boot/os2_d.b ] + then + einfo "Saving old os2_d.b..." + mv $ROOT/boot/os2_d.b $ROOT/boot/os2_d.old; + fi +} + +pkg_postinst() { + + . ${ROOT}/etc/rc.d/config/functions + + einfo "Activating boot-menu..." + ln -sf boot-menu.b $ROOT/boot/boot.b; + +} + + |