diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-01-12 16:34:49 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-02-25 13:25:11 +0000 |
commit | 61f66a1f4403fded9aae14d890ad96914a3c0bc1 (patch) | |
tree | 4f46a9193517fbef9a3e8566d8367e5145c9b2da /usr.bin/Makefile | |
parent | 3fd63ddfdf3541faea762143365dbc70c16fa49e (diff) | |
download | src-61f66a1f4403fded9aae14d890ad96914a3c0bc1.tar.gz src-61f66a1f4403fded9aae14d890ad96914a3c0bc1.zip |
ncurses: Add support for terminfo database
Along with the termcap database, ncurses will now lookup for the
terminfo database, note that the terminfo database is being looked
up first and then it fallsback on the termcap one.
While here drop our custom reader for the termcap database, over the
time it is needed maintenance to be able to catchup with changes on ncurses
side.
Install the ncurses tools which are needed to deal with the terminfo
database: tic, infocmp, toe
Replace our termcap only aware tools with the ncurses counterpart:
tput, tabs, tset, clear and reset
In particular they can your the extra capabilities described in the
terminfo database, which does not exist in termcap
Note that to add a new terminfo information to the database from ports
the ports will just need to add their extra information into:
/usr/local/share/site-terminfo/<firstletteroftheterm>/<term>
Tested by: jbeich, manu
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r-- | usr.bin/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile index fcc406d2efc5..3e71dbb30e6b 100644 --- a/usr.bin/Makefile +++ b/usr.bin/Makefile @@ -97,6 +97,7 @@ SUBDIR= alias \ mkuzip \ mt \ ncal \ + ncurses \ netstat \ newgrp \ nfsstat \ @@ -146,7 +147,6 @@ SUBDIR= alias \ strings \ su \ systat \ - tabs \ tail \ tar \ tcopy \ @@ -156,11 +156,9 @@ SUBDIR= alias \ tip \ top \ touch \ - tput \ tr \ true \ truncate \ - tset \ tsort \ tty \ uname \ |