diff options
author | jtb <jtb> | 2001-05-19 18:08:43 +0000 |
---|---|---|
committer | jtb <jtb> | 2001-05-19 18:08:43 +0000 |
commit | 27d5794ae4509a9979c1774377ca9af20d340926 (patch) | |
tree | 3f20b7221406b3c43e24d6698ddddd68ca3d1644 | |
parent | c462b59bf6d8f0eecadfdd809b5282ed6b352a4d (diff) | |
download | pkgsrc-27d5794ae4509a9979c1774377ca9af20d340926.tar.gz |
Initial import of ttyrec.
ttyrec is a tty recorder. Recorded data can be played back with the
included ttyplay command. ttyrec is just a derivative of script
command for recording timing information with microsecond accuracy as
well. It can record emacs -nw, vi, lynx, or any programs running on
tty.
Package provided by Masao Uebayashi <uebayasi@soum.co.jp> in private
email as a followup to PR pkg/12978.
-rw-r--r-- | misc/ttyrec/Makefile | 14 | ||||
-rw-r--r-- | misc/ttyrec/distinfo | 5 | ||||
-rw-r--r-- | misc/ttyrec/patches/patch-aa | 10 | ||||
-rw-r--r-- | misc/ttyrec/pkg/DESCR | 5 | ||||
-rw-r--r-- | misc/ttyrec/pkg/PLIST | 3 |
5 files changed, 37 insertions, 0 deletions
diff --git a/misc/ttyrec/Makefile b/misc/ttyrec/Makefile new file mode 100644 index 00000000000..a4d20f7bfc5 --- /dev/null +++ b/misc/ttyrec/Makefile @@ -0,0 +1,14 @@ +# $NetBSD: Makefile,v 1.1.1.1 2001/05/19 18:08:43 jtb Exp $ + +DISTNAME= ttyrec-1.0.4 +CATEGORIES= misc +MASTER_SITES= http://namazu.org/~satoru/ttyrec/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://namazu.org/~satoru/ttyrec/ +COMMENT= ttyrec is a tty recorder + +do-install: + cd ${WRKSRC} && ${INSTALL_PROGRAM} ttyrec ttyplay ${PREFIX}/bin/ + +.include "../../mk/bsd.pkg.mk" diff --git a/misc/ttyrec/distinfo b/misc/ttyrec/distinfo new file mode 100644 index 00000000000..4954ffb7975 --- /dev/null +++ b/misc/ttyrec/distinfo @@ -0,0 +1,5 @@ +SHA1 (patch-aa) = f08dcddcfbcf68131a1e9e9086bffc2016ae702a + +SHA1 (ttyrec-1.0.4.tar.gz) = 5bcb1cbbca3fee3ce1876cc2c0584b8984df58ea +Size (ttyrec-1.0.4.tar.gz) = 6341 bytes +SHA1 (patch-aa) = f08dcddcfbcf68131a1e9e9086bffc2016ae702a diff --git a/misc/ttyrec/patches/patch-aa b/misc/ttyrec/patches/patch-aa new file mode 100644 index 00000000000..03ab6039dc4 --- /dev/null +++ b/misc/ttyrec/patches/patch-aa @@ -0,0 +1,10 @@ +$NetBSD: patch-aa,v 1.1.1.1 2001/05/19 18:08:43 jtb Exp $ + +--- Makefile.orig Sat May 19 18:01:13 2001 ++++ Makefile +@@ -1,5 +1,3 @@ +-CC = gcc +-CFLAGS = -O2 + VERSION = 1.0.4 + + TARGET = ttyrec ttyplay diff --git a/misc/ttyrec/pkg/DESCR b/misc/ttyrec/pkg/DESCR new file mode 100644 index 00000000000..9347804eeeb --- /dev/null +++ b/misc/ttyrec/pkg/DESCR @@ -0,0 +1,5 @@ +ttyrec is a tty recorder. Recorded data can be played back with the +included ttyplay command. ttyrec is just a derivative of script +command for recording timing information with microsecond accuracy as +well. It can record emacs -nw, vi, lynx, or any programs running on +tty. diff --git a/misc/ttyrec/pkg/PLIST b/misc/ttyrec/pkg/PLIST new file mode 100644 index 00000000000..7bca03a125b --- /dev/null +++ b/misc/ttyrec/pkg/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2001/05/19 18:08:43 jtb Exp $ +bin/ttyrec +bin/ttyplay |