blob: a7731702e347e2f4208f65c181864dbf9afffc04 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/silo/silo-1.4.5.ebuild,v 1.3 2004/06/17 10:01:39 pappy Exp $
inherit mount-boot flag-o-matic
S=${WORKDIR}/${P}
DESCRIPTION="SPARC/UltraSPARC Improved Loader, a boot loader for sparc"
SRC_URI="http://www.sparc-boot.org/pub/silo/${P}.tar.gz"
HOMEPAGE="http://www.sparc-boot.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="-* sparc"
PROVIDE="virtual/bootloader"
DEPEND="sys-fs/e2fsprogs
sys-apps/sparc-utils"
src_compile() {
filter-flags "-fstack-protector"
if [ `use hardened` ]
then
make ${MAKEOPTS} CC="${CC:-gcc} -fno-stack-protector -fno-pic"
else
make ${MAKEOPTS} || die
fi
}
src_install() {
make DESTDIR=${D} install || die
dodoc COPYING ChangeLog first-isofs/README.SILO_ISOFS docs/README*
# Fix maketilo manpage
rm ${D}/usr/share/man/man1/maketilo.1
dosym /usr/share/man/man1/tilo.1 /usr/share/man/man1/maketilo.1
}
pkg_postinst() {
ewarn "NOTE: If this is an upgrade to an existing SILO install,"
ewarn " you will need to re-run silo as the /boot/second.b"
ewarn " file has changed, else the system will fail to load"
ewarn " SILO at the next boot."
}
|