diff options
author | miwi <miwi@FreeBSD.org> | 2008-06-21 01:57:09 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-06-21 01:57:09 +0800 |
commit | a2b73e1d6ed565bc3a0bf0d8eda525c75c637fbf (patch) | |
tree | e2e2fb966ce4138576386e02896fdce5507ebaee /textproc | |
parent | 41cd33cd9047e6e31fd2301cbebbb27cec8abc96 (diff) | |
download | freebsd-ports-gnome-a2b73e1d6ed565bc3a0bf0d8eda525c75c637fbf.tar.gz freebsd-ports-gnome-a2b73e1d6ed565bc3a0bf0d8eda525c75c637fbf.tar.zst freebsd-ports-gnome-a2b73e1d6ed565bc3a0bf0d8eda525c75c637fbf.zip |
shuffle, as its name implies, shuffles the lines of its input (either
standard input, or the named files) into random order. It is in a
sense the very inverse of sort(1)).
WWW: http://www.eskimo.com/~scs/src/#shuffle
PR: ports/124100
Submitted by: Greg Larkin <glarkin at sourcehosting.net>
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/Makefile | 1 | ||||
-rw-r--r-- | textproc/fileshuffle/Makefile | 25 | ||||
-rw-r--r-- | textproc/fileshuffle/distinfo | 3 | ||||
-rw-r--r-- | textproc/fileshuffle/pkg-descr | 5 |
4 files changed, 34 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index 7c845247089f..1879dcc13970 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -151,6 +151,7 @@ SUBDIR += ffe SUBDIR += fi-aspell SUBDIR += filepp + SUBDIR += fileshuffle SUBDIR += fist SUBDIR += fixrtf SUBDIR += fldiff diff --git a/textproc/fileshuffle/Makefile b/textproc/fileshuffle/Makefile new file mode 100644 index 000000000000..b43523f006d2 --- /dev/null +++ b/textproc/fileshuffle/Makefile @@ -0,0 +1,25 @@ +# New ports collection makefile for: fileshuffle +# Date created: 2008-05-29 +# Whom: Greg Larkin <glarkin@sourcehosting.net> +# +# $FreeBSD$ +# + +PORTNAME= fileshuffle +PORTVERSION= 0.1 +CATEGORIES= textproc +MASTER_SITES= ftp://ftp.eskimo.com/u/s/scs/src/ +DISTNAME= shuffle + +MAINTAINER= glarkin@sourcehosting.net +COMMENT= A filter for shuffling lines in a text file into random order + +MANPAGE= shuffle.1 + +PLIST_FILES= bin/${PORTNAME} +MAN1= ${PORTNAME}.1 + +do-install: + @${CP} ${WRKSRC}/shuffle ${PREFIX}/bin/${PORTNAME} + @${CP} ${WRKSRC}/${MANPAGE} ${PREFIX}/man/man1/${PORTNAME}.1 +.include <bsd.port.mk> diff --git a/textproc/fileshuffle/distinfo b/textproc/fileshuffle/distinfo new file mode 100644 index 000000000000..257c986e6401 --- /dev/null +++ b/textproc/fileshuffle/distinfo @@ -0,0 +1,3 @@ +MD5 (shuffle.tar.gz) = 22b271c58d0abd618260a06ff45786d2 +SHA256 (shuffle.tar.gz) = f9eab7047cea96daccccfae6453dacec1696a5a25f76e1e059364239958c05ae +SIZE (shuffle.tar.gz) = 16780 diff --git a/textproc/fileshuffle/pkg-descr b/textproc/fileshuffle/pkg-descr new file mode 100644 index 000000000000..cd4418553e2d --- /dev/null +++ b/textproc/fileshuffle/pkg-descr @@ -0,0 +1,5 @@ +shuffle, as its name implies, shuffles the lines of its input (either +standard input, or the named files) into random order. It is in a +sense the very inverse of sort(1)). + +WWW: http://www.eskimo.com/~scs/src/#shuffle |