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 E4B687A20B for ; Mon, 20 Mar 2017 00:30:32 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id B1391855B7; Mon, 20 Mar 2017 00:30:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 43100855A0 for ; Mon, 20 Mar 2017 00:30:31 +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 wdpuRDHrN3Dm for ; Mon, 20 Mar 2017 00:30:30 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id CAABA84CE7 for ; Mon, 20 Mar 2017 00:30:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C43BEFBE4; Mon, 20 Mar 2017 00:30:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148996983019650" MIME-Version: 1.0 Date: Mon, 20 Mar 2017 00:30:30 +0000 From: "Roy Marples" Subject: CVS commit: pkgsrc/mk To: pkgsrc-changes@NetBSD.org Reply-To: roy@netbsd.org X-Mailer: log_accum Message-Id: <20170320003030.C43BEFBE4@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. --_----------=_148996983019650 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: roy Date: Mon Mar 20 00:30:30 UTC 2017 Modified Files: pkgsrc/mk: curses.buildlink3.mk Log Message: Describe USE_CURSES, FAKE_NCURSES and INCOMPAT_CURSES. To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/mk/curses.buildlink3.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148996983019650 Content-Disposition: inline Content-Length: 1634 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/mk/curses.buildlink3.mk diff -u pkgsrc/mk/curses.buildlink3.mk:1.25 pkgsrc/mk/curses.buildlink3.mk:1.26 --- pkgsrc/mk/curses.buildlink3.mk:1.25 Thu Jan 5 21:19:24 2017 +++ pkgsrc/mk/curses.buildlink3.mk Mon Mar 20 00:30:30 2017 @@ -1,4 +1,4 @@ -# $NetBSD: curses.buildlink3.mk,v 1.25 2017/01/05 21:19:24 roy Exp $ +# $NetBSD: curses.buildlink3.mk,v 1.26 2017/03/20 00:30:30 roy Exp $ # # This Makefile fragment is meant to be included by packages that require # any curses implementation instead of one particular one. The available @@ -19,6 +19,34 @@ # Possible: curses, ncurses, ncursesw, pdcurses # Default: (depends) # +# === Package-settable variables === +# +# USE_CURSES +# This value represents the features the package needs from curses. +# If the system curses does not provide those features, then +# a more suitable curses is pulled in (normally ncurses). +# +# Possible: wide +# For more possible values, see curses.builtin.mk. +# Default: (unset) +# +# FAKE_NCURSES +# Some packages look exclusively for ncurses or ncursesw, +# headers and libraries. This really is an error with the package, +# but patching it can be both challenging and cumbersome. +# Set this to YES to transform these to system curses. +# +# Possible: YES, NO +# Default: NO +# +# INCOMPAT_CURSES +# If no test exists the missing curses feature then set this +# to match the platform where system curses isn't suitable. +# This can include the case where the system curses compiles fine, +# but for some reason fails to work. +# +# Default: (unset) +# # === Variables set by this file === # # CURSES_TYPE --_----------=_148996983019650--