app-text/enchant: explicitly disable applespell
authorMart Raudsepp <leio@gentoo.org>
Sun, 26 Apr 2020 15:52:51 +0000 (18:52 +0300)
committerMart Raudsepp <leio@gentoo.org>
Sun, 26 Apr 2020 15:53:05 +0000 (18:53 +0300)
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@gentoo.org>
app-text/enchant/enchant-2.2.8.ebuild

index b02382f3547306542132b43dc5553137e3967b80..710a67b885cbb2b0785fb765a21b4b6db7781ab3 100644 (file)
@@ -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/
 }