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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4F6001382C5 for ; Tue, 20 Apr 2021 16:00:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 84117E083D; Tue, 20 Apr 2021 16:00:21 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6AF61E083D for ; Tue, 20 Apr 2021 16:00:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A3B83335D92 for ; Tue, 20 Apr 2021 16:00:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E113659C for ; Tue, 20 Apr 2021 16:00:17 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1618934414.0bf98e2d183ea65967dba46f09c270071e82c4a2.flow@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-arch/tarlz/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-arch/tarlz/tarlz-0.19-r2.ebuild app-arch/tarlz/tarlz-0.19-r3.ebuild X-VCS-Directories: app-arch/tarlz/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 0bf98e2d183ea65967dba46f09c270071e82c4a2 X-VCS-Branch: dev Date: Tue, 20 Apr 2021 16:00:17 +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: 58de3d06-dc35-4e44-8baa-0620487d2d36 X-Archives-Hash: c3da0bd7030a192ca799438db5e83112 commit: 0bf98e2d183ea65967dba46f09c270071e82c4a2 Author: Florian Schmaus geekplace eu> AuthorDate: Tue Apr 20 15:59:44 2021 +0000 Commit: Florian Schmaus geekplace eu> CommitDate: Tue Apr 20 16:00:14 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0bf98e2d app-arch/tarlz: respect CXX and CPPFLAGS Closes: https://bugs.gentoo.org/784491 Signed-off-by: Florian Schmaus geekplace.eu> app-arch/tarlz/{tarlz-0.19-r2.ebuild => tarlz-0.19-r3.ebuild} | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/app-arch/tarlz/tarlz-0.19-r2.ebuild b/app-arch/tarlz/tarlz-0.19-r3.ebuild similarity index 77% rename from app-arch/tarlz/tarlz-0.19-r2.ebuild rename to app-arch/tarlz/tarlz-0.19-r3.ebuild index 86091b0f2..ac53651c5 100644 --- a/app-arch/tarlz/tarlz-0.19-r2.ebuild +++ b/app-arch/tarlz/tarlz-0.19-r3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit unpacker +inherit toolchain-funcs unpacker DESCRIPTION="A parallel archiver combining tar and lzip" HOMEPAGE="https://www.nongnu.org/lzip/tarlz.html" @@ -25,5 +25,9 @@ PATCHES=( ) src_configure() { - econf LDFLAGS="${LDFLAGS}" CXXFLAGS="${CXXFLAGS}" + econf \ + CXX="$(tc-getCXX)" \ + CXXFLAGS="${CXXFLAGS}" \ + CPPFLAGS="${CPPFLAGS}" \ + LDFLAGS="${LDFLAGS}" }