Date: Wed, 24 Sep 2014 13:56:26 +0000 (UTC) From: Dmitry Marakasov <amdmi3@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r369180 - in head/misc: . colwide Message-ID: <201409241356.s8ODuQHI096437@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: amdmi3 Date: Wed Sep 24 13:56:25 2014 New Revision: 369180 URL: http://svnweb.freebsd.org/changeset/ports/369180 QAT: https://qat.redports.org/buildarchive/r369180/ Log: 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 Added: head/misc/colwide/ head/misc/colwide/Makefile (contents, props changed) head/misc/colwide/distinfo (contents, props changed) head/misc/colwide/pkg-descr (contents, props changed) Modified: head/misc/Makefile Modified: head/misc/Makefile ============================================================================== --- head/misc/Makefile Wed Sep 24 13:38:28 2014 (r369179) +++ head/misc/Makefile Wed Sep 24 13:56:25 2014 (r369180) @@ -38,6 +38,7 @@ SUBDIR += clpbar SUBDIR += cmatrix SUBDIR += colortail + SUBDIR += colwide SUBDIR += compat10x SUBDIR += compat4x SUBDIR += compat5x Added: head/misc/colwide/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/colwide/Makefile Wed Sep 24 13:56:25 2014 (r369180) @@ -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 <bsd.port.mk> Added: head/misc/colwide/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/colwide/distinfo Wed Sep 24 13:56:25 2014 (r369180) @@ -0,0 +1,2 @@ +SHA256 (colwide-0.01) = 95c4c693d033331ce688f28a096c29e841bd706847d464f7d6d2c1163bc3c381 +SIZE (colwide-0.01) = 2220 Added: head/misc/colwide/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/misc/colwide/pkg-descr Wed Sep 24 13:56:25 2014 (r369180) @@ -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/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201409241356.s8ODuQHI096437>