1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; truncate-lines: t; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id: Portfile 54316 2009-07-24 19:38:59Z snc@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name crswallow |
---|
7 | version 0.2 |
---|
8 | revision 1 |
---|
9 | categories sysutils |
---|
10 | platforms darwin |
---|
11 | maintainers gmail.com:stefan.van.der.eijk openmaintainer |
---|
12 | |
---|
13 | description crswallow processes text lines passed in from stdin and forwards most of them to stdout/stderr. |
---|
14 | long_description This software is a text filter for Linux/Unix environments. It processes text lines passed in from \ |
---|
15 | stdin and forwards most of them to stdout/stderr. \ |
---|
16 | Text lines which contain the carriage return character (cr) are often used by software to print progress information \ |
---|
17 | on a text console. They repeatedly update a single line on screen with the latest status. One example of such a software \ |
---|
18 | is the video encoding software mencoder. \ |
---|
19 | Some tools update the status very often, e.g. mencoder may do so several hundred times per second. \ |
---|
20 | Such output can be very disturbing when running software over a remote terminal connection with low \ |
---|
21 | bandwidth. Completely filtering such output is often not an opttion for jobs running over an extended \ |
---|
22 | period of time, because a limited amount of progress information is still desirable. \ |
---|
23 | The crswallow filter can limit status output to a single update in a given time interval, for example \ |
---|
24 | once per second. |
---|
25 | |
---|
26 | homepage http://code.google.com/p/crswallow/ |
---|
27 | master_sites http://crswallow.googlecode.com/files/ |
---|
28 | |
---|
29 | checksums md5 f1a751c0ea8891ec1682d4ea209fc3b0 \ |
---|
30 | sha1 96701106de01db3e4b46e799ff23b8537019410c \ |
---|
31 | rmd160 781d40d2fd00eafdbe9076ec9dfbf40670beef2e |
---|
32 | |
---|
33 | worksrcdir ${name} |
---|
34 | use_configure no |
---|
35 | build.target ${name} |
---|
36 | |
---|
37 | destroot { |
---|
38 | file mkdir -p ${destroot}${prefix}/bin |
---|
39 | xinstall ${worksrcpath}/${name} ${destroot}${prefix}/bin/ |
---|
40 | } |
---|