From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1383425-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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8A06F15808B for <garchives@archives.gentoo.org>; Fri, 8 Apr 2022 03:26:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 909EAE0909; Fri, 8 Apr 2022 03:26:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 3FFE1E0909 for <gentoo-commits@lists.gentoo.org>; Fri, 8 Apr 2022 03:26:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B1E2834138D for <gentoo-commits@lists.gentoo.org>; Fri, 8 Apr 2022 03:26:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15208303 for <gentoo-commits@lists.gentoo.org>; Fri, 8 Apr 2022 03:26:37 +0000 (UTC) From: "Alexander Holcomb" <alex@alexsdigital.rodeo> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexander Holcomb" <alex@alexsdigital.rodeo> Message-ID: <1649388079.2cf5af8e8c422c7f553460fdaf777d88e79da9f9.alex@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-editors/mined/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-editors/mined/mined-2015.25.ebuild X-VCS-Directories: app-editors/mined/ X-VCS-Committer: alex X-VCS-Committer-Name: Alexander Holcomb X-VCS-Revision: 2cf5af8e8c422c7f553460fdaf777d88e79da9f9 X-VCS-Branch: dev Date: Fri, 8 Apr 2022 03:26:37 +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: db7d798f-b37e-4b74-a145-8d46a393c222 X-Archives-Hash: cffffd4d37ad7f9dcd3f24e4127810bc commit: 2cf5af8e8c422c7f553460fdaf777d88e79da9f9 Author: Alexander Holcomb <alex <AT> alexsdigital <DOT> rodeo> AuthorDate: Fri Apr 8 03:21:19 2022 +0000 Commit: Alexander Holcomb <alex <AT> alexsdigital <DOT> rodeo> CommitDate: Fri Apr 8 03:21:19 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2cf5af8e app-editors/mined: Fix direct call to cc This commit should fix bug 831698, the build script calling cc directly. It uses the tc-export command from toolchain-funcs to set and use $CC. Signed-off-by: Alexander Holcomb <alex <AT> alexsdigital.rodeo> app-editors/mined/mined-2015.25.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild index 6844b33e5..56af7db0f 100644 --- a/app-editors/mined/mined-2015.25.ebuild +++ b/app-editors/mined/mined-2015.25.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 - EAPI=7 +inherit toolchain-funcs DESCRIPTION="A powerful text editor with extensive Unicode and CJK support" HOMEPAGE="http://towo.net/mined/" @@ -16,6 +16,7 @@ DEPEND="${RDEPEND}" BDEPEND="" S=${S}/src src_configure() { + tc-export CC sed -in 's/OBJDIR=..\/bin\/sh/OBJDIR=bin\/sh/' mkmined sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO} \${LDFLAGS}\"/' mkmined sed -in 's/name.o/name.o \$LDFLAGS/' mkmined