From: Mart Raudsepp Date: Sun, 26 Apr 2020 15:52:51 +0000 (+0300) Subject: app-text/enchant: explicitly disable applespell X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b50f5d6373f7793d40b8a6ae48a47c60dc6d3516;p=gentoo.git 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 --- diff --git a/app-text/enchant/enchant-2.2.8.ebuild b/app-text/enchant/enchant-2.2.8.ebuild index b02382f35473..710a67b885cb 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/ }