Gentoo Archives: gentoo-commits

From: Theo Anderson <telans@××××××.de>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:master commit in: sys-apps/0xFFFF/
Date: Tue, 27 Apr 2021 23:24:23
Message-Id: 1619515556.5a9e47d8d7d7b1ad200fccc17ca816bbdb788922.telans@gentoo
1 commit: 5a9e47d8d7d7b1ad200fccc17ca816bbdb788922
2 Author: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea <DOT> de>
3 AuthorDate: Tue Apr 27 09:25:56 2021 +0000
4 Commit: Theo Anderson <telans <AT> posteo <DOT> de>
5 CommitDate: Tue Apr 27 09:25:56 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=5a9e47d8
7
8 sys-apps/0xFFFF: Set CC.
9
10 The Makefile uses $CC and initializes it with `cc`.
11
12 Closes: https://bugs.gentoo.org/785157
13 Signed-off-by: Ronny (tastytea) Gutbrod <gentoo <AT> tastytea.de>
14
15 sys-apps/0xFFFF/0xFFFF-0.8.ebuild | 7 +++++++
16 1 file changed, 7 insertions(+)
17
18 diff --git a/sys-apps/0xFFFF/0xFFFF-0.8.ebuild b/sys-apps/0xFFFF/0xFFFF-0.8.ebuild
19 index 5c3f0ac56..ea9c8a543 100644
20 --- a/sys-apps/0xFFFF/0xFFFF-0.8.ebuild
21 +++ b/sys-apps/0xFFFF/0xFFFF-0.8.ebuild
22 @@ -3,6 +3,8 @@
23
24 EAPI=7
25
26 +inherit toolchain-funcs
27 +
28 DESCRIPTION="The 0pen Free Fiasco Firmware Flasher"
29 HOMEPAGE="https://github.com/pali/0xFFFF/"
30 SRC_URI="https://github.com/pali/${PN}/releases/download/${PV}/${P}.tar.gz"
31 @@ -15,6 +17,11 @@ IUSE=""
32 DEPEND="virtual/libusb:0"
33 RDEPEND="${DEPEND}"
34
35 +src_compile() {
36 + tc-export CC
37 + default
38 +}
39 +
40 src_install() {
41 emake DESTDIR="${ED}" PREFIX="/usr" install
42 }