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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 372F315808B for ; Sun, 20 Feb 2022 04:26:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3AFABE07DF; Sun, 20 Feb 2022 04:26:03 +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 C3A57E07DF for ; Sun, 20 Feb 2022 04:26:01 +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 68295343916 for ; Sun, 20 Feb 2022 04:26:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92C6229 for ; Sun, 20 Feb 2022 04:25:58 +0000 (UTC) From: "Alexander Holcomb" 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" Message-ID: <1645331152.503799036a7c56cacc33ad87c876141304362499.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: 503799036a7c56cacc33ad87c876141304362499 X-VCS-Branch: dev Date: Sun, 20 Feb 2022 04:25:58 +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: 46ea9e8c-469b-4e91-b011-dc63604c43c7 X-Archives-Hash: 0a565ff97dbc48c0e59658a004a2971b commit: 503799036a7c56cacc33ad87c876141304362499 Author: Alexander Holcomb alexsdigital rodeo> AuthorDate: Sun Feb 20 04:19:44 2022 +0000 Commit: Alexander Holcomb alexsdigital rodeo> CommitDate: Sun Feb 20 04:25:52 2022 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=50379903 app-editors/mined: Make package respect LDFLAGS This will edit the build command used for compilation to explicitly enable LDFLAGS. This commit should resolve bug 832740. Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Alex Holcomb alexsdigital.rodeo> app-editors/mined/mined-2015.25.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-editors/mined/mined-2015.25.ebuild b/app-editors/mined/mined-2015.25.ebuild index 006d7fe6d..6844b33e5 100644 --- a/app-editors/mined/mined-2015.25.ebuild +++ b/app-editors/mined/mined-2015.25.ebuild @@ -1,4 +1,4 @@ -# Copyright 2022 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -17,7 +17,10 @@ BDEPEND="" S=${S}/src src_configure() { sed -in 's/OBJDIR=..\/bin\/sh/OBJDIR=bin\/sh/' mkmined - sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO}\"/' mkmined + sed -in 's/\"\${COPT--DTERMIO \$W}\"/\"${CFLAGS} \${COPT--DTERMIO} \${LDFLAGS}\"/' mkmined + sed -in 's/name.o/name.o \$LDFLAGS/' mkmined + sed -in 's/link=false/link=true/' mkmined + sed -in 142's/$/ \$LDFLAGS/' mkmined } src_compile() {