blob: 00243898b622cdc475886270f34a3e3044595b15 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-6.1_rc2.ebuild,v 1.1 2006/05/02 21:50:46 flameeyes Exp $
inherit bsdmk freebsd
DESCRIPTION="FreeBSD's bootloader"
SLOT="0"
KEYWORDS="~x86-fbsd"
IUSE=""
SRC_URI="mirror://gentoo/${SYS}.tar.bz2"
RDEPEND=""
DEPEND="=sys-freebsd/freebsd-mk-defs-${RV}*
=sys-freebsd/freebsd-lib-${RV}*"
S="${WORKDIR}/sys/boot"
PATCHES="${FILESDIR}/boot0-6.0-gentoo.patch"
src_unpack() {
freebsd_src_unpack
grep -Zlr -- -ffreestanding "${S}" | xargs -0 sed -i -e \
's:-ffreestanding:-ffreestanding -fno-stack-protector -fno-stack-protector-all:g'
}
src_install() {
dodir /boot/defaults
mkinstall FILESDIR=/boot || die "mkinstall failed"
}
|