Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 94E0A7A27D for ; Wed, 4 Jan 2017 13:19:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id 099D285691; Wed, 4 Jan 2017 13:19:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 8EB7D855B8 for ; Wed, 4 Jan 2017 13:19:57 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id UlKOxHFJ59ji for ; Wed, 4 Jan 2017 13:19:57 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2244A84CBD for ; Wed, 4 Jan 2017 13:19:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 1D659FBA6; Wed, 4 Jan 2017 13:19:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1483535997115430" MIME-Version: 1.0 Date: Wed, 4 Jan 2017 13:19:57 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/textproc/hunspell To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20170104131957.1D659FBA6@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_1483535997115430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Wed Jan 4 13:19:57 UTC 2017 Modified Files: pkgsrc/textproc/hunspell: Makefile options.mk Log Message: Use the curses framework. To generate a diff of this commit: cvs rdiff -u -r1.22 -r1.23 pkgsrc/textproc/hunspell/Makefile cvs rdiff -u -r1.5 -r1.6 pkgsrc/textproc/hunspell/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1483535997115430 Content-Disposition: inline Content-Length: 1700 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/hunspell/Makefile diff -u pkgsrc/textproc/hunspell/Makefile:1.22 pkgsrc/textproc/hunspell/Makefile:1.23 --- pkgsrc/textproc/hunspell/Makefile:1.22 Sat Jul 9 06:39:05 2016 +++ pkgsrc/textproc/hunspell/Makefile Wed Jan 4 13:19:56 2017 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2016/07/09 06:39:05 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2017/01/04 13:19:56 roy Exp $ DISTNAME= hunspell-1.3.3 -PKGREVISION= 4 +PKGREVISION= 5 CATEGORIES= textproc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=hunspell/} Index: pkgsrc/textproc/hunspell/options.mk diff -u pkgsrc/textproc/hunspell/options.mk:1.5 pkgsrc/textproc/hunspell/options.mk:1.6 --- pkgsrc/textproc/hunspell/options.mk:1.5 Tue Aug 27 22:11:20 2013 +++ pkgsrc/textproc/hunspell/options.mk Wed Jan 4 13:19:56 2017 @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.5 2013/08/27 22:11:20 richard Exp $ +# $NetBSD: options.mk,v 1.6 2017/01/04 13:19:56 roy Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.hunspell PKG_SUPPORTED_OPTIONS= wide-curses @@ -6,19 +6,11 @@ PKG_SUGGESTED_OPTIONS= # empty .include "../../mk/bsd.options.mk" -USE_NCURSES= yes - ### ### Wide curses support; otherwise, default to using narrow curses. ### -.if !empty(MACHINE_PLATFORM:MNetBSD-[5-9].*-*) - CONFIGURE_ENV+= ac_cv_lib_curses_tparm=yes -. include "../../mk/curses.buildlink3.mk" -.else -. if !empty(PKG_OPTIONS:Mwide-curses) -. include "../../devel/ncursesw/buildlink3.mk" -CPPFLAGS.SunOS+= -D_XPG6 -. else -. include "../../devel/ncurses/buildlink3.mk" -. endif +INCOMPAT_CURSES= NetBSD-[0-4].*-* +.include "../../mk/curses.buildlink3.mk" +.if !empty(PKG_OPTIONS:Mwide-curses) +CPPFLAGS.SunOS+= -D_XPG6 .endif --_----------=_1483535997115430--