summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2020-04-26 18:52:51 +0300
committerMart Raudsepp <leio@gentoo.org>2020-04-26 18:53:05 +0300
commitb50f5d6373f7793d40b8a6ae48a47c60dc6d3516 (patch)
tree51d8aedfc8e042fd5f72c54031f24c89877e7780 /app-text
parentdev-python/txrequests: Drop to maint-needed (diff)
downloadgentoo-b50f5d6373f7793d40b8a6ae48a47c60dc6d3516.tar.gz
gentoo-b50f5d6373f7793d40b8a6ae48a47c60dc6d3516.tar.bz2
gentoo-b50f5d6373f7793d40b8a6ae48a47c60dc6d3516.zip
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@gentoo.org>
Diffstat (limited to 'app-text')
-rw-r--r--app-text/enchant/enchant-2.2.8.ebuild4
1 files changed, 3 insertions, 1 deletions
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/
}