From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1334144-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 67D84158086 for <garchives@archives.gentoo.org>; Thu, 28 Oct 2021 01:00:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2A82E0880; Thu, 28 Oct 2021 01:00:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 874A3E0880 for <gentoo-commits@lists.gentoo.org>; Thu, 28 Oct 2021 01:00:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 32DFE343993 for <gentoo-commits@lists.gentoo.org>; Thu, 28 Oct 2021 01:00:51 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BC51157 for <gentoo-commits@lists.gentoo.org>; Thu, 28 Oct 2021 01:00:49 +0000 (UTC) From: "Sam James" <sam@gentoo.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, "Sam James" <sam@gentoo.org> Message-ID: <1635382842.2be43d8a49bd4d2da17a0a133faad29a5e64f339.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libtommath/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libtommath/libtommath-1.2.0-r1.ebuild dev-libs/libtommath/libtommath-1.2.0-r2.ebuild X-VCS-Directories: dev-libs/libtommath/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 2be43d8a49bd4d2da17a0a133faad29a5e64f339 X-VCS-Branch: master Date: Thu, 28 Oct 2021 01:00:49 +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: 05c74696-d7bd-43ba-8b63-4e01cf913e40 X-Archives-Hash: 2eac4676bb3d2fdc48a78371c5dda65d commit: 2be43d8a49bd4d2da17a0a133faad29a5e64f339 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Oct 28 01:00:07 2021 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Oct 28 01:00:42 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2be43d8a dev-libs/libtommath: fix libdir too in pkgconfig file Fixes: 6953f9bde6b2f327279fd6d21a0acda9465ea9b2 See: c90ab38e3577aae61fac2341b34ad593948de1cd Signed-off-by: Sam James <sam <AT> gentoo.org> .../{libtommath-1.2.0-r1.ebuild => libtommath-1.2.0-r2.ebuild} | 3 +++ 1 file changed, 3 insertions(+) diff --git a/dev-libs/libtommath/libtommath-1.2.0-r1.ebuild b/dev-libs/libtommath/libtommath-1.2.0-r2.ebuild similarity index 94% rename from dev-libs/libtommath/libtommath-1.2.0-r1.ebuild rename to dev-libs/libtommath/libtommath-1.2.0-r2.ebuild index 7b117347f4e..02a55d1fc6f 100644 --- a/dev-libs/libtommath/libtommath-1.2.0-r1.ebuild +++ b/dev-libs/libtommath/libtommath-1.2.0-r2.ebuild @@ -57,6 +57,9 @@ _emake() { } src_compile() { + # Replace hard-coded libdir=${exec_prefix}/lib. + sed -i -e "/libdir=/s:/lib:/$(get_libdir):" libtommath.pc.in || die + _emake -f makefile.shared }