aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/ncurses
Commit message (Collapse)AuthorAgeFilesLines
* ncurses: Move utilities to the ncurses packageLexi Winter2025-10-171-1/+1
| | | | | | | MFC after: 3 days Reviewed by: manu, kevans Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53163
* Update Makefile.depend filesSimon J. Gerraty2024-10-141-0/+17
| | | | | | | After building packages we have a number of new and updated Makefile.depend files Reviewed by: stevek
* ncurses: vendor import version 6.5Baptiste Daroussin2024-06-201-3/+3
|
* ncurses: chase dependency changes in the source treeBaptiste Daroussin2021-10-041-3/+3
| | | | Differential Revision: https://reviews.freebsd.org/D32098
* ncurses: Add support for terminfo databaseBaptiste Daroussin2021-02-252-0/+50
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