Received: by mail.netbsd.org (Postfix, from userid 605) id 6170384D87; Thu, 22 Nov 2018 14:56:09 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7712884D65 for ; Thu, 22 Nov 2018 14:56:08 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 7RIGrVWbC6gV for ; Thu, 22 Nov 2018 14:56:07 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BA49E84C85 for ; Thu, 22 Nov 2018 14:56:07 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7D48CFB1F; Thu, 22 Nov 2018 14:56:07 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1542898567209520" MIME-Version: 1.0 Date: Thu, 22 Nov 2018 14:56:07 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/textproc/enchant To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20181122145607.7D48CFB1F@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1542898567209520 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Thu Nov 22 14:56:07 UTC 2018 Modified Files: pkgsrc/textproc/enchant: Makefile options.mk Log Message: textproc/enchant: Disable hspell/uspell/voikko explicitly rather than relying on them not being detected, since the build will break if they are picked up as installed outside of pkgsrc. To generate a diff of this commit: cvs rdiff -u -r1.40 -r1.41 pkgsrc/textproc/enchant/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/textproc/enchant/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1542898567209520 Content-Disposition: inline Content-Length: 1721 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/enchant/Makefile diff -u pkgsrc/textproc/enchant/Makefile:1.40 pkgsrc/textproc/enchant/Makefile:1.41 --- pkgsrc/textproc/enchant/Makefile:1.40 Fri Nov 16 13:02:46 2018 +++ pkgsrc/textproc/enchant/Makefile Thu Nov 22 14:56:07 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.40 2018/11/16 13:02:46 bsiegert Exp $ +# $NetBSD: Makefile,v 1.41 2018/11/22 14:56:07 nia Exp $ # DISTNAME= enchant-1.6.0 @@ -23,6 +23,16 @@ INSTALLATION_DIRS+= share/examples MAKE_DIRS+= ${PREFIX}/share/enchant CONF_FILES= ${PREFIX}/share/examples/enchant-1.ordering ${PREFIX}/share/enchant/enchant.ordering +# Unsupported in pkgsrc: +# hspell - Hebrew spelling +# uspell - Yiddish spelling +# voikko - Finnish spelling +# +# hunspell or aspell can be used for these languages. +CONFIGURE_ARGS+= --disable-hspell +CONFIGURE_ARGS+= --disable-uspell +CONFIGURE_ARGS+= --disable-voikko + post-install: cd ${DESTDIR}${PREFIX}/share && ${MV} enchant/enchant.ordering examples/enchant-1.ordering Index: pkgsrc/textproc/enchant/options.mk diff -u pkgsrc/textproc/enchant/options.mk:1.6 pkgsrc/textproc/enchant/options.mk:1.7 --- pkgsrc/textproc/enchant/options.mk:1.6 Fri Oct 26 17:03:27 2018 +++ pkgsrc/textproc/enchant/options.mk Thu Nov 22 14:56:07 2018 @@ -1,11 +1,7 @@ -# $NetBSD: options.mk,v 1.6 2018/10/26 17:03:27 bsiegert Exp $ +# $NetBSD: options.mk,v 1.7 2018/11/22 14:56:07 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.enchant PKG_SUPPORTED_OPTIONS= aspell enchant-zemberek hunspell ispell -# Package also supports the following: -# hspell - Hebrew spelling -# uspell - Yiddish spelling -# voikko - Finnish spelling PKG_SUGGESTED_OPTIONS= hunspell .include "../../mk/bsd.options.mk" --_----------=_1542898567209520--