8a8f2ebd2d
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
26 lines
699 B
Makefile
26 lines
699 B
Makefile
# reorder gives an editor command for most common terminals
|
|
# (in reverse order from n'th to 1'st most commonly used)
|
|
# to move them to the front of termcap
|
|
|
|
MAN= termcap.5
|
|
MANPACKAGE= ncurses
|
|
|
|
# Note: This is in ncurses-lib rather than ncurses because without it, ncurses
|
|
# doesn't work, and the base ncurses package is optional.
|
|
PACKAGE= ncurses-lib
|
|
FILES= termcap termcap.db
|
|
FILESDIR= ${BINDIR}/misc
|
|
CLEANFILES+= termcap.db
|
|
|
|
.include <bsd.endian.mk>
|
|
.include <src.tools.mk>
|
|
|
|
termcap.db: termcap
|
|
${CAP_MKDB_CMD} ${CAP_MKDB_ENDIAN} -f ${.TARGET:R} ${.ALLSRC}
|
|
|
|
etc-termcap:
|
|
${INSTALL_SYMLINK} -T "package=ncurses-lib" \
|
|
${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap
|
|
|
|
.include <bsd.prog.mk>
|