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 0ADCF158087 for ; Fri, 28 Jan 2022 08:00:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 586192BC095; Fri, 28 Jan 2022 08:00:18 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 3F8472BC095 for ; Fri, 28 Jan 2022 08:00:18 +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 378BF342FA1 for ; Fri, 28 Jan 2022 08:00:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D49242D0 for ; Fri, 28 Jan 2022 08:00:12 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1643356757.560bc3b5618c9966fc3320020ede4dd35d279ae7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-dns/s6-dns/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-dns/s6-dns/s6-dns-2.3.3.0.ebuild X-VCS-Directories: net-dns/s6-dns/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 560bc3b5618c9966fc3320020ede4dd35d279ae7 X-VCS-Branch: master Date: Fri, 28 Jan 2022 08:00:12 +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: 528f9783-b86e-4ac5-882c-4f1c8166674b X-Archives-Hash: 9f34f2ed59448ea7679946ef6145e8fd commit: 560bc3b5618c9966fc3320020ede4dd35d279ae7 Author: Petr Vaněk atlas cz> AuthorDate: Sun Jan 23 15:04:32 2022 +0000 Commit: Sam James gentoo org> CommitDate: Fri Jan 28 07:59:17 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=560bc3b5 net-dns/s6-dns: respect AR, CC and RANLIB Signed-off-by: Petr Vaněk atlas.cz> Signed-off-by: Sam James gentoo.org> net-dns/s6-dns/s6-dns-2.3.3.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/net-dns/s6-dns/s6-dns-2.3.3.0.ebuild b/net-dns/s6-dns/s6-dns-2.3.3.0.ebuild index 879134405322..fbb637b2de30 100644 --- a/net-dns/s6-dns/s6-dns-2.3.3.0.ebuild +++ b/net-dns/s6-dns/s6-dns-2.3.3.0.ebuild @@ -1,8 +1,10 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 +inherit toolchain-funcs + DESCRIPTION="Suite of DNS client programs and libraries for Unix systems" HOMEPAGE="https://www.skarnet.org/software/s6-dns/" SRC_URI="https://www.skarnet.org/software/${PN}/${P}.tar.gz" @@ -25,9 +27,13 @@ src_prepare() { # Avoid QA warning for LDFLAGS addition; avoid overriding -fstack-protector sed -i -e 's/.*-Wl,--hash-style=both$/:/' -e '/-fno-stack-protector$/d' \ configure || die + + sed -i -e '/AR := /d' -e '/RANLIB := /d' Makefile || die } src_configure() { + tc-export AR CC RANLIB + econf \ --bindir=/bin \ --dynlibdir=/usr/$(get_libdir) \