# $Id: Portfile,v 1.1 2004/04/24 12:47:50 mww Exp $

PortSystem 1.0
name		nl
version		1.8
categories	textproc
maintainers 	mjhsieh@yahoo.com
description	line numbering filter that conforms to the POSIX.1 standard
long_description	The nl utility reads lines from the named file or the \
			standard input if the file argument is ommitted, \
			applies a configurable line numbering filter operation \
			and writes the result to the standard output. This is \
			from FreeBSD's source tree.

homepage	http://www.freebsd.org/cgi/query-pr.cgi?pr=27078
master_sites	http://www.life.nthu.edu.tw/~mjhsieh/src
platforms	darwin
checksums	md5 94d69307d59e89a09de6c04fe913fef4

use_configure	no

destroot	{ 
	xinstall -d -m 0755 ${destroot}${prefix}/bin
	xinstall -d -m 0755 ${destroot}${prefix}/share/man/man1
	xinstall -m 0755 ${worksrcpath}/nl ${destroot}${prefix}/bin
	xinstall -m 0644 ${worksrcpath}/nl.1 ${destroot}${prefix}/share/man/man1
}
