aboutsummaryrefslogtreecommitdiff
path: root/textproc/rl
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-06-22 20:19:51 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-06-22 20:19:51 +0000
commit7b166585406516e31bc6be0487c60bb05786759b (patch)
tree3025b149e514eec26958804f72350840dfd92d8c /textproc/rl
parentbc7b7b24e3eb10783f89ee24bfce60c4e7e02149 (diff)
downloadports-7b166585406516e31bc6be0487c60bb05786759b.tar.gz
ports-7b166585406516e31bc6be0487c60bb05786759b.zip
Add rl, a command-line tool that reads lines from an input file or stdin,
randomizes the lines and outputs a specified number of lines. It does this with only a single pass over the input while trying to use as little memory as possible. PR: ports/68182 Submitted by: David Sze <dsze@alumni.uwaterloo.ca>
Notes
Notes: svn path=/head/; revision=112001
Diffstat (limited to 'textproc/rl')
-rw-r--r--textproc/rl/Makefile21
-rw-r--r--textproc/rl/distinfo2
-rw-r--r--textproc/rl/pkg-descr6
3 files changed, 29 insertions, 0 deletions
diff --git a/textproc/rl/Makefile b/textproc/rl/Makefile
new file mode 100644
index 000000000000..a32f219d721c
--- /dev/null
+++ b/textproc/rl/Makefile
@@ -0,0 +1,21 @@
+# New ports collection makefile for: rl
+# Date created: 21 June 2004
+# Whom: David Sze <dsze@alumni.uwaterloo.ca>
+#
+# $FreeBSD$
+#
+
+PORTNAME= rl
+PORTVERSION= 0.2.2
+CATEGORIES= textproc
+MASTER_SITES= http://tiefighter.et.tudelft.nl/~arthur/rl/
+
+MAINTAINER= ports@FreeBSD.org
+COMMENT= Randomizes lines from a specified input file
+
+GNU_CONFIGURE= yes
+
+MAN1= rl.1
+PLIST_FILES= bin/rl
+
+.include <bsd.port.mk>
diff --git a/textproc/rl/distinfo b/textproc/rl/distinfo
new file mode 100644
index 000000000000..d94ae88d58b3
--- /dev/null
+++ b/textproc/rl/distinfo
@@ -0,0 +1,2 @@
+MD5 (rl-0.2.2.tar.gz) = 4be20e6633026d3f1fc3a44f0a856ad0
+SIZE (rl-0.2.2.tar.gz) = 108678
diff --git a/textproc/rl/pkg-descr b/textproc/rl/pkg-descr
new file mode 100644
index 000000000000..11b0ea771c8e
--- /dev/null
+++ b/textproc/rl/pkg-descr
@@ -0,0 +1,6 @@
+rl is a command-line tool that reads lines from an input file or stdin,
+randomizes the lines and outputs a specified number of lines. It does
+this with only a single pass over the input while trying to use as little
+memory as possible.
+
+WWW: http://tiefighter.et.tudelft.nl/~arthur/rl/