Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-firmware/sgabios/
Date: Sat, 09 Feb 2019 19:56:06
Message-Id: 1549742097.a0afa8172431e6ef851f964e11aa68463c1e0262.bman@gentoo
1 commit: a0afa8172431e6ef851f964e11aa68463c1e0262
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Thu Feb 7 09:44:14 2019 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 9 19:54:57 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0afa817
7
8 sys-firmware/sgabios: remove old (EAPI4)
9
10 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
11 Closes: https://github.com/gentoo/gentoo/pull/10998
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 sys-firmware/sgabios/sgabios-0.1_pre8.ebuild | 49 ----------------------------
15 1 file changed, 49 deletions(-)
16
17 diff --git a/sys-firmware/sgabios/sgabios-0.1_pre8.ebuild b/sys-firmware/sgabios/sgabios-0.1_pre8.ebuild
18 deleted file mode 100644
19 index b062b9588e3..00000000000
20 --- a/sys-firmware/sgabios/sgabios-0.1_pre8.ebuild
21 +++ /dev/null
22 @@ -1,49 +0,0 @@
23 -# Copyright 1999-2016 Gentoo Foundation
24 -# Distributed under the terms of the GNU General Public License v2
25 -
26 -EAPI=4
27 -
28 -inherit eutils toolchain-funcs
29 -
30 -DESCRIPTION="serial graphics adapter bios option rom for x86"
31 -HOMEPAGE="https://code.google.com/p/sgabios/"
32 -SRC_URI="mirror://gentoo/${P}.tar.xz
33 - https://dev.gentoo.org/~cardoe/distfiles/${P}.tar.xz
34 - https://dev.gentoo.org/~cardoe/distfiles/${P}-bins.tar.xz"
35 -
36 -LICENSE="Apache-2.0"
37 -SLOT="0"
38 -KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86"
39 -IUSE=""
40 -
41 -src_prepare() {
42 - epatch "${FILESDIR}"/${P}-makefile.patch
43 - epatch "${FILESDIR}"/${P}-build-cc.patch #552280
44 - epatch_user
45 -}
46 -
47 -src_compile() {
48 - if use amd64 || use x86 ; then
49 - tc-ld-disable-gold
50 - tc-export_build_env BUILD_CC
51 - emake \
52 - BUILD_CC="${BUILD_CC}" \
53 - BUILD_CFLAGS="${BUILD_CFLAGS}" \
54 - BUILD_LDFLAGS="${BUILD_LDFLAGS}" \
55 - BUILD_CPPFLAGS="${BUILD_CPPFLAGS}" \
56 - CC="$(tc-getCC)" \
57 - LD="$(tc-getLD)" \
58 - AR="$(tc-getAR)" \
59 - OBJCOPY="$(tc-getOBJCOPY)"
60 - fi
61 -}
62 -
63 -src_install() {
64 - insinto /usr/share/sgabios
65 -
66 - if use amd64 || use x86 ; then
67 - doins sgabios.bin
68 - else
69 - doins bins/sgabios.bin
70 - fi
71 -}