summaryrefslogtreecommitdiff
blob: deb633f4fb59148d9cf9abe65767fb44c340c1e4 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/pdsh-2.9.ebuild,v 1.2 2007/07/15 05:23:38 mr_bones_ Exp $

inherit versionator

MY_PV=$(replace_version_separator 2 '-')
MY_P="${PN}-${MY_PV}"
DESCRIPTION="A high-performance, parallel remote shell utility."
HOMEPAGE="http://www.llnl.gov/linux/pdsh/pdsh.html"
SRC_URI="ftp://ftp.llnl.gov/pub/linux/pdsh/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="crypt readline"
RDEPEND="crypt? ( net-misc/openssh )
	net-misc/netkit-rsh
	readline? ( sys-libs/readline )"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"

src_compile() {
	econf \
	    $(use_with crypt ssh) \
		--with-rsh \
	    $(use_with readline) \
	    --with-machines \
	    || die "configure failed"
	emake || die "make failed"
}

src_install() {
	einstall || die "install failed"
}