Ticket #23557: Portfile

File Portfile, 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             1.4.3
9categories          sysutils net
10platforms           darwin
11license             BSD
12maintainers         ambulatoryclam.net:dports openmaintainer
13
14description         parallel versions of ssh tools
15long_description    Commands for performing ssh operations in parallel  \
16                    against a group of machines. Includes pssh (run     \
17                    commands on multiple hosts), pscp (copy files to    \
18                    multiple hosts), prsync (rsync files to multiple    \
19                    hosts), pslurp (copy files from multiple hosts to a \
20                    single destination), and pnuke (kill processes on   \
21                    multiple hosts.)
22
23homepage            http://www.theether.org/pssh/
24master_sites        ${homepage}
25checksums           md5     dcb8e1497fdd53dced9c3a5d33053757 \
26                    sha1    986a16cc4d4d00b98b889c4b7f22ef67e745c73d \
27                    rmd160  82feed3296af06d547dfb715315b61bb57359eeb
28
29python.link_binaries no
30
31post-destroot {
32    foreach x {"pssh" "pscp" "prsync" "pslurp" "pnuke"} {
33        ln -s ${python.prefix}/bin/$x ${destroot}${prefix}/bin
34    }
35}