summaryrefslogtreecommitdiff
blob: 7ade8d510a701d7a88477e6bd04b82a5bb92a2e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2

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/"

KEYWORDS="alpha"
SLOT="0"
LICENSE="gpl-2"

DEPEND="virtual/glibc"

RDEPEND="virtual/glibc"


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."

}