summaryrefslogtreecommitdiff
path: root/sysutils/tmux
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2008-11-19 10:43:57 +0000
commitf982be45e81588a27383cd1a3eb12789b8498904 (patch)
tree07be283d015b2c39f95e655cb7328ff355bc47fa /sysutils/tmux
parent- Fix modes of the temp directory [1] (diff)
This commit was manufactured by cvs2svn to create tag 'RELEASE_6_4_0'.release/6.4.0
Notes
Notes: svn path=/head/; revision=223035 svn path=/tags/RELEASE_6_4_0/; revision=223036; tag=release/6.4.0
Diffstat (limited to 'sysutils/tmux')
-rw-r--r--sysutils/tmux/Makefile24
-rw-r--r--sysutils/tmux/distinfo3
-rw-r--r--sysutils/tmux/files/patch-tty.c14
-rw-r--r--sysutils/tmux/pkg-descr5
4 files changed, 0 insertions, 46 deletions
diff --git a/sysutils/tmux/Makefile b/sysutils/tmux/Makefile
deleted file mode 100644
index b65df225c173..000000000000
--- a/sysutils/tmux/Makefile
+++ /dev/null
@@ -1,24 +0,0 @@
-# New ports collection makefile for: tmux
-# Date created: 28 May 2008
-# Whom: Wen Heping <wenheping@gmail.com>
-#
-# $FreeBSD$
-#
-
-PORTNAME= tmux
-DISTVERSION= 0.4a
-CATEGORIES= misc
-MASTER_SITES= SF
-
-MAINTAINER= wenheping@gmail.com
-COMMENT= A Terminal Multiplexer
-
-MAN1= tmux.1
-
-PLIST_FILES= bin/tmux
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/tmux ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/tmux.1 ${MANPREFIX}/man/man1
-
-.include <bsd.port.mk>
diff --git a/sysutils/tmux/distinfo b/sysutils/tmux/distinfo
deleted file mode 100644
index ec5a414f0e8c..000000000000
--- a/sysutils/tmux/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (tmux-0.4a.tar.gz) = 4afd9540f6b89df9a443cffb8345bf5a
-SHA256 (tmux-0.4a.tar.gz) = 2aebe1161a7ac6563e5b2dda502da49d52c9e4059ba5cea1b21c6fc703d8bc78
-SIZE (tmux-0.4a.tar.gz) = 100685
diff --git a/sysutils/tmux/files/patch-tty.c b/sysutils/tmux/files/patch-tty.c
deleted file mode 100644
index d153dd8f73a2..000000000000
--- a/sysutils/tmux/files/patch-tty.c
+++ /dev/null
@@ -1,14 +0,0 @@
---- 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;
diff --git a/sysutils/tmux/pkg-descr b/sysutils/tmux/pkg-descr
deleted file mode 100644
index a97db267814f..000000000000
--- a/sysutils/tmux/pkg-descr
+++ /dev/null
@@ -1,5 +0,0 @@
-Tmux is a terminal multiplexer, it enables a number of terminals to be accessed
-and controlled from a single terminal. tmux is intended to be a simple, modern,
-BSD-licensed alternative to programs such as GNU screen.
-
-WWW: http://tmux.sf.net/