blob: 5d959df92ec9fbcd8fc2276bd5b6dc72fe872ee8 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-0.93.20030118.ebuild,v 1.4 2004/01/26 01:10:15 vapier Exp $
inherit mount-boot eutils flag-o-matic
NEWP=${PN}-${PV%.*}
DESCRIPTION="GNU GRUB boot loader"
HOMEPAGE="http://www.gnu.org/software/grub/"
SRC_URI="ftp://alpha.gnu.org/gnu/grub/${NEWP}.tar.gz
mirror://gentoo/${P}-gentoo.diff.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="-* x86"
IUSE="static"
DEPEND=">=sys-libs/ncurses-5.2-r5
>=sys-devel/autoconf-2.5"
PROVIDE="virtual/bootloader"
S=${WORKDIR}/${NEWP}
src_unpack() {
unpack ${A} || die
cd ${S} || die
# grub-0.93.20030118-gentoo.diff; <woodchip@gentoo.org> (18 Jan 2003)
# -fixes from grub CVS pulled on 20030118
# -vga16 patches; mined from Debian's grub-0.93+cvs20030102-1.diff
# -special-raid-devices.patch
# -addsyncs.patch
# -splashimagehelp.patch
# -configfile.patch
# -installcopyonly.patch
epatch ${WORKDIR}/${P}-gentoo.diff
# grub-0.93-gcc3.3.diff <johnm@gentoo.org> (14 Sep 2003)
# -fixes compile error with >=gcc-3.3
epatch ${FILESDIR}/grub-0.93-gcc3.3.diff
WANT_AUTOCONF=2.5 autoconf || die
}
src_compile() {
filter-flags -fstack-protector
### i686-specific code in the boot loader is a bad idea; disabling to ensure
### at least some compatibility if the hard drive is moved to an older or
### incompatible system.
unset CFLAGS
use static && export LDFLAGS="${LDFLAGS} -static"
# http://www.gentoo.org/proj/en/hardened/etdyn-ssp.xml
if has_version 'sys-devel/hardened-gcc' && [ "${CC}"="gcc" ]
then
# the configure script has problems with -nostdlib
CC="${CC} -yet_exec -yno_propolice"
fi
econf --exec-prefix=/ \
--disable-auto-linux-mem-opt || die
emake || die
}
src_install() {
einstall exec_prefix=${D}/ || die
insinto /boot/grub
doins ${FILESDIR}/splash.xpm.gz
newins docs/menu.lst grub.conf.sample
dodoc AUTHORS BUGS COPYING ChangeLog NEWS README THANKS TODO
newdoc docs/menu.lst grub.conf.sample
}
pkg_postinst() {
[ "$ROOT" != "/" ] && return 0
/sbin/grub-install --just-copy
# change menu.lst to grub.conf
if [ ! -e /boot/grub/grub.conf -a -e /boot/grub/menu.lst ]
then
mv /boot/grub/menu.lst /boot/grub/grub.conf
ln -s grub.conf /boot/grub/menu.lst
ewarn
ewarn "*** IMPORTANT NOTE: menu.lst has been renamed to grub.conf"
ewarn
fi
}
|