commit: b50f5d6373f7793d40b8a6ae48a47c60dc6d3516 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org> AuthorDate: Sun Apr 26 15:52:51 2020 +0000 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org> CommitDate: Sun Apr 26 15:53:05 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50f5d63
app-text/enchant: explicitly disable applespell Apparently if gnustep is installed, there's a Cocoa.h header, and the autodetection in enchant decides that applespell should be built (and fail at doing so). Just explicitly disable it to fix build issues in such situations. Also explicitly disable zemberek while at it, but the default for that already is "no", not "check", so not a real change. Closes: https://bugs.gentoo.org/718634 Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Mart Raudsepp <leio <AT> gentoo.org> app-text/enchant/enchant-2.2.8.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-text/enchant/enchant-2.2.8.ebuild b/app-text/enchant/enchant-2.2.8.ebuild index b02382f3547..710a67b885c 100644 --- a/app-text/enchant/enchant-2.2.8.ebuild +++ b/app-text/enchant/enchant-2.2.8.ebuild @@ -32,9 +32,11 @@ src_configure() { --disable-static \ $(use_with aspell) \ $(use_with hunspell) \ - --without-hspell \ --without-nuspell \ + --without-hspell \ --without-voikko \ + --without-applespell \ + --without-zemberek \ --with-hunspell-dir="${EPREFIX}"/usr/share/hunspell/ }
