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 48671158086 for ; Sun, 31 Oct 2021 04:43:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5AB66E09F6; Sun, 31 Oct 2021 04:43:35 +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 ED033E09F6 for ; Sun, 31 Oct 2021 04:43:34 +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 DD479343591 for ; Sun, 31 Oct 2021 04:43:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C4A88F for ; Sun, 31 Oct 2021 04:43:32 +0000 (UTC) From: "Sam James" 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" Message-ID: <1635655370.ff6cb86226cec4ee21db00dbbd7e10c3764a61c7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libtorrent-rasterbar/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild X-VCS-Directories: net-libs/libtorrent-rasterbar/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: ff6cb86226cec4ee21db00dbbd7e10c3764a61c7 X-VCS-Branch: master Date: Sun, 31 Oct 2021 04:43:32 +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: b4467563-0497-494b-950e-11bc6c193c5e X-Archives-Hash: 1f10f3ba6180071754f70a6561276cf4 commit: ff6cb86226cec4ee21db00dbbd7e10c3764a61c7 Author: Sam James gentoo org> AuthorDate: Sun Oct 31 04:42:50 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sun Oct 31 04:42:50 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff6cb862 net-libs/libtorrent-rasterbar: fix finding Boost in some cases AX_BOOST_BASE may be misled if some errant directories exist, like /usr/lib/x86_64-linux-gnu (thinking we're on Debian). Closes: https://bugs.gentoo.org/767835 Signed-off-by: Sam James gentoo.org> net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild index a554e4fd27c..2ee9d264251 100644 --- a/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild +++ b/net-libs/libtorrent-rasterbar/libtorrent-rasterbar-1.2.14-r1.ebuild @@ -70,6 +70,8 @@ src_configure() { $(use_enable static-libs static) $(use_enable test tests) --with-boost="${ESYSROOT}/usr" + # Needed because of bug #767835 + --with-boost-libdir="${ESYSROOT}/usr/$(get_libdir)" --with-libiconv --enable-logging )