aboutsummaryrefslogtreecommitdiff
path: root/sysutils/tmux
diff options
context:
space:
mode:
authorWen Heping <wen@FreeBSD.org>2010-12-30 06:59:27 +0000
committerWen Heping <wen@FreeBSD.org>2010-12-30 06:59:27 +0000
commitbd0160ba7555a9247b108757f33de0199dab5a76 (patch)
tree230223a4fbeac26416daa9ccaf09fd868d2b5b46 /sysutils/tmux
parente69880777c86ba07f29e908d3c317ff3e73f87ba (diff)
downloadports-bd0160ba7555a9247b108757f33de0199dab5a76.tar.gz
ports-bd0160ba7555a9247b108757f33de0199dab5a76.zip
Notes
Diffstat (limited to 'sysutils/tmux')
-rw-r--r--sysutils/tmux/Makefile3
-rw-r--r--sysutils/tmux/distinfo4
-rw-r--r--sysutils/tmux/files/patch-configure8
-rw-r--r--sysutils/tmux/files/patch_server-window.c13
4 files changed, 7 insertions, 21 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile
index 24c73593466e..2aedf4d4c61c 100644
--- a/sysutils/tmux/Makefile
+++ b/sysutils/tmux/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= tmux
-PORTVERSION= 1.3
-PORTREVISION= 1
+PORTVERSION= 1.4
CATEGORIES= sysutils
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
diff --git a/sysutils/tmux/distinfo b/sysutils/tmux/distinfo
index ed441f8be068..6b9fbf4b71ec 100644
--- a/sysutils/tmux/distinfo
+++ b/sysutils/tmux/distinfo
@@ -1,2 +1,2 @@
-SHA256 (tmux-1.3.tar.gz) = 72c2d6f1c30fb4ccbd29b530a7d8a08e67c9c2d87ac8d67e3806561670fc0362
-SIZE (tmux-1.3.tar.gz) = 251999
+SHA256 (tmux-1.4.tar.gz) = c7e005f32e256b8ece214b71c51947f4081af8c5f0400083e4adaac2c258bbc7
+SIZE (tmux-1.4.tar.gz) = 259614
diff --git a/sysutils/tmux/files/patch-configure b/sysutils/tmux/files/patch-configure
index 977d6fbcaa79..9cac18d8b58f 100644
--- a/sysutils/tmux/files/patch-configure
+++ b/sysutils/tmux/files/patch-configure
@@ -1,10 +1,10 @@
---- configure.orig 2010-12-22 09:03:15.000000000 +0800
-+++ configure 2010-12-22 09:03:49.000000000 +0800
-@@ -208,7 +208,6 @@
+--- configure.orig 2010-12-29 11:18:06.000000000 +0100
++++ configure 2010-12-29 11:18:18.000000000 +0100
+@@ -222,7 +222,6 @@
FreeBSD|DragonFly)
cat <<EOF >>$CONFIG_H
#define HAVE_ASPRINTF
-#define HAVE_BROKEN_KQUEUE
#define HAVE_BZERO
+ #define HAVE_CLOSEFROM
#define HAVE_DAEMON
- #define HAVE_FGETLN
diff --git a/sysutils/tmux/files/patch_server-window.c b/sysutils/tmux/files/patch_server-window.c
deleted file mode 100644
index cdda2949ccb3..000000000000
--- a/sysutils/tmux/files/patch_server-window.c
+++ /dev/null
@@ -1,13 +0,0 @@
-@@ -109,10 +109,8 @@
-
- if (!(w->flags & WINDOW_BELL) || wl->flags & WINLINK_BELL)
- return (0);
-- if (s->curw == wl)
-- return (0);
--
-- wl->flags |= WINLINK_BELL;
-+ if (s->curw != wl)
-+ wl->flags |= WINLINK_BELL;
-
- action = options_get_number(&s->options, "bell-action");
- switch (action) {