diff options
| author | Mateusz Piotrowski <0mp@FreeBSD.org> | 2021-05-17 17:54:14 +0000 |
|---|---|---|
| committer | Mateusz Piotrowski <0mp@FreeBSD.org> | 2021-05-17 19:58:10 +0000 |
| commit | 7ad25914346848f27262e2a95a1de557eb23c2ad (patch) | |
| tree | 3c66dffa2002036ad41036d46b049b0554edcc0d | |
| parent | 0d3a8f965dbb4f54f91d72e5eb41d22b005b865b (diff) | |
textproc/slowcat: Add a new port
The "Slowcat" program is intended for use with various VT100 and other
animations from http://artscene.textfiles.com/vt100/, where a time delay
not unlike a terminal or modem makes the entire thing actually
understandable. This program will add an artificial 9600 baud delay
while printing a file.
| -rw-r--r-- | textproc/Makefile | 1 | ||||
| -rw-r--r-- | textproc/slowcat/Makefile | 28 | ||||
| -rw-r--r-- | textproc/slowcat/distinfo | 3 | ||||
| -rw-r--r-- | textproc/slowcat/pkg-descr | 6 |
4 files changed, 38 insertions, 0 deletions
diff --git a/textproc/Makefile b/textproc/Makefile index db07c3bccb64..6c4a88c93122 100644 --- a/textproc/Makefile +++ b/textproc/Makefile @@ -1795,6 +1795,7 @@ SUBDIR += sl-hyphen SUBDIR += sl-mythes SUBDIR += slides + SUBDIR += slowcat SUBDIR += smi SUBDIR += smu SUBDIR += so-hunspell diff --git a/textproc/slowcat/Makefile b/textproc/slowcat/Makefile new file mode 100644 index 000000000000..f70e1219a96f --- /dev/null +++ b/textproc/slowcat/Makefile @@ -0,0 +1,28 @@ +PORTNAME= slowcat +DISTVERSION= 2.2 +CATEGORIES= textproc perl5 +MASTER_SITES= http://artscene.textfiles.com/viewers/linux/ +DISTNAME= ${PORTNAME} +EXTRACT_SUFX= .pl +DIST_SUBDIR= ${PKGNAME} + +MAINTAINER= 0mp@FreeBSD.org +COMMENT= Write output slowly, emulating physical serial terminal + +LICENSE= PD + +USES= perl5 + +NO_ARCH= yes +NO_BUILD= yes +NO_WRKSUBDIR= yes +PLIST_FILES= bin/${DISTNAME} + +do-extract: + @${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTFILES} ${WRKSRC} + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX} \ + ${STAGEDIR}${PREFIX}/bin/${DISTNAME} + +.include <bsd.port.mk> diff --git a/textproc/slowcat/distinfo b/textproc/slowcat/distinfo new file mode 100644 index 000000000000..be969bd45edf --- /dev/null +++ b/textproc/slowcat/distinfo @@ -0,0 +1,3 @@ +TIMESTAMP = 1586358235 +SHA256 (slowcat-2.2/slowcat.pl) = aae502c8de8e46ba933a9dca2a957f6779ab34eef008e5266ce57e25fd13e4f4 +SIZE (slowcat-2.2/slowcat.pl) = 2239 diff --git a/textproc/slowcat/pkg-descr b/textproc/slowcat/pkg-descr new file mode 100644 index 000000000000..0c85b3f3b857 --- /dev/null +++ b/textproc/slowcat/pkg-descr @@ -0,0 +1,6 @@ +The "Slowcat" program is intended for use with various VT100 and other +animations from http://artscene.textfiles.com/vt100/, where a time delay +not unlike a terminal or modem makes the entire thing actually understandable. +This program will add an artificial 9600 baud delay while printing a file. + +WWW: http://artscene.textfiles.com/viewers/ |
