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 4F8E5158086 for ; Fri, 5 Nov 2021 02:58:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2B60BE0801; Fri, 5 Nov 2021 02:58:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 44932E0801 for ; Fri, 5 Nov 2021 02:58:23 +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 B43853430ED for ; Fri, 5 Nov 2021 02:58:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A4A27163 for ; Fri, 5 Nov 2021 02:58:19 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1636080982.15d2fc6b3583b2b9431ab5f7c4afa8c38ed40d68.zmedico@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/calibre/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/calibre/calibre-5.31.1.ebuild X-VCS-Directories: app-text/calibre/ X-VCS-Committer: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: 15d2fc6b3583b2b9431ab5f7c4afa8c38ed40d68 X-VCS-Branch: master Date: Fri, 5 Nov 2021 02:58:19 +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: 0d012cac-5a18-4dc9-84ed-c1414b392295 X-Archives-Hash: 0f332d946c98f97a4d47fbbe605907a3 commit: 15d2fc6b3583b2b9431ab5f7c4afa8c38ed40d68 Author: Jannik Glückert gmail com> AuthorDate: Fri Nov 5 01:04:32 2021 +0000 Commit: Zac Medico gentoo org> CommitDate: Fri Nov 5 02:56:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15d2fc6b app-text/calibre: fix libdir #821871 Closes: https://bugs.gentoo.org/821871 Signed-off-by: Jannik Glückert gmail.com> Signed-off-by: Zac Medico gentoo.org> app-text/calibre/calibre-5.31.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-text/calibre/calibre-5.31.1.ebuild b/app-text/calibre/calibre-5.31.1.ebuild index 283305d4191..4c142f046ab 100644 --- a/app-text/calibre/calibre-5.31.1.ebuild +++ b/app-text/calibre/calibre-5.31.1.ebuild @@ -191,6 +191,10 @@ src_compile() { # TODO: get qmake called by setup.py to respect CC and CXX too tc-export CC CXX + # bug 821871 + local MY_LIBDIR="${ESYSROOT}/usr/$(get_libdir)" + export FT_LIB_DIR="${MY_LIBDIR}" HUNSPELL_LIB_DIR="${MY_LIBDIR}" PODOFO_LIB_DIR="${MY_LIBDIR}" + PATH="${T}/bin:${PATH}" ${EPYTHON} setup.py build || die }