blob: 4a50856e6b35dece157e34e8afc2a21431b91e94 (
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
|
# 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.1 2006/07/20 05:29:57 dberkholz 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"
}
|