import tmux 0.2

tmux is a "terminal multiplexer", it enables a number of terminals (or 
windows) 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.

port made by brynet at gmail, and Nicholas Marriott (maintainer)
This commit is contained in:
steven 2008-05-31 20:51:28 +00:00
parent 3537bb4985
commit 13d7a062f1
5 changed files with 48 additions and 0 deletions

24
misc/tmux/Makefile Normal file
View File

@ -0,0 +1,24 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/31 20:51:28 steven Exp $
COMMENT= terminal multiplexer
DISTNAME= tmux-0.2
CATEGORIES= misc
HOMEPAGE= http://www.sourceforge.net/projects/tmux/
MAINTAINER= Nicholas Marriott <nicm@users.sourceforge.net>
# ISC
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= c ncurses util
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=tmux/}
FAKE_FLAGS= PREFIX=${PREFIX}
NO_REGRESS= Yes
.include <bsd.port.mk>

5
misc/tmux/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (tmux-0.2.tar.gz) = RVppvOvNMmoMNzb5se+eow==
RMD160 (tmux-0.2.tar.gz) = K0znFHUeEskTPuD6wEGkP/eHAOw=
SHA1 (tmux-0.2.tar.gz) = zO6ySjj8WP+vDtHV6zHsEnBiZwY=
SHA256 (tmux-0.2.tar.gz) = GGbIOpcAY2Fw5NNC0h9rTCJ6GasQcHAiWMGsn54d9KM=
SIZE (tmux-0.2.tar.gz) = 76574

View File

@ -0,0 +1,12 @@
$OpenBSD: patch-tty_c,v 1.1.1.1 2008/05/31 20:51:28 steven Exp $
--- tty.c.orig Sat May 31 10:35:06 2008
+++ tty.c Sat May 31 10:35:11 2008
@@ -478,7 +478,7 @@ tty_vwrite(struct tty *tty, unused struct screen *s, i
tty_puts(tty, delete_character);
} else {
while (ua-- > 0)
- tty_putc(tty, '\008');
+ tty_putc(tty, '\010');
}
break;
case TTY_CURSORON:

4
misc/tmux/pkg/DESCR Normal file
View File

@ -0,0 +1,4 @@
tmux is a "terminal multiplexer", it enables a number of terminals (or
windows) 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.

3
misc/tmux/pkg/PLIST Normal file
View File

@ -0,0 +1,3 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/05/31 20:51:28 steven Exp $
bin/tmux
@man man/man1/tmux.1