sys-boot/limine: bump to 2.84

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Arsen Arsenović <arsen@aarsen.me>
This commit is contained in:
Arsen Arsenović
2022-02-10 17:57:13 +01:00
parent 072133b934
commit 7aa8bd6bd7
2 changed files with 32 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WANT_LIBTOOL=none
inherit autotools
DESCRIPTION="Limine is a modern, advanced x86/x86_64 BIOS/UEFI multiprotocol bootloader."
HOMEPAGE="https://limine-bootloader.org/"
SRC_URI="https://github.com/limine-bootloader/limine/releases/download/v${PV}/limine-${PV}.tar.xz"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+eltorito-efi"
BDEPEND="
sys-apps/findutils
dev-lang/nasm
app-arch/gzip
eltorito-efi? ( sys-fs/mtools )
"
src_configure() {
local myconf=(
"$(use_enable eltorito-efi)"
)
econf "${myconf[@]}"
}