From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1268427-garchives=archives.gentoo.org@lists.gentoo.org>
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 0347513835A
	for <garchives@archives.gentoo.org>; Wed,  7 Apr 2021 08:51:40 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4853AE09CE;
	Wed,  7 Apr 2021 08:51:39 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
	(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 31028E09CE
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Apr 2021 08:51:39 +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 310E5340D4D
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Apr 2021 08:51:38 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id C019B642
	for <gentoo-commits@lists.gentoo.org>; Wed,  7 Apr 2021 08:51:36 +0000 (UTC)
From: "Andrew Ammerlaan" <andrewammerlaan@riseup.net>
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" <andrewammerlaan@riseup.net>
Message-ID: <1617732209.24114e82516c4b5f7d288b171073dddd0fd38535.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-r1.ebuild app-arch/tarlz/tarlz-0.19-r2.ebuild
X-VCS-Directories: app-arch/tarlz/
X-VCS-Committer: andrewammerlaan
X-VCS-Committer-Name: Andrew Ammerlaan
X-VCS-Revision: 24114e82516c4b5f7d288b171073dddd0fd38535
X-VCS-Branch: master
Date: Wed,  7 Apr 2021 08:51:36 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: dade3990-350a-4424-8b59-6b4d724b1f56
X-Archives-Hash: ca0d99dce6a6ba2bd5a3ec70164a626e

commit:     24114e82516c4b5f7d288b171073dddd0fd38535
Author:     Florian Schmaus <flo <AT> geekplace <DOT> eu>
AuthorDate: Tue Apr  6 18:02:59 2021 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Tue Apr  6 18:03:29 2021 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24114e82

app-arch/tarlz: Respect CXXFLAGS and LDFLAGS

Closes: https://bugs.gentoo.org/780597
Signed-off-by: Florian Schmaus <flo <AT> geekplace.eu>

 app-arch/tarlz/{tarlz-0.19-r1.ebuild => tarlz-0.19-r2.ebuild} | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/app-arch/tarlz/tarlz-0.19-r1.ebuild b/app-arch/tarlz/tarlz-0.19-r2.ebuild
similarity index 85%
rename from app-arch/tarlz/tarlz-0.19-r1.ebuild
rename to app-arch/tarlz/tarlz-0.19-r2.ebuild
index 7447fc19d..5ecb5d3fe 100644
--- a/app-arch/tarlz/tarlz-0.19-r1.ebuild
+++ b/app-arch/tarlz/tarlz-0.19-r2.ebuild
@@ -19,3 +19,7 @@ DEPEND="
 	${RDEPEND}
 	$(unpacker_src_uri_depends)
 "
+
+src_configure() {
+	econf LDFLAGS="${LDFLAGS}" CXXFLAGS="${CXXFLAGS}"
+}