1 | # -*- Mode: Tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name vcp |
---|
7 | version 2.2 |
---|
8 | platforms darwin |
---|
9 | categories sysutils |
---|
10 | maintainers thomasv@mac.com, alakazam@melix.net |
---|
11 | description vcp copies files and directories in a curses interface. |
---|
12 | long_description \ |
---|
13 | vcp copies files and directories in a curses interface, with text \ |
---|
14 | only output available. Its options and output are similar to cp. \ |
---|
15 | It provides visual information about files copied and left to copy, \ |
---|
16 | amount of data written and to be writen, amount of data being \ |
---|
17 | written every second and two status bars representing the number \ |
---|
18 | of files copied and to copy. |
---|
19 | |
---|
20 | homepage http://members.iinet.net.au/~lynx/vcp/ |
---|
21 | master_sites http://members.iinet.net.au/~lynx/vcp/ |
---|
22 | checksums md5 90a47777e6fcf364e2e1fd12e8b67d69 \ |
---|
23 | sha1 ed54932c36e8dbe54c585141a741ba295bd6e267 \ |
---|
24 | rmd160 14c228119457ee67ba1256a7e6f4b607c491f6f1 |
---|
25 | |
---|
26 | use_configure no |
---|
27 | |
---|
28 | destroot { |
---|
29 | system "cd ${worksrcpath} && \ |
---|
30 | install ${name} ${destroot}${prefix}/bin && |
---|
31 | install ${name}.1 ${destroot}${prefix}/share/man/man1 && |
---|
32 | install vcp.conf.sample ${destroot}${prefix}/etc/vcp.conf.sample" |
---|
33 | } |
---|