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 E7B6F1382C5 for ; Tue, 20 Apr 2021 18:55:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39C96E0828; Tue, 20 Apr 2021 18:55:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 23741E0828 for ; Tue, 20 Apr 2021 18:55:16 +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 120F6340B63 for ; Tue, 20 Apr 2021 18:55:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A3434C3 for ; Tue, 20 Apr 2021 18:55:13 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1618934414.0bf98e2d183ea65967dba46f09c270071e82c4a2.andrewammerlaan@gentoo> Subject: [gentoo-commits] repo/proj/guru:master 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: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: 0bf98e2d183ea65967dba46f09c270071e82c4a2 X-VCS-Branch: master Date: Tue, 20 Apr 2021 18:55:13 +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: 9aa77bcf-0ebb-4d0d-9dcb-9a564deeba73 X-Archives-Hash: 8cb53944941a4e3abc17958f93aba50f commit: 0bf98e2d183ea65967dba46f09c270071e82c4a2 Author: Florian Schmaus geekplace eu> AuthorDate: Tue Apr 20 15:59:44 2021 +0000 Commit: Andrew Ammerlaan riseup net> 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}" }