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

@@ -1 +1,2 @@
DIST limine-2.83.tar.xz 1561172 BLAKE2B 2b91ca239147f6eede40b5bb21c6a3a5c44157bcaacf2bf49bf7b39471c60bd866dc499b54ab9a853d64d3db34c19544f8c7d5b657d3c73c5323314e579f2121 SHA512 716866615734fdfdbc3e947d2a02b194505e96428438c71622bdb05e48d6e700d9fd87660ae6a0e03aef8365c98adc2f51821783d6f14296380095afa6ca924b
DIST limine-2.84.tar.xz 1561204 BLAKE2B 4412da7a1344a2ec2a2516351b995264a96bb3377238674777c24fcd477728080629c91c68d5ed097e589c5988d1c6622da90f0074d90c78c0f89776246ebc50 SHA512 3ece7e683e3f7fadc195091a0f1d80cde8a5379c064ff2518547a5d72f8152cd5b3c34dbe1f788c1251dcff14c33c75f861f91f0a78c0b50234db5c1a710acfa

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[@]}"
}