From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1706769-garchives=archives.gentoo.org@lists.gentoo.org>
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 (4096 bits))
	(No client certificate requested)
	by finch.gentoo.org (Postfix) with ESMTPS id D292115812D
	for <garchives@archives.gentoo.org>; Mon, 06 Jan 2025 23:22:07 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id D922FE070D;
	Mon, 06 Jan 2025 23:22:06 +0000 (UTC)
Received: from smtp.gentoo.org (dev.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) server-digest SHA256)
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id C27F1E070D
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 23:22:06 +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) server-digest SHA256)
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id 0FC9A341256
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 23:22:05 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id 69C76191A
	for <gentoo-commits@lists.gentoo.org>; Mon, 06 Jan 2025 23:22:03 +0000 (UTC)
From: "Nickolas Raymond Kaczynski" <nrk@disroot.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Nickolas Raymond Kaczynski" <nrk@disroot.org>
Message-ID: <1736205540.f1fa8796e196423e3242322443fa2d2c7d98a6d2.nrk@gentoo>
Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-arch/fuse-archive/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: app-arch/fuse-archive/fuse-archive-1.4.ebuild
X-VCS-Directories: app-arch/fuse-archive/
X-VCS-Committer: nrk
X-VCS-Committer-Name: Nickolas Raymond Kaczynski
X-VCS-Revision: f1fa8796e196423e3242322443fa2d2c7d98a6d2
X-VCS-Branch: dev
Date: Mon, 06 Jan 2025 23:22:03 +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: 2e53263b-be4f-4c7f-958a-0e3cf0d00d5a
X-Archives-Hash: 9888bdc344deaeabdd822ade95bfaebd

commit:     f1fa8796e196423e3242322443fa2d2c7d98a6d2
Author:     NRK <nrk <AT> disroot <DOT> org>
AuthorDate: Mon Jan  6 23:19:00 2025 +0000
Commit:     Nickolas Raymond Kaczynski <nrk <AT> disroot <DOT> org>
CommitDate: Mon Jan  6 23:19:00 2025 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f1fa8796

app-arch/fuse-archive: use flag-o-matic

Signed-off-by: NRK <nrk <AT> disroot.org>

 app-arch/fuse-archive/fuse-archive-1.4.ebuild | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/app-arch/fuse-archive/fuse-archive-1.4.ebuild b/app-arch/fuse-archive/fuse-archive-1.4.ebuild
index e26b98368..7db096887 100644
--- a/app-arch/fuse-archive/fuse-archive-1.4.ebuild
+++ b/app-arch/fuse-archive/fuse-archive-1.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit toolchain-funcs
+inherit toolchain-funcs flag-o-matic
 
 DESCRIPTION="Read-only FUSE file system for mounting archives and compressed files"
 HOMEPAGE="https://github.com/google/fuse-archive"
@@ -35,13 +35,11 @@ src_configure() {
 }
 
 src_compile() {
-	local incpath=""
-	incpath="${incpath} -I../intrusive-${BOOST_VERSION}/include"
-	incpath="${incpath} -I../config-${BOOST_VERSION}/include"
-	incpath="${incpath} -I../assert-${BOOST_VERSION}/include"
-	incpath="${incpath} -I../move-${BOOST_VERSION}/include"
-	emake CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)" \
-		CPPFLAGS="${incpath} ${CPPFLAGS}"
+	append-cppflags "-I../intrusive-${BOOST_VERSION}/include"
+	append-cppflags "-I../config-${BOOST_VERSION}/include"
+	append-cppflags "-I../assert-${BOOST_VERSION}/include"
+	append-cppflags "-I../move-${BOOST_VERSION}/include"
+	emake CXX="$(tc-getCXX)" PKG_CONFIG="$(tc-getPKG_CONFIG)"
 }
 
 src_install() {