pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/mk



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.

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



Home | Main Index | Thread Index | Old Index