commit:     59cb1b18da5679404b96aefc573b149e66837d97
Author:     John L Chen <zuan <AT> chromium <DOT> org>
AuthorDate: Tue Apr 21 20:02:41 2020 +0000
Commit:     Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Wed Apr 22 08:31:47 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59cb1b18

dev-libs/opensc: Add elibtoolize to fix cross compiling for arm/arm64

opensc fails to cross compile for arm/arm64 target because libtool
adds host /usr/lib64 to -L during make install when the libraries are
relinked.

Adding elibtoolize in src_prepare() applies the "cross" patch that
fixes this.

Closes: https://bugs.gentoo.org/718790
Signed-off-by: John L Chen <zuan <AT> chromium.org>
Closes: https://github.com/gentoo/gentoo/pull/15460
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>

 dev-libs/opensc/opensc-0.20.0.ebuild | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-libs/opensc/opensc-0.20.0.ebuild 
b/dev-libs/opensc/opensc-0.20.0.ebuild
index b5a3fd35a32..d32490c9e60 100644
--- a/dev-libs/opensc/opensc-0.20.0.ebuild
+++ b/dev-libs/opensc/opensc-0.20.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit bash-completion-r1
+inherit bash-completion-r1 libtool
 
 DESCRIPTION="Libraries and applications to access smartcards"
 HOMEPAGE="https://github.com/OpenSC/OpenSC/wiki";
@@ -36,6 +36,11 @@ REQUIRED_USE="
        ctapi? ( !pcsc-lite !openct )
        || ( pcsc-lite openct ctapi )"
 
+src_prepare() {
+       default
+       elibtoolize
+}
+
 src_configure() {
        econf \
                --with-completiondir="$(get_bashcompdir)" \

Reply via email to