1 | # $Id: $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name nl |
---|
5 | version 1.8 |
---|
6 | categories textproc |
---|
7 | maintainers mjhsieh@yahoo.com |
---|
8 | description The nl utility, a line numbering filter, conforms to POSIX.1 standard. |
---|
9 | long_description The nl utility reads lines from the named file or the standard input if \ |
---|
10 | the file argument is ommitted, applies a configurable line numbering fil- \ |
---|
11 | ter operation and writes the result to the standard output. \ |
---|
12 | This is from FreeBSD's source tree. |
---|
13 | master_sites http://www.life.nthu.edu.tw/~mjhsieh/src |
---|
14 | homepage http://www.freebsd.org/cgi/query-pr.cgi?pr=27078 |
---|
15 | distname ${portname}-${portversion} |
---|
16 | platforms darwin |
---|
17 | checksums md5 94d69307d59e89a09de6c04fe913fef4 |
---|
18 | configure {} |
---|
19 | destroot { |
---|
20 | xinstall -d -m 0755 ${destroot}${prefix}/bin |
---|
21 | xinstall -d -m 0755 ${destroot}${prefix}/share/man/man1 |
---|
22 | xinstall -m 0755 ${worksrcpath}/nl ${destroot}${prefix}/bin |
---|
23 | xinstall -m 0644 ${worksrcpath}/nl.1 ${destroot}${prefix}/share/man/man1 |
---|
24 | } |
---|