commit: 4c209a2af3ab2ed1e8ed5d75e05171cab73da82f Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Sat Mar 28 12:54:04 2020 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Sat Mar 28 12:55:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c209a2a
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 <asturm <AT> gentoo.org> 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 3992d7a58cf..e8fc86859c7 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 ad70d2dd21c..f19227d4b28 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[@]}" }
