From 958f78c3b8b9f93378c64808d61e4fcccd453d6a Mon Sep 17 00:00:00 2001 From: amdmi3 Date: Wed, 24 Sep 2014 13:56:25 +0000 Subject: colwide is a Perl script which displays either 80 or specified number of hash (#) characters on the screen. Can be useful to determine terminal width. WWW: http://www.neelc.org/software/colwide/ PR: 193466 Submitted by: neel@neelc.org --- misc/Makefile | 1 + misc/colwide/Makefile | 30 ++++++++++++++++++++++++++++++ misc/colwide/distinfo | 2 ++ misc/colwide/pkg-descr | 4 ++++ 4 files changed, 37 insertions(+) create mode 100644 misc/colwide/Makefile create mode 100644 misc/colwide/distinfo create mode 100644 misc/colwide/pkg-descr (limited to 'misc') diff --git a/misc/Makefile b/misc/Makefile index 87c7c2e69f75..f1b3df3b8d08 100644 --- a/misc/Makefile +++ b/misc/Makefile @@ -38,6 +38,7 @@ SUBDIR += clpbar SUBDIR += cmatrix SUBDIR += colortail + SUBDIR += colwide SUBDIR += compat10x SUBDIR += compat4x SUBDIR += compat5x diff --git a/misc/colwide/Makefile b/misc/colwide/Makefile new file mode 100644 index 000000000000..aaec53f46729 --- /dev/null +++ b/misc/colwide/Makefile @@ -0,0 +1,30 @@ +# $FreeBSD$ + +PORTNAME= colwide +PORTVERSION= 0.01 +CATEGORIES= misc perl5 +MASTER_SITES= http://www.neelc.org/files/colwide/ +EXTRACT_SUFX= # empty +EXTRACT_ONLY= # empty + +MAINTAINER= neel@neelc.org +COMMENT= Utility which outputs a number of characters to the screen + +LICENSE= BSD2CLAUSE + +USES= perl5 shebangfix +USE_PERL5= run +NO_BUILD= yes +NO_WRKSUBDIR= yes + +SHEBANG_FILES= colwide + +PLIST_FILES= bin/${PORTNAME} + +do-extract: + ${CP} ${DISTDIR}/colwide-${PORTVERSION} ${WRKDIR}/colwide + +do-install: + ${INSTALL_SCRIPT} ${WRKDIR}/colwide ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include diff --git a/misc/colwide/distinfo b/misc/colwide/distinfo new file mode 100644 index 000000000000..bee9c9705c5d --- /dev/null +++ b/misc/colwide/distinfo @@ -0,0 +1,2 @@ +SHA256 (colwide-0.01) = 95c4c693d033331ce688f28a096c29e841bd706847d464f7d6d2c1163bc3c381 +SIZE (colwide-0.01) = 2220 diff --git a/misc/colwide/pkg-descr b/misc/colwide/pkg-descr new file mode 100644 index 000000000000..d55a3174219d --- /dev/null +++ b/misc/colwide/pkg-descr @@ -0,0 +1,4 @@ +colwide is a Perl script which displays either 80 or specified number of hash +(#) characters on the screen. Can be useful to determine terminal width. + +WWW: http://www.neelc.org/software/colwide/ -- cgit