aboutsummaryrefslogtreecommitdiff
path: root/etc/termcap
Commit message (Collapse)AuthorAgeFilesLines
* ncurses: Move termcap and tabset to ncurses-libLexi Winter2025-11-061-1/+3
| | | | | | | | | | | | | | | | | | | termcap and tabset are currently in runtime, but since ncurses is the only thing which uses them, they belong in the ncurses package. curses without termcap is not very useful, so put them in the -lib subpackage rather than ncurses itself, so that installing ncurses-lib provides a working curses. This change moves files between packages so, until we have a proper policy on how to handle this in release/stable branches, it should not be MFC'd. MFC after: never Discussed with: kevans Reviewed by: manu, kevans Sponsored by: https://www.patreon.com/bsdivy Differential Revision: https://reviews.freebsd.org/D53610
* termcap.small: Include xterm-256colorKa Ho Ng2023-12-021-2/+2
| | | | | | MFC after: 7 days Reviewed by: imp, jhb Differential Revision: https://reviews.freebsd.org/D42784
* Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* pkgbase: Put termcap.small in the same package as termcapMark Johnston2023-03-031-0/+1
| | | | | Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D36951
* termcap.small: Don't use -o pipefail.John Baldwin2022-12-271-1/+1
| | | | | | | | | | | The command to generate termcap.small doesn't use any pipes, so this option is not needed. Using it also breaks cross-building on hosts where /bin/sh does not support pipefail such as Linux hosts where /bin/sh is dash. Reviewed by: sobomax, imp Sponsored by: DARPA Differential Revision: https://reviews.freebsd.org/D37865
* Fix mergemaster(8) breakage in the 6ad780caa.Maxim Sobolev2022-09-132-0/+38
Split out termcap.small generation into its own Makefile under etc/termcap, so it's properly executed by the underlying command: make 'SUBDIR_OVERRIDE=etc' everything Reported by: gbe MFC after: 1 month