Ticket #23557: Portfile.2

File Portfile.2, 1.4 KB (added by drkp (Dan Ports), 14 years ago)
Line 
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
4PortSystem          1.0
5PortGroup           python26 1.0
6
7name                pssh
8version             2.1.1
9categories          sysutils net
10platforms           darwin
11license             BSD
12maintainers         ambulatoryclam.net:dports openmaintainer
13depends_build       port:py26-distribute
14
15description         parallel versions of ssh tools
16long_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
24homepage            http://code.google.com/p/parallel-ssh/
25master_sites        googlecode:parallel-ssh
26checksums           md5     4b355966da91850ac530f035f7404cd5 \
27                    sha1    e841323505a98f9aa6624eb30a80216b637a2ada \
28                    rmd160  5c29d08aeb1992833f59d581c508238bab04785f
29
30python.link_binaries no
31
32post-destroot {
33    foreach x {"pssh" "pscp" "prsync" "pslurp" "pnuke" "pssh-askpass"} {
34        ln -s ${python.prefix}/bin/$x ${destroot}${prefix}/bin
35    }
36}