aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/tmux
diff options
context:
space:
mode:
authorwen <wen@FreeBSD.org>2010-12-30 14:59:27 +0800
committerwen <wen@FreeBSD.org>2010-12-30 14:59:27 +0800
commitf97dfb324b07184e393b0f476cee3e727a7e8f32 (patch)
tree6c925841a7e7a4016bad66ad48bad7b15a6fdf57 /sysutils/tmux
parent7bc51520967b99b077ae758568530fd905221405 (diff)
downloadfreebsd-ports-gnome-f97dfb324b07184e393b0f476cee3e727a7e8f32.tar.gz
freebsd-ports-gnome-f97dfb324b07184e393b0f476cee3e727a7e8f32.tar.zst
freebsd-ports-gnome-f97dfb324b07184e393b0f476cee3e727a7e8f32.zip
- Update to 1.4
Submitted by: h.skuhra@gmail.com (via Email)
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) {