From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6E9C8158451 for ; Sat, 13 Jan 2024 20:46:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8E656E2A55; Sat, 13 Jan 2024 20:46:25 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 64596E2A54 for ; Sat, 13 Jan 2024 20:46:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7E48A3431C5 for ; Sat, 13 Jan 2024 20:46:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E7B3514B5 for ; Sat, 13 Jan 2024 20:46:21 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1705178750.b70db01c51e24eeb440f36e00fda70ffd85d1ae1.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/vgabios/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-firmware/vgabios/vgabios-0.8a-r1.ebuild X-VCS-Directories: sys-firmware/vgabios/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: b70db01c51e24eeb440f36e00fda70ffd85d1ae1 X-VCS-Branch: master Date: Sat, 13 Jan 2024 20:46:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e71334d8-0773-4b97-825c-d51d4d05b15a X-Archives-Hash: bd7bc0c88fd7780a258042d6bb388eb9 commit: b70db01c51e24eeb440f36e00fda70ffd85d1ae1 Author: Michael Mair-Keimberger levelnine at> AuthorDate: Sun Dec 31 10:43:27 2023 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Jan 13 20:45:50 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b70db01c sys-firmware/vgabios: EAPI8, fix LICENSE, fix calling gcc directly Signed-off-by: Michael Mair-Keimberger levelnine.at> Closes: https://bugs.gentoo.org/721592 Closes: https://github.com/gentoo/gentoo/pull/34574 Signed-off-by: Conrad Kostecki gentoo.org> sys-firmware/vgabios/vgabios-0.8a-r1.ebuild | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/sys-firmware/vgabios/vgabios-0.8a-r1.ebuild b/sys-firmware/vgabios/vgabios-0.8a-r1.ebuild new file mode 100644 index 000000000000..ed39a5dd8bb1 --- /dev/null +++ b/sys-firmware/vgabios/vgabios-0.8a-r1.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit toolchain-funcs + +DESCRIPTION="VGA BIOS implementation" +HOMEPAGE="https://www.nongnu.org/vgabios/" +SRC_URI="https://savannah.gnu.org/download/${PN}/${P}.tgz" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" +IUSE="binary debug" +BDEPEND="!binary? ( sys-devel/dev86 )" + +src_compile() { + if ! use binary ; then + emake clean # Necessary to clean up the pre-built pieces + emake biossums CC="$(tc-getCC)" + emake GCC="$(tc-getCC)" CC="$(tc-getCC)" + fi +} + +src_install() { + insinto /usr/share/vgabios + + # Stock VGABIOS + newins VGABIOS-lgpl-latest.bin vgabios.bin + use debug && newins VGABIOS-lgpl-latest.debug.bin vgabios.debug.bin + + # Cirrus + newins VGABIOS-lgpl-latest.cirrus.bin vgabios-cirrus.bin + use debug && newins VGABIOS-lgpl-latest.cirrus.debug.bin \ + vgabios-cirrus.debug.bin + + # Banshee + newins VGABIOS-lgpl-latest.banshee.bin vgabios-banshee.bin + +}