Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/s6-portable-utils/
Date: Fri, 28 Jan 2022 08:00:17
Message-Id: 1643356748.277ed0ee77a89728a2f07df98e5c8e6b65496e53.sam@gentoo
1 commit: 277ed0ee77a89728a2f07df98e5c8e6b65496e53
2 Author: Petr Vaněk <arkamar <AT> atlas <DOT> cz>
3 AuthorDate: Sun Jan 23 12:28:18 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 28 07:59:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=277ed0ee
7
8 sys-apps/s6-portable-utils: respect AR, CC and RANLIB
9
10 Signed-off-by: Petr Vaněk <arkamar <AT> atlas.cz>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sys-apps/s6-portable-utils/s6-portable-utils-2.2.3.0.ebuild | 8 +++++++-
14 1 file changed, 7 insertions(+), 1 deletion(-)
15
16 diff --git a/sys-apps/s6-portable-utils/s6-portable-utils-2.2.3.0.ebuild b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.3.0.ebuild
17 index f7e0efbb5a78..367204b5c902 100644
18 --- a/sys-apps/s6-portable-utils/s6-portable-utils-2.2.3.0.ebuild
19 +++ b/sys-apps/s6-portable-utils/s6-portable-utils-2.2.3.0.ebuild
20 @@ -1,8 +1,10 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2022 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26
27 +inherit toolchain-funcs
28 +
29 DESCRIPTION="Set of tiny portable unix utilities"
30 HOMEPAGE="https://www.skarnet.org/software/s6-portable-utils/"
31 SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz"
32 @@ -25,9 +27,13 @@ src_prepare() {
33 # Avoid QA warning for LDFLAGS addition; avoid overriding -fstack-protector
34 sed -i -e 's/.*-Wl,--hash-style=both$/:/' -e '/-fno-stack-protector$/d' \
35 configure || die
36 +
37 + sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die
38 }
39
40 src_configure() {
41 + tc-export AR CC RANLIB
42 +
43 econf \
44 --bindir=/bin \
45 --dynlibdir=/usr/$(get_libdir) \