diff options
author | Michał Górny <mgorny@gentoo.org> | 2014-08-02 07:54:54 +0000 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2014-08-02 07:54:54 +0000 |
commit | 7972d7f374295e6828a6b96b15169536f8defe1c (patch) | |
tree | 34ac8f1be92e3e52a960a7f4f5b454d56dffa928 /sys-boot/gummiboot/gummiboot-9999.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-7972d7f374295e6828a6b96b15169536f8defe1c.tar.gz gentoo-2-7972d7f374295e6828a6b96b15169536f8defe1c.tar.bz2 gentoo-2-7972d7f374295e6828a6b96b15169536f8defe1c.zip |
Introduce gummiboot, the EFI boot manager. Bug #426598. Thanks to Elias Probst and J. García for all the work.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Diffstat (limited to 'sys-boot/gummiboot/gummiboot-9999.ebuild')
-rw-r--r-- | sys-boot/gummiboot/gummiboot-9999.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-boot/gummiboot/gummiboot-9999.ebuild b/sys-boot/gummiboot/gummiboot-9999.ebuild new file mode 100644 index 000000000000..398ac8a55dbc --- /dev/null +++ b/sys-boot/gummiboot/gummiboot-9999.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-boot/gummiboot/gummiboot-9999.ebuild,v 1.1 2014/08/02 07:54:54 mgorny Exp $ + +EAPI=5 + +inherit autotools eutils linux-info git-r3 + +DESCRIPTION="Minimalistic UEFI bootloader" +HOMEPAGE="http://freedesktop.org/wiki/Software/gummiboot/" +EGIT_REPO_URI="git://anongit.freedesktop.org/${PN}" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="" +IUSE="" + +RDEPEND="sys-apps/util-linux" +DEPEND="${RDEPEND} + app-text/docbook-xsl-stylesheets + dev-libs/libxslt + =sys-boot/gnu-efi-3.0s" + +pkg_pretend() { + # CONFIG_EFI_STUB is required to boot a kernel with gummiboot + local CONFIG_CHECK="~EFI_STUB" + check_extra_config +} + +src_prepare() { + epatch_user + eautoreconf +} |