| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-misc/pssh/pssh-2.2.2.ebuild,v 1.3 2012/02/10 03:07:51 patrick Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
PYTHON_DEPEND="*:2.5"
|
| 8 |
inherit distutils
|
| 9 |
|
| 10 |
DESCRIPTION="PSSH provides parallel versions of OpenSSH and related tools"
|
| 11 |
HOMEPAGE="http://code.google.com/p/parallel-ssh/"
|
| 12 |
SRC_URI="http://parallel-ssh.googlecode.com/files/${P}.tar.gz"
|
| 13 |
|
| 14 |
LICENSE="BSD"
|
| 15 |
SLOT="0"
|
| 16 |
KEYWORDS="~amd64 ~ppc ~x86 ~x86-interix ~amd64-linux ~x86-linux"
|
| 17 |
IUSE=""
|
| 18 |
|
| 19 |
RDEPEND="net-misc/openssh
|
| 20 |
!net-misc/putty"
|
| 21 |
DEPEND="${RDEPEND}
|
| 22 |
dev-python/setuptools"
|
| 23 |
|
| 24 |
# Requires ssh access to run.
|
| 25 |
RESTRICT="test"
|
| 26 |
|
| 27 |
PYTHON_MODNAME=psshlib
|
| 28 |
|
| 29 |
src_prepare() {
|
| 30 |
sed -i -e "s|man/man1'|share/&|g" setup.py || die
|
| 31 |
distutils_src_prepare
|
| 32 |
}
|