ncurses: Disable xterm+rep for maximum portability.
Many terminal emulators still do not support this capability, resulting in broken output. Patch from OmniOS, bump PKGREVISIONs.
This commit is contained in:
parent
961a66dbc4
commit
cf06b02f53
5 changed files with 24 additions and 7 deletions
|
@ -1,7 +1,7 @@
|
|||
# $NetBSD: Makefile,v 1.101 2019/02/12 20:11:22 triaxx Exp $
|
||||
# $NetBSD: Makefile,v 1.102 2019/02/25 11:54:05 jperkin Exp $
|
||||
|
||||
.include "Makefile.common"
|
||||
PKGREVISION= 4
|
||||
PKGREVISION= 5
|
||||
COMMENT= CRT screen handling and optimization package
|
||||
|
||||
INSTALLATION_DIRS+= share/examples
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile.common,v 1.39 2019/02/14 22:59:49 gutteridge Exp $
|
||||
# $NetBSD: Makefile.common,v 1.40 2019/02/25 11:54:05 jperkin Exp $
|
||||
#
|
||||
# used by devel/ncurses/Makefile
|
||||
# used by devel/ncursesw/Makefile
|
||||
|
@ -73,7 +73,6 @@ CONFIGURE_ENV+= ac_cv_cxx_compiler_gnu=no
|
|||
|
||||
.if ${OPSYS} == "SunOS"
|
||||
CONFIGURE_ARGS+= --disable-const
|
||||
TERMINFO_SRC= ${WRKSRC}/misc/terminfo.src
|
||||
TERMINFODIR= share/lib/terminfo
|
||||
.else
|
||||
TERMINFODIR= share/terminfo
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: distinfo,v 1.35 2018/10/18 19:42:49 leot Exp $
|
||||
$NetBSD: distinfo,v 1.36 2019/02/25 11:54:05 jperkin Exp $
|
||||
|
||||
SHA1 (ncurses-6.1.tar.gz) = 57acf6bc24cacd651d82541929f726f4def780cc
|
||||
RMD160 (ncurses-6.1.tar.gz) = 938235f3922f9c6ef0f1081d643ecb2da1347a17
|
||||
|
@ -11,5 +11,6 @@ SHA1 (patch-aclocal.m4) = efb1a966687d2c35fc3e3e1d5345e80aaf2822f6
|
|||
SHA1 (patch-c++_Makefile.in) = 68ff81c719ec4aa13beb962cb66d7cd6749d7af5
|
||||
SHA1 (patch-configure.in) = 48a705b3f4de3a65c0c1c3648f5a24c5310ed3fa
|
||||
SHA1 (patch-misc_ncurses-config.in) = 43e4dc8abe85804513da1189aeffa5c7746ffcca
|
||||
SHA1 (patch-misc_terminfo.src) = 3423a09b0b6aac1139ab21f514c631ee8c36c2f7
|
||||
SHA1 (patch-ncurses_base_MKlib__gen.sh) = f8ce67fbd273529e4161a2820677d05a623fd527
|
||||
SHA1 (patch-ncurses_tinfo_parse__entry.c) = 06d2b52e84595f8acd47ad36ded7b7d5bec95b8a
|
||||
|
|
17
devel/ncurses/patches/patch-misc_terminfo.src
Normal file
17
devel/ncurses/patches/patch-misc_terminfo.src
Normal file
|
@ -0,0 +1,17 @@
|
|||
$NetBSD: patch-misc_terminfo.src,v 1.1 2019/02/25 11:54:05 jperkin Exp $
|
||||
|
||||
Many terminal emulators still do not support the "rep" capability, so
|
||||
avoid it for maximum portability. Patch from OmniOS, see also
|
||||
http://invisible-island.net/ncurses/ncurses.faq.html#xterm_generic
|
||||
|
||||
--- misc/terminfo.src.orig 2018-01-27 15:14:08.000000000 +0000
|
||||
+++ misc/terminfo.src
|
||||
@@ -4328,7 +4328,7 @@ xterm-xfree86|xterm terminal emulator (X
|
||||
xterm-new|modern xterm terminal emulator,
|
||||
npc,
|
||||
indn=\E[%p1%dS, kb2=\EOE, kcbt=\E[Z, kent=\EOM,
|
||||
- rin=\E[%p1%dT, use=ansi+rep, use=ecma+strikeout,
|
||||
+ rin=\E[%p1%dT, use=ecma+strikeout,
|
||||
use=xterm+sm+1006, use=xterm+pcfkeys, use=xterm+tmux,
|
||||
use=xterm-basic,
|
||||
|
|
@ -1,10 +1,10 @@
|
|||
# $NetBSD: Makefile,v 1.18 2018/10/24 16:58:38 minskim Exp $
|
||||
# $NetBSD: Makefile,v 1.19 2019/02/25 11:54:05 jperkin Exp $
|
||||
|
||||
.include "../../devel/ncurses/Makefile.common"
|
||||
|
||||
PKGNAME= ${DISTNAME:S/ncurses/ncursesw/}
|
||||
COMMENT= Wide character CRT screen handling and optimization package
|
||||
PKGREVISION= 2
|
||||
PKGREVISION= 3
|
||||
|
||||
PATCHDIR= ${.CURDIR}/../../devel/ncurses/patches
|
||||
DISTINFO_FILE= ${.CURDIR}/../../devel/ncurses/distinfo
|
||||
|
|
Loading…
Reference in a new issue