Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/geos/
Date: Sat, 28 Mar 2020 12:56:17
Message-Id: 1585400159.4c209a2af3ab2ed1e8ed5d75e05171cab73da82f.asturm@gentoo
1 commit: 4c209a2af3ab2ed1e8ed5d75e05171cab73da82f
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 28 12:54:04 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 28 12:55:59 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c209a2a
7
8 sci-libs/geos: --disable-inline with arm
9
10 Bug: https://bugs.gentoo.org/709368
11 Package-Manager: Portage-2.3.96, Repoman-2.3.22
12 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
13
14 sci-libs/geos/geos-3.8.0-r1.ebuild | 10 +++++++---
15 sci-libs/geos/geos-3.8.1.ebuild | 2 ++
16 2 files changed, 9 insertions(+), 3 deletions(-)
17
18 diff --git a/sci-libs/geos/geos-3.8.0-r1.ebuild b/sci-libs/geos/geos-3.8.0-r1.ebuild
19 index 3992d7a58cf..e8fc86859c7 100644
20 --- a/sci-libs/geos/geos-3.8.0-r1.ebuild
21 +++ b/sci-libs/geos/geos-3.8.0-r1.ebuild
22 @@ -33,10 +33,14 @@ src_prepare() {
23 }
24
25 src_configure() {
26 - econf \
27 - --disable-python \
28 - $(use_enable ruby) \
29 + local myeconfargs=(
30 + --disable-python
31 + $(use_enable ruby)
32 $(use_enable static-libs static)
33 + )
34 + use arm && myeconfargs+=( --disable-inline ) # bug 709368
35 +
36 + econf "${myeconfargs[@]}"
37 }
38
39 src_compile() {
40
41 diff --git a/sci-libs/geos/geos-3.8.1.ebuild b/sci-libs/geos/geos-3.8.1.ebuild
42 index ad70d2dd21c..f19227d4b28 100644
43 --- a/sci-libs/geos/geos-3.8.1.ebuild
44 +++ b/sci-libs/geos/geos-3.8.1.ebuild
45 @@ -34,6 +34,8 @@ src_configure() {
46 $(use_enable ruby)
47 $(use_enable static-libs static)
48 )
49 + use arm && myeconfargs+=( --disable-inline ) # bug 709368
50 +
51 econf "${myeconfargs[@]}"
52 }