diff options
author | 2008-06-15 18:54:59 +0000 | |
---|---|---|
committer | 2008-06-15 18:54:59 +0000 | |
commit | 0873a742aeadebeb1b088b5ca1d7cdc1c3792c86 (patch) | |
tree | f34e88256aed29d2b606b760c7c4e0992dcdb1b9 | |
parent | do not fail in absence of hal, bug #220459. more su helper sweetness, bug #22... (diff) | |
download | gentoo-2-0873a742aeadebeb1b088b5ca1d7cdc1c3792c86.tar.gz gentoo-2-0873a742aeadebeb1b088b5ca1d7cdc1c3792c86.tar.bz2 gentoo-2-0873a742aeadebeb1b088b5ca1d7cdc1c3792c86.zip |
Version bump.
(Portage version: 2.1.5.5)
-rw-r--r-- | app-shells/pdsh/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/pdsh/pdsh-2.16.ebuild | 40 |
2 files changed, 46 insertions, 1 deletions
diff --git a/app-shells/pdsh/ChangeLog b/app-shells/pdsh/ChangeLog index d532199fc8ec..2e2f122cc9b6 100644 --- a/app-shells/pdsh/ChangeLog +++ b/app-shells/pdsh/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/pdsh # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/ChangeLog,v 1.10 2008/06/15 18:52:27 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/ChangeLog,v 1.11 2008/06/15 18:54:59 swegener Exp $ + +*pdsh-2.16 (15 Jun 2008) + + 15 Jun 2008; Sven Wegener <swegener@gentoo.org> +pdsh-2.16.ebuild: + Version bump. 15 Jun 2008; Sven Wegener <swegener@gentoo.org> +files/pdsh-2.14-gcc-4.3-unistd.h.patch, diff --git a/app-shells/pdsh/pdsh-2.16.ebuild b/app-shells/pdsh/pdsh-2.16.ebuild new file mode 100644 index 000000000000..79aaeb81534e --- /dev/null +++ b/app-shells/pdsh/pdsh-2.16.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/pdsh/pdsh-2.16.ebuild,v 1.1 2008/06/15 18:54:59 swegener Exp $ + +inherit eutils + +DESCRIPTION="A high-performance, parallel remote shell utility." +HOMEPAGE="https://computing.llnl.gov/linux/pdsh.html" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crypt readline rsh" +RDEPEND="crypt? ( net-misc/openssh ) + rsh? ( net-misc/netkit-rsh ) + readline? ( sys-libs/readline )" +DEPEND="${RDEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + + epatch "${FILESDIR}"/${PN}-2.14-gcc-4.3-unistd.h.patch + epatch "${FILESDIR}"/${PN}-2.14-glibc-2.8-ARG_MAX.patch +} + +src_compile() { + econf \ + --with-machines \ + $(use_with crypt ssh) \ + $(use_with rsh) \ + $(use_with readline) \ + || die "configure failed" + + emake || die "make failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" +} |