5abde8bbdc
Add missing tools. Use NetBSD curses where possible. 2020.10.07 - GNU nano 5.3 "Revolution!" • Option 'set stateflags' makes nano show the state of auto-indenting, the mark, hard-wrapping, macro recording, and soft-wrapping in the title bar. The flags take the place of "Modified", and a modified buffer is instead indicated by an asterisk (*) after its name. • Nano no longer by default tries using libmagic to determine the type of a file (when neither filename nor first line gave a clue), because in most cases it is a waste of time. It requires using the option --magic or -! or 'set magic' to make nano try libmagic. • The color of the indicator can be changed with 'set scrollercolor'. 2020.08.24 - GNU nano 5.2 "Ranrapalca" • Making certain replacements after a large paste does not crash. • Hitting a toggle at the Search prompt does not clear the answer. • Using --positionlog does not complain at the first start. • A macro containing a Search command will not sometimes fail.
15 lines
394 B
Makefile
15 lines
394 B
Makefile
# $NetBSD: options.mk,v 1.6 2020/11/24 18:21:38 nia Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.nano
|
|
PKG_SUPPORTED_OPTIONS= wide-curses
|
|
PKG_SUGGESTED_OPTIONS= wide-curses
|
|
PKG_OPTIONS_LEGACY_OPTS+= ncursesw:wide-curses
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Wide curses support; otherwise, default to using narrow curses.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mwide-curses)
|
|
# Handled by curses.mk.
|
|
.endif
|