diff options
author | beech <beech@FreeBSD.org> | 2008-07-05 09:35:15 +0800 |
---|---|---|
committer | beech <beech@FreeBSD.org> | 2008-07-05 09:35:15 +0800 |
commit | 8958e32692ce1392a678570d6fcb82a777e087f6 (patch) | |
tree | de0e1936c9da2fda8459b253c7a54772fbf911dc /misc | |
parent | 27826bd1cfeea9fee1d0c2bbe72f30a5a16b67e0 (diff) | |
download | freebsd-ports-gnome-8958e32692ce1392a678570d6fcb82a777e087f6.tar.gz freebsd-ports-gnome-8958e32692ce1392a678570d6fcb82a777e087f6.tar.zst freebsd-ports-gnome-8958e32692ce1392a678570d6fcb82a777e087f6.zip |
- Update to 0.4a
- Use distversion instead of portversion for 0.4a
PR: ports/125190
Submitted by: Wen heping <wenheping@gmail.com> (maintainer)
Diffstat (limited to 'misc')
-rw-r--r-- | misc/tmux/Makefile | 2 | ||||
-rw-r--r-- | misc/tmux/distinfo | 6 | ||||
-rw-r--r-- | misc/tmux/files/patch-tty.c | 14 |
3 files changed, 18 insertions, 4 deletions
diff --git a/misc/tmux/Makefile b/misc/tmux/Makefile index 9ec00e46078d..b65df225c173 100644 --- a/misc/tmux/Makefile +++ b/misc/tmux/Makefile @@ -6,7 +6,7 @@ # PORTNAME= tmux -PORTVERSION= 0.3 +DISTVERSION= 0.4a CATEGORIES= misc MASTER_SITES= SF diff --git a/misc/tmux/distinfo b/misc/tmux/distinfo index 418bf3d432b7..ec5a414f0e8c 100644 --- a/misc/tmux/distinfo +++ b/misc/tmux/distinfo @@ -1,3 +1,3 @@ -MD5 (tmux-0.3.tar.gz) = a3ea00b76629180fbb50e77dda8e3bea -SHA256 (tmux-0.3.tar.gz) = a8e81e869e733a8fe7cb53ecdf232c794df08c9b19b4b3055f415ba5e354ac25 -SIZE (tmux-0.3.tar.gz) = 87339 +MD5 (tmux-0.4a.tar.gz) = 4afd9540f6b89df9a443cffb8345bf5a +SHA256 (tmux-0.4a.tar.gz) = 2aebe1161a7ac6563e5b2dda502da49d52c9e4059ba5cea1b21c6fc703d8bc78 +SIZE (tmux-0.4a.tar.gz) = 100685 diff --git a/misc/tmux/files/patch-tty.c b/misc/tmux/files/patch-tty.c new file mode 100644 index 000000000000..d153dd8f73a2 --- /dev/null +++ b/misc/tmux/files/patch-tty.c @@ -0,0 +1,14 @@ +--- tty.c.orig 2008-07-03 07:48:22.000000000 +0800 ++++ tty.c 2008-07-03 07:48:46.000000000 +0800 +@@ -85,9 +85,9 @@ + if (tcgetattr(tty->fd, &tty->tio) != 0) + fatal("tcgetattr failed"); + memcpy(&tio, &tty->tio, sizeof tio); +- tio.c_iflag &= ~(IXON|IXOFF|ICRNL|INLCR|IGNCR|IMAXBEL|IUCLC|ISTRIP); ++ tio.c_iflag &= ~(IXON|IXOFF|ICRNL|INLCR|IGNCR|IMAXBEL|ISTRIP); + tio.c_iflag |= IGNBRK; +- tio.c_oflag &= ~(OPOST|ONLCR|OCRNL|ONLRET|OLCUC); ++ tio.c_oflag &= ~(OPOST|ONLCR|OCRNL|ONLRET); + tio.c_lflag &= ~(IEXTEN|ICANON|ECHO|ECHOE|ECHONL|ECHOCTL|ECHOPRT|ECHOKE|ECHOCTL|ISIG); + tio.c_cc[VMIN] = 1; + tio.c_cc[VTIME] = 0; |