summaryrefslogtreecommitdiff
path: root/misc/autocue
diff options
context:
space:
mode:
authoragc <agc>2007-02-24 12:16:12 +0000
committeragc <agc>2007-02-24 12:16:12 +0000
commit8504ec05755adcc96208784f6c7ad2aaa1a852b4 (patch)
treebcc76e813943fbbd59a14df738987ce8489d1fd1 /misc/autocue
parenta350f5e5f16c12243257d3de759c4838879ccb43 (diff)
downloadpkgsrc-8504ec05755adcc96208784f6c7ad2aaa1a852b4.tar.gz
Update to 20070224 - cosmetic changes, make default width 5 characters
smaller, and fix a typo in the man page.
Diffstat (limited to 'misc/autocue')
-rw-r--r--misc/autocue/Makefile5
-rw-r--r--misc/autocue/files/autocue.16
-rw-r--r--misc/autocue/files/autocue.c8
3 files changed, 9 insertions, 10 deletions
diff --git a/misc/autocue/Makefile b/misc/autocue/Makefile
index b944d76d765..37f625502e3 100644
--- a/misc/autocue/Makefile
+++ b/misc/autocue/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2007/01/07 09:14:00 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2007/02/24 12:16:12 agc Exp $
#
-DISTNAME= autocue-20060129
-PKGREVISION= 1
+DISTNAME= autocue-20070224
CATEGORIES= misc
MASTER_SITES= # empty
DISTFILES= # empty
diff --git a/misc/autocue/files/autocue.1 b/misc/autocue/files/autocue.1
index c7849d2303a..0347aea161d 100644
--- a/misc/autocue/files/autocue.1
+++ b/misc/autocue/files/autocue.1
@@ -1,4 +1,4 @@
-.\" $NetBSD: autocue.1,v 1.1.1.1 2006/01/28 20:47:22 agc Exp $
+.\" $NetBSD: autocue.1,v 1.2 2007/02/24 12:16:12 agc Exp $
.\"
.\" Copyright © 2006 Alistair Crooks. All rights reserved.
.\"
@@ -26,7 +26,7 @@
.\" NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
.\" SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
.\"
-.Dd January 28, 2006
+.Dd February 24, 2007
.Dt AUTOCUE 1
.Os
.Sh NAME
@@ -62,7 +62,7 @@ Slow readers can generally read at 3 characters per second, medium
at 7 characters per second, and fast readers at 10 or more characters per
second.
.It Fl c Ar maxcut
-Provides the maximum number of X11 cut buffers whihc will be used.
+Provides the maximum number of X11 cut buffers which will be used.
.It Fl s Ar speed
Provides pre-computed
.Ar fast ,
diff --git a/misc/autocue/files/autocue.c b/misc/autocue/files/autocue.c
index 8e9ea2f304d..cbb7ccbc995 100644
--- a/misc/autocue/files/autocue.c
+++ b/misc/autocue/files/autocue.c
@@ -1,4 +1,4 @@
-/* $NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $ */
+/* $NetBSD: autocue.c,v 1.3 2007/02/24 12:16:12 agc Exp $ */
/*
* Copyright © 2006 Alistair Crooks. All rights reserved.
@@ -32,7 +32,7 @@
#ifndef lint
__COPYRIGHT("@(#) Copyright © 2006 \
The NetBSD Foundation, Inc. All rights reserved.");
-__RCSID("$NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $");
+__RCSID("$NetBSD: autocue.c,v 1.3 2007/02/24 12:16:12 agc Exp $");
#endif
#include <err.h>
@@ -46,8 +46,8 @@ __RCSID("$NetBSD: autocue.c,v 1.2 2006/01/29 00:11:15 agc Exp $");
enum {
MaxCutBuffers = 4,
- FmtGoal = 50,
- FmtMax = 55,
+ FmtGoal = 45,
+ FmtMax = 50,
SlowDenom = 3,
MediumDenom = 7,