diff options
Diffstat (limited to 'sys-boot/aboot/aboot-0.9-r1.ebuild')
-rw-r--r-- | sys-boot/aboot/aboot-0.9-r1.ebuild | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/sys-boot/aboot/aboot-0.9-r1.ebuild b/sys-boot/aboot/aboot-0.9-r1.ebuild new file mode 100644 index 000000000000..c30bd0f75346 --- /dev/null +++ b/sys-boot/aboot/aboot-0.9-r1.ebuild @@ -0,0 +1,69 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/aboot/aboot-0.9-r1.ebuild,v 1.1 2003/12/09 08:11:32 seemant Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Alpha Linux boot loader for srm" +SRC_URI="http://aboot.sourceforge.net/tarballs/aboot-0.9bpre.tar.bz2" +HOMEPAGE="http://aboot.sourceforge.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="alpha -x86 -amd64 -ppc -sparc -mips" + +DEPEND="virtual/glibc" + +PROVIDE="virtual/bootloader" + +src_unpack() { + unpack ${A} + + mv ${WORKDIR}/aboot-0.9bpre ${WORKDIR}/${P} + + cd ${S} + cp Makefile Makefile.orig + sed -e "s:/usr/man:/usr/share/man:" Makefile.orig > Makefile +} + +src_compile() { + emake || die +} + +src_install() { + dodir /{boot,sbin,usr/share/man/man5} + make \ + root=${D} \ + bindir=${D}/sbin \ + bootdir=${D}/boot \ + mandir=${D}/usr/share/man \ + install + + dodoc COPYING ChangeLog INSTALL README TODO aboot.conf + + dodir /etc + insinto /etc + newins ${FILESDIR}/aboot.conf aboot.conf.example +} + +pkg_postinst() { + einfo "To make aboot install a new bootloader on your harddisk follow" + einfo "these steps:" + einfo "" + einfo " - edit the file /etc/aboot.conf" + einfo " - cd /boot" + einfo " - swriteboot -c2 /dev/sda bootlx" + einfo " This will install a new bootsector on /dev/sda and aboot will" + einfo " use the second partition on this device to lookup kernel and " + einfo " initrd (as described in the aboot.conf file)" + einfo "" + einfo "IMPORTANT :" + einfo "" + einfo "The partition table of your boot device has to contain " + einfo "a BSD-DISKLABEL and the first 12 megabytes of your boot device" + einfo "must not be part of a partition as aboot will write its bootloader" + einfo "in there and not as with most x86 bootloaders into the " + einfo "master boot sector. If your partition table does not reflect this" + einfo "you are going to destroy your installation !" + einfo "Also note that aboot currently only supports ext2/3 partitions" + einfo "to boot from." +} |