From 7aa8bd6bd7d16b71bbfba28f94a1abce76b943c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= Date: Thu, 10 Feb 2022 17:57:13 +0100 Subject: [PATCH] sys-boot/limine: bump to 2.84 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Arsen Arsenović --- sys-boot/limine/Manifest | 1 + sys-boot/limine/limine-2.84.ebuild | 31 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 sys-boot/limine/limine-2.84.ebuild diff --git a/sys-boot/limine/Manifest b/sys-boot/limine/Manifest index 036c455d69..e4b548b1cf 100644 --- a/sys-boot/limine/Manifest +++ b/sys-boot/limine/Manifest @@ -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 diff --git a/sys-boot/limine/limine-2.84.ebuild b/sys-boot/limine/limine-2.84.ebuild new file mode 100644 index 0000000000..3f365ce4ef --- /dev/null +++ b/sys-boot/limine/limine-2.84.ebuild @@ -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[@]}" +}