Commit Graph

160 Commits

Author SHA1 Message Date
agc 3d22733587 Enable the alternate character set on Eterms.
Oh, so *that's* what dtvm and centericq should look like...
2008-03-11 18:47:57 +00:00
uwe a49ad7c9c4 PR 34995 is wrong about 'xn' - wsvt25 entry does need it, so bring it back.
Fixes display weirdness easily reproducible with emacs.
2007-11-07 22:40:32 +00:00
wiz 32a80e5d97 Add if, NC, ti and te to wsvt25 termcap entry. Should fix PR 34995.
Patch from Onno van der Linden (and Sergey Svishchev).
2007-02-16 21:33:12 +00:00
wiz ac6fb6a04c From Sergey Svishchev in PR 34995:
Current termcap entry for wsvt25 is 'micro-minimal', so here's an
updated one.  I've based it on vt220-8.  DECSCNM sequence (dark/light
background) is not emulated by wscons, so visual bell is disabled (vb@);
also, I think that 'xn' quirk is unnecessary.  'rs' sequence should
fix PR/28402.

I've also added kB (back tab), F1 (F11 key) and F2 (F12 key) to xterm
entry.
2007-01-06 14:24:42 +00:00
jnemeth 5be0b214bd PR/34534 - Jukka Salmi -- spaces -> tab 2006-09-17 09:30:50 +00:00
jnemeth 51700ac1b1 PR/34534 -- Jukka Salmi -- add rxvt-unicode entry 2006-09-15 20:09:04 +00:00
jdc 80f7b97e43 Wscons terminals only have 8 colours and don't need an NC entry.
Fixes PR misc/32135 by Pavel Cahyna.
2006-01-28 17:38:14 +00:00
wiz d4a56979fa Enable ACS characters in rxvt. Closes PR 30655. 2005-07-05 15:35:06 +00:00
wiz 05db58f8f8 Update rxvt entry to the one coming with rxvt-2.7.10. 2005-07-03 21:00:59 +00:00
jdc 8cb1b8908c Add `can backspace with ^H' (bs) entry to Eterm.
Fixes PR misc/29578 from Peter Bex.
2005-03-07 18:18:41 +00:00
matt d414d4dd69 Add xpterm and hpterm as aliases for xhpterm. 2004-06-23 22:48:56 +00:00
jdc 8510001c69 Add termcap entry for Olivetti M10 and compatibles. From Christian Biere
in PR misc/17739.
2004-04-04 07:49:53 +00:00
jdc 4a6f199f47 Move the attribute end escape sequence to the start of the xterm
initialisation sequence capability.
Part of the fix for PR misc/11052
2004-03-29 20:52:38 +00:00
jdc 9a2e2c2205 Add enable ACS (eA) capability to our rxvt entry too.
Tested by Martin Husemann.
2004-03-18 07:25:17 +00:00
jdc 6e297aabcb Add enable ACS (eA) capability to our xterm entry. The xterm shipped with
Xfree 4.4.0 needs this.
Fixes PR lib/24770 by Matthias Scheler.
2004-03-16 20:36:55 +00:00
tron 9a4655b78c Add missing blackslash to "xterm-color" entry. Fix provided by
Thomas E. Dickey in private e-mail.
2003-12-02 20:40:00 +00:00
tron f7d7184912 Apply various fixed supplied by Thomas Dickey in private e-mail.
The changes were reviewed by Julian Coleman.
2003-11-01 10:16:28 +00:00
jklos a791745321 Added xterm-color entry from ESR's / ncurses termcap.src for, primarily,
Mac OS X 10.3.
2003-10-24 23:37:18 +00:00
lukem 130ab7336b Rework how MAKEVERBOSE operates:
*	Don't bother prefixing commands with a line of  ${_MKCMD}\
	and instead rely upon "make -s".  This is less intrusive on
	all the Makefiles than the former.  Idea from David Laight.

    *	Rename the variables use to print messages.  The scheme now is:
	    _MKMSG_FOO		Run  _MKMSG 'foo'
	    _MKTARGET_FOO	Run  _MKMSG_FOO ${.TARGET}
	From discussion with Alistair Crooks.
2003-10-21 10:01:19 +00:00
lukem e7cffe140c implement MAKEVERBOSE 2003-10-19 14:10:13 +00:00
agc 075022b349 Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22309, verified by myself.
2003-08-07 10:30:41 +00:00
lukem 001c68bd94 Rename a large chunk of the make(1) variables which refer to a
program/tool from "FOO" to "TOOL_FOO".  The new variables are:
	TOOL_ASN1_COMPILE  TOOL_CAP_MKDB  TOOL_CAT  TOOL_CKSUM  TOOL_COMPILE_ET
	TOOL_CONFIG  TOOL_CRUNCHGEN  TOOL_CTAGS  TOOL_DB  TOOL_EQN  TOOL_FGEN
	TOOL_GENCAT  TOOL_GROFF  TOOL_HEXDUMP  TOOL_INDXBIB  TOOL_INSTALLBOOT
	TOOL_INSTALL_INFO  TOOL_M4  TOOL_MAKEFS  TOOL_MAKEINFO  TOOL_MAKEWHATIS
	TOOL_MDSETIMAGE  TOOL_MENUC  TOOL_MKCSMAPPER  TOOL_MKESDB
	TOOL_MKLOCALE  TOOL_MKMAGIC  TOOL_MKTEMP  TOOL_MSGC  TOOL_MTREE
	TOOL_PAX  TOOL_PIC  TOOL_PREPMKBOOTIMAGE  TOOL_PWD_MKDB  TOOL_REFER
	TOOL_ROFF_ASCII  TOOL_ROFF_DVI  TOOL_ROFF_HTML  TOOL_ROFF_PS
	TOOL_ROFF_RAW  TOOL_RPCGEN  TOOL_SOELIM  TOOL_SUNLABEL  TOOL_TBL
	TOOL_UUDECODE  TOOL_VGRIND  TOOL_ZIC

For each, provide default in <bsd.sys.mk> of the form:
	TOOL_FOO?=	foo
and for the ${USETOOLS}=="yes" case in <bsd.own.mk>, provide override:
	TOOL_FOO=	${TOOLDIR}/bin/${_TOOL_PREFIX}foo

Document all of these in bsd.README.

This cleans up a chunk of potential (and actual) namespace collision
within our build infrastructure, as well as improves consistency in
the share/mk documentation and provision of appropriate defaults for
each of these variables.
2003-07-10 10:33:58 +00:00
wiz 19008f6e3a No reason to mark up i.e. nor e.g. Noted by jmc@openbsd. 2003-07-02 08:20:39 +00:00
wiz 5b70678ace Punctuation and whitespace fixes. Quote %. 2003-06-27 22:42:21 +00:00
lukem f5dd9322ee Set CAP_MKDB_ENDIAN to the cap_mkdb(8) endian flag, rather than
overriding TARGET_ENDIANNESS.
2003-05-18 08:20:34 +00:00
jdolecek 5b8f6703cc update rxvt entry to form as shipped with current (2.7.3) rxvt
most notably this adds \017 to me, which fixes PR misc/9361

entry retains F10-F12 + END key fixes from rev. 1.67 of termcap.src
2003-04-09 19:21:46 +00:00
jdc 7abcaa1970 Change "ecma+color" entry to use ANSI colours. This is consistent with the
database supplied with ncurses 5.3.
Fixes PR 21000 by Per von Zweigbergk.
2003-04-06 07:19:53 +00:00
taca 3e12a767e4 Change kterm's capability.
- Don't inherit altanative chracter set pairs.
	- Define own (old xterm one) start/end alternative character set.

Problem reported along PR misc/20879 by Tsuburaya Kazuhito
<kazuhito_tsuburaya at hotmail.com> and supplied fix was applied.
2003-03-25 16:47:32 +00:00
agc 35d1b92c9e Add the entry from the Eterm-0.9.2 package for the Eterm terminal emulator. 2003-03-24 14:44:11 +00:00
taca a907d94384 Fix kterm entry -- make it child of 'xterm' instead of 'xterm-xf86-v33'.
PR misc/12400 by Kazu Yamamoto was for NetBSD 1.5 and currently it should
be simply 'xterm', noted by him.

This should fix problem less(1) with TERM=kterm and really close PR
misc/12400.
2003-03-24 14:16:40 +00:00
jdolecek d583be318c adjust kterm entry to support colours - make it child of 'xterm-xf86-v33'
(which does support culours), rather than 'xterm-r6' (which does not)
Fixes PR misc/12400 by Kazu Yamamoto.
2003-03-20 11:19:51 +00:00
jdc 0dfeec7835 Add tc=xterm entries to xterm+sl and xterm+sl-twm entries.
From Monroe Williams in PR misc/20606.
2003-03-16 15:06:25 +00:00
wiz 990562bfef .Nm does not need a dummy argument ("") before punctuation or
for correct formatting of the SYNOPSIS any longer.
2003-02-25 10:34:36 +00:00
rafal d08b4f2d41 Once again fix the `pk' entry in iris-ansi (it appears to have been fixed
once in response to PR misc/3250 a while back and then re-appeared in the
broken form again!), and add `@8' and `k9' entries to irix-ansi-ap.

Fix prompted by Thomas Dickey, who originally spotted the issue in the
stripped-down termcap used by the sgimips install media.

PR: misc/17620.
2003-02-06 04:25:03 +00:00
jdc 8f396eb979 Add termcap entry for window(1).
Fixes PR 20111 (from Richard Rauch).
2003-02-02 17:34:19 +00:00
jdc a5caee4812 Add missing 'NC' (no color video) entry. 2003-01-27 19:50:20 +00:00
wiz 44107fcf32 Add cygwin alias for pcansi. Okayed by jdc. 2003-01-24 10:24:09 +00:00
jdc 3632692722 Wscons terminals (wsvt25) have 25 lines, so we shouldn't use the vt220
initialisation sequence (which sets the scrolling region to the top 24
lines).
Noticed by Martin Husemann.
2003-01-12 11:17:21 +00:00
martin accf8358dd Add sun-type4 (sun console with type 4 keyboard), to make keypad cursor
keys work on this type of keyboard. From Julian Coleman.
2002-10-08 20:20:42 +00:00
wiz 933a0bcac0 Use color. 2002-10-02 15:33:10 +00:00
jdc c4cb51dc7d Correct the escape sequences for F1-F4 in our xterm entry.
Fixes PR 18272.
2002-09-13 16:40:02 +00:00
jdc 91c78107e6 Remove 'ic' capability from our xterm entry as per PR bin/15667 from
Aymeric Vincent.
While we are here, remove local changes from the xterm-xf86-v32,
xterm-xf86-v33 and xterm-xf86-v333 entries and create our own xterm
and xterm-vb entries.  Try to be compatible with as many xterm
implementations as possible.
2002-08-04 14:43:47 +00:00
jdc 5b09651fdc Add (missing) definitions for 'oc' and 'op' capabilities.
Pointed out by Aymeric Vincent.
2002-07-21 10:23:03 +00:00
wiz 1f4098eb40 Add it#8 to wsvt25. From Alan Barrett. 2002-07-03 11:41:39 +00:00
itojun dbbcec2c04 have bsd.endian.mk, which detects target endian.
generate *.db in target endian.  (see tech-userlevel for discussions)
2002-05-30 21:40:47 +00:00
itojun f75be30e68 comment; no need to care about endianness, as DB keys are ascii strings
(modulo possible DB lookup performance issue)
2002-05-30 10:45:03 +00:00
bjh21 5169d40111 cap_mkdb -> ${CAP_MKDB}
This helps with building on Linux.
2002-03-30 19:09:52 +00:00
wiz 7a1cb58694 Use HOME(kh) instead of BEGIN(@1) in wsvt25 entry. Noted by Dave Sainty.
Remove @1 from rxvt, which already has a kh entry.
2002-02-13 14:19:39 +00:00
ross 90cc84b1b3 Generate <>& symbolically. I'm avoiding .../dist/... directories for now. 2002-02-13 09:32:47 +00:00
wiz bf9032d632 Remove incorrect entry from BUGS section. 2002-02-11 20:17:00 +00:00