blob: bc51e1f95a6bdb2db3ab306f8fce3fe9744b9bc8 (
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
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
WANT_LIBTOOL=none
inherit autotools linux-info
DESCRIPTION="Minimalistic UEFI bootloader"
HOMEPAGE="https://freedesktop.org/wiki/Software/gummiboot/"
SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.xz"
LICENSE="LGPL-2.1+"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="sys-apps/util-linux"
DEPEND="${RDEPEND}
app-arch/xz-utils
app-text/docbook-xsl-stylesheets
dev-libs/libxslt
>=sys-boot/gnu-efi-3.0.2"
PATCHES=(
"${FILESDIR}/48-sysmacros.patch"
)
pkg_pretend() {
# CONFIG_EFI_STUB is required to boot a kernel with gummiboot
local CONFIG_CHECK="~EFI_STUB"
check_extra_config
}
src_prepare() {
default
eautoreconf
}
|