From 4c209a2af3ab2ed1e8ed5d75e05171cab73da82f Mon Sep 17 00:00:00 2001 From: Andreas Sturmlechner Date: Sat, 28 Mar 2020 13:54:04 +0100 Subject: [PATCH] sci-libs/geos: --disable-inline with arm Bug: https://bugs.gentoo.org/709368 Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner --- sci-libs/geos/geos-3.8.0-r1.ebuild | 10 +++++++--- sci-libs/geos/geos-3.8.1.ebuild | 2 ++ 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/sci-libs/geos/geos-3.8.0-r1.ebuild b/sci-libs/geos/geos-3.8.0-r1.ebuild index 3992d7a58cfd..e8fc86859c78 100644 --- a/sci-libs/geos/geos-3.8.0-r1.ebuild +++ b/sci-libs/geos/geos-3.8.0-r1.ebuild @@ -33,10 +33,14 @@ src_prepare() { } src_configure() { - econf \ - --disable-python \ - $(use_enable ruby) \ + local myeconfargs=( + --disable-python + $(use_enable ruby) $(use_enable static-libs static) + ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + + econf "${myeconfargs[@]}" } src_compile() { diff --git a/sci-libs/geos/geos-3.8.1.ebuild b/sci-libs/geos/geos-3.8.1.ebuild index ad70d2dd21ca..f19227d4b289 100644 --- a/sci-libs/geos/geos-3.8.1.ebuild +++ b/sci-libs/geos/geos-3.8.1.ebuild @@ -34,6 +34,8 @@ src_configure() { $(use_enable ruby) $(use_enable static-libs static) ) + use arm && myeconfargs+=( --disable-inline ) # bug 709368 + econf "${myeconfargs[@]}" } -- 2.26.2