1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup python26 1.0 |
---|
6 | |
---|
7 | name pssh |
---|
8 | version 2.1.1 |
---|
9 | categories sysutils net |
---|
10 | platforms darwin |
---|
11 | license BSD |
---|
12 | maintainers ambulatoryclam.net:dports openmaintainer |
---|
13 | depends_build port:py26-distribute |
---|
14 | |
---|
15 | description parallel versions of ssh tools |
---|
16 | long_description Commands for performing ssh operations in parallel \ |
---|
17 | against a group of machines. Includes pssh (run \ |
---|
18 | commands on multiple hosts), pscp (copy files to \ |
---|
19 | multiple hosts), prsync (rsync files to multiple \ |
---|
20 | hosts), pslurp (copy files from multiple hosts to a \ |
---|
21 | single destination), and pnuke (kill processes on \ |
---|
22 | multiple hosts.) |
---|
23 | |
---|
24 | homepage http://code.google.com/p/parallel-ssh/ |
---|
25 | master_sites googlecode:parallel-ssh |
---|
26 | checksums md5 4b355966da91850ac530f035f7404cd5 \ |
---|
27 | sha1 e841323505a98f9aa6624eb30a80216b637a2ada \ |
---|
28 | rmd160 5c29d08aeb1992833f59d581c508238bab04785f |
---|
29 | |
---|
30 | python.link_binaries no |
---|
31 | |
---|
32 | post-destroot { |
---|
33 | foreach x {"pssh" "pscp" "prsync" "pslurp" "pnuke" "pssh-askpass"} { |
---|
34 | ln -s ${python.prefix}/bin/$x ${destroot}${prefix}/bin |
---|
35 | } |
---|
36 | } |
---|