blob: 171af67beb7cb2018b9695bd6e5ee752c1167de8 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit bsdmk freebsd flag-o-matic toolchain-funcs
DESCRIPTION="FreeBSD's bootloader"
SLOT="0"
IUSE="bzip2 ieee1394 tftp zfs"
if [[ ${PV} != *9999* ]]; then
KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
SRC_URI="mirror://gentoo/${SYS}.tar.xz
mirror://gentoo/${LIB}.tar.xz
mirror://gentoo/${CONTRIB}.tar.xz"
fi
RDEPEND=""
DEPEND="=sys-freebsd/freebsd-mk-defs-${RV}*
=sys-freebsd/freebsd-lib-${RV}*
!sparc-fbsd? ( sys-devel/clang )"
S="${WORKDIR}/sys/boot"
PATCHES=( "${FILESDIR}/${PN}-9.3-gcc46.patch"
"${FILESDIR}/${PN}-10.1-drop-unsupport-cflags.patch"
"${FILESDIR}/${PN}-add-nossp-cflags.patch" )
boot0_use_enable() {
use ${1} && mymakeopts="${mymakeopts} LOADER_${2}_SUPPORT=\"yes\""
use ${1} || mymakeopts="${mymakeopts} WITHOUT_${2}= "
}
pkg_setup() {
boot0_use_enable ieee1394 FIREWIRE
boot0_use_enable zfs ZFS
boot0_use_enable tftp TFTP
boot0_use_enable bzip2 BZIP2
}
src_prepare() {
use sparc-fbsd || export CC=clang
sed -e '/-mno-align-long-strings/d' \
-i "${S}"/i386/boot2/Makefile \
-i "${S}"/i386/gptboot/Makefile \
-i "${S}"/i386/gptzfsboot/Makefile \
-i "${S}"/i386/zfsboot/Makefile || die
}
src_compile() {
strip-flags
append-flags "-fno-strict-aliasing"
if use amd64-fbsd; then
cd "${S}/userboot/libstand" || die
freebsd_src_compile
cd "${S}/userboot/zfs" || die
freebsd_src_compile
cd "${S}/libstand32" || die
freebsd_src_compile
fi
cd "${WORKDIR}/lib/libstand" || die
freebsd_src_compile
cd "${S}"
CFLAGS="${CFLAGS} -I${WORKDIR}/lib/libstand"
LDFLAGS="${LDFLAGS} -L${WORKDIR}/lib/libstand"
export LIBSTAND="${WORKDIR}/lib/libstand/libstand.a"
NOFLAGSTRIP="yes" freebsd_src_compile
}
src_install() {
dodir /boot/defaults
mkinstall FILESDIR=/boot || die "mkinstall failed"
cd "${WORKDIR}/sys/$(tc-arch-kernel)/conf" || die
insinto /boot
newins GENERIC.hints device.hints
echo 'CONFIG_PROTECT="/boot/device.hints"' > "${T}"/50boot0
doenvd "${T}"/50boot0
}
|