Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/enchant/
Date: Sun, 26 Apr 2020 15:54:24
Message-Id: 1587916385.b50f5d6373f7793d40b8a6ae48a47c60dc6d3516.leio@gentoo
1 commit: b50f5d6373f7793d40b8a6ae48a47c60dc6d3516
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 26 15:52:51 2020 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 26 15:53:05 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50f5d63
7
8 app-text/enchant: explicitly disable applespell
9
10 Apparently if gnustep is installed, there's a Cocoa.h header, and the
11 autodetection in enchant decides that applespell should be built (and
12 fail at doing so).
13 Just explicitly disable it to fix build issues in such situations.
14
15 Also explicitly disable zemberek while at it, but the default for that
16 already is "no", not "check", so not a real change.
17
18 Closes: https://bugs.gentoo.org/718634
19 Package-Manager: Portage-2.3.84, Repoman-2.3.20
20 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org>
21
22 app-text/enchant/enchant-2.2.8.ebuild | 4 +++-
23 1 file changed, 3 insertions(+), 1 deletion(-)
24
25 diff --git a/app-text/enchant/enchant-2.2.8.ebuild b/app-text/enchant/enchant-2.2.8.ebuild
26 index b02382f3547..710a67b885c 100644
27 --- a/app-text/enchant/enchant-2.2.8.ebuild
28 +++ b/app-text/enchant/enchant-2.2.8.ebuild
29 @@ -32,9 +32,11 @@ src_configure() {
30 --disable-static \
31 $(use_with aspell) \
32 $(use_with hunspell) \
33 - --without-hspell \
34 --without-nuspell \
35 + --without-hspell \
36 --without-voikko \
37 + --without-applespell \
38 + --without-zemberek \
39 --with-hunspell-dir="${EPREFIX}"/usr/share/hunspell/
40 }