blob: 2b98a3a889e8b0428a7909ebe62cbf13248c04d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-terms/pssh/pssh-1.2.0.ebuild,v 1.2 2005/07/17 12:17:24 voxus Exp $
DESCRIPTION="This package provides parallel versions of the openssh tools."
HOMEPAGE="http://www.theether.org/pssh/"
SRC_URI="http://www.theether.org/pssh/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc ~amd64"
IUSE=""
DEPEND=">=dev-lang/python-2.2"
RDEPEND="net-misc/openssh"
src_install() {
dodoc AUTHORS COPYING TODO COPYING
# FIXME: how can i get current python version?
PY_VER=`ls /usr/lib | grep python | sort | tail -n 1`
PY_DIR=/usr/lib/${PY_VER}/site-packages
cd bin
for n in `ls`;
do
sed -e "s/python2\.2/${PY_VER/\./\\.}/" $n > $n.v
mv $n.v $n
done;
dobin {pnuke,prsync,pscp,pslurp,pssh}
cd ..
insinto ${PY_DIR}
doins `find lib -type f`
}
|