diff options
author | tsutsui <tsutsui@pkgsrc.org> | 2014-11-30 13:26:00 +0000 |
---|---|---|
committer | tsutsui <tsutsui@pkgsrc.org> | 2014-11-30 13:26:00 +0000 |
commit | 4b6f8307cd2b53072769e62af645b122ec1d681a (patch) | |
tree | ef8def0aea90d52b9ba9c92bf81885665eedc0d9 /x11 | |
parent | 09a4bd5a0043e006e8946dc33179ce17cc101b41 (diff) | |
download | pkgsrc-4b6f8307cd2b53072769e62af645b122ec1d681a.tar.gz |
Pull a post-3.4.0 fix from upstream.
http://sourceforge.net/projects/mlterm/files/01release/mlterm-3.4.0/mlterm-3.4.0-fixes.patch/download
* Pty to be responsed to by OSC 5381 is fixed.
Bump PKGREVISION.
Diffstat (limited to 'x11')
-rw-r--r-- | x11/mlterm/Makefile | 3 | ||||
-rw-r--r-- | x11/mlterm/distinfo | 3 | ||||
-rw-r--r-- | x11/mlterm/patches/patch-mlterm_ml__term.c | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/x11/mlterm/Makefile b/x11/mlterm/Makefile index 400ead09009..393931d4e6d 100644 --- a/x11/mlterm/Makefile +++ b/x11/mlterm/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.111 2014/11/02 19:38:12 tsutsui Exp $ +# $NetBSD: Makefile,v 1.112 2014/11/30 13:26:00 tsutsui Exp $ DISTNAME= mlterm-3.4.0 +PKGREVISION= 1 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=mlterm/} diff --git a/x11/mlterm/distinfo b/x11/mlterm/distinfo index 11a1d8a3b52..a1b582945e0 100644 --- a/x11/mlterm/distinfo +++ b/x11/mlterm/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.51 2014/11/02 19:38:12 tsutsui Exp $ +$NetBSD: distinfo,v 1.52 2014/11/30 13:26:00 tsutsui Exp $ SHA1 (mlterm-3.4.0.tar.gz) = b30a1fdbdac1acbb3409218038d05d3d1c7bbb81 RMD160 (mlterm-3.4.0.tar.gz) = 3e3e7c01b6f1defa0b6327dccb75ffa395218014 Size (mlterm-3.4.0.tar.gz) = 3630918 bytes SHA1 (patch-configure) = 30ce9b53fae4689fb0ffb86a3a63a78ef01cb65f SHA1 (patch-etc_font-fb) = c9f116aae7640807f4adc4042adc49ddd9805e67 +SHA1 (patch-mlterm_ml__term.c) = 0d5471092d46b945a93cee1ee5cb200edc08a85a diff --git a/x11/mlterm/patches/patch-mlterm_ml__term.c b/x11/mlterm/patches/patch-mlterm_ml__term.c new file mode 100644 index 00000000000..409a9a80af9 --- /dev/null +++ b/x11/mlterm/patches/patch-mlterm_ml__term.c @@ -0,0 +1,13 @@ +$NetBSD: patch-mlterm_ml__term.c,v 1.1 2014/11/30 13:26:00 tsutsui Exp $ + +--- mlterm/ml_term.c.orig 2014-10-27 22:25:45.000000000 +0000 ++++ mlterm/ml_term.c +@@ -1353,7 +1353,7 @@ ml_term_get_config( + } + else + { +- ml_response_config( term->pty , key , value , to_menu) ; ++ ml_response_config( output->pty , key , value , to_menu) ; + } + + return 1 ; |