diff options
author | Alexis Ballier <aballier@gentoo.org> | 2012-10-14 15:21:14 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2012-10-14 15:21:14 +0000 |
commit | 5de7cb1eca85ba20001b1090fea2dd5c1be7bf07 (patch) | |
tree | 7b8ea0c297be05124ce636931c7e016029a23a81 /sys-freebsd/boot0 | |
parent | Remove old versions (diff) | |
download | gentoo-2-5de7cb1eca85ba20001b1090fea2dd5c1be7bf07.tar.gz gentoo-2-5de7cb1eca85ba20001b1090fea2dd5c1be7bf07.tar.bz2 gentoo-2-5de7cb1eca85ba20001b1090fea2dd5c1be7bf07.zip |
bump to 9.1_rc2
(Portage version: 2.2.0_alpha137/cvs/Linux x86_64)
Diffstat (limited to 'sys-freebsd/boot0')
-rw-r--r-- | sys-freebsd/boot0/ChangeLog | 7 | ||||
-rw-r--r-- | sys-freebsd/boot0/boot0-9.1_rc2.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/sys-freebsd/boot0/ChangeLog b/sys-freebsd/boot0/ChangeLog index 96e6a09f30d1..9421a61cbea4 100644 --- a/sys-freebsd/boot0/ChangeLog +++ b/sys-freebsd/boot0/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sys-freebsd/boot0 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.36 2012/09/11 16:58:18 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/ChangeLog,v 1.37 2012/10/14 15:21:14 aballier Exp $ + +*boot0-9.1_rc2 (14 Oct 2012) + + 14 Oct 2012; Alexis Ballier <aballier@gentoo.org> +boot0-9.1_rc2.ebuild: + bump to 9.1_rc2 *boot0-9.1_rc1 (11 Sep 2012) diff --git a/sys-freebsd/boot0/boot0-9.1_rc2.ebuild b/sys-freebsd/boot0/boot0-9.1_rc2.ebuild new file mode 100644 index 000000000000..f3867c5e9335 --- /dev/null +++ b/sys-freebsd/boot0/boot0-9.1_rc2.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-freebsd/boot0/boot0-9.1_rc2.ebuild,v 1.1 2012/10/14 15:21:14 aballier Exp $ + +EAPI=2 + +inherit bsdmk freebsd flag-o-matic + +DESCRIPTION="FreeBSD's bootloader" +SLOT="0" +KEYWORDS="~amd64-fbsd ~sparc-fbsd ~x86-fbsd" + +IUSE="bzip2 ieee1394 tftp zfs" + +SRC_URI="mirror://gentoo/${SYS}.tar.bz2 + mirror://gentoo/${LIB}.tar.bz2 + mirror://gentoo/${CONTRIB}.tar.bz2" + +RDEPEND="" +DEPEND="=sys-freebsd/freebsd-mk-defs-${RV}* + =sys-freebsd/freebsd-lib-${RV}*" + +S="${WORKDIR}/sys/boot" + +boot0_use_enable() { + use ${1} && mymakeopts="${mymakeopts} LOADER_${2}_SUPPORT=\"yes\"" +} + +pkg_setup() { + boot0_use_enable ieee1394 FIREWIRE + boot0_use_enable zfs ZFS + boot0_use_enable tftp TFTP + boot0_use_enable bzip2 BZIP2 +} + +src_prepare() { + sed -e '/-fomit-frame-pointer/d' -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" + NOFLAGSTRIP="yes" freebsd_src_compile +} + +src_install() { + dodir /boot/defaults + mkinstall FILESDIR=/boot || die "mkinstall failed" +} |