From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A09BB138350 for ; Sun, 26 Apr 2020 15:54:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCCFBE0AB7; Sun, 26 Apr 2020 15:54:23 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7186E0AB7 for ; Sun, 26 Apr 2020 15:54:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C71BD34F7C9 for ; Sun, 26 Apr 2020 15:54:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 806961C9 for ; Sun, 26 Apr 2020 15:53:51 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1587916385.b50f5d6373f7793d40b8a6ae48a47c60dc6d3516.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/enchant/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/enchant/enchant-2.2.8.ebuild X-VCS-Directories: app-text/enchant/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: b50f5d6373f7793d40b8a6ae48a47c60dc6d3516 X-VCS-Branch: master Date: Sun, 26 Apr 2020 15:53:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b4bb9e44-583e-46a8-84e6-1063b17045b2 X-Archives-Hash: ab1b14ddf853726243866ac32c38a2c9 commit: b50f5d6373f7793d40b8a6ae48a47c60dc6d3516 Author: Mart Raudsepp gentoo org> AuthorDate: Sun Apr 26 15:52:51 2020 +0000 Commit: Mart Raudsepp gentoo 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 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/ }