aboutsummaryrefslogtreecommitdiff
blob: a56164e3a85713037f6b653b54821aca858738aa (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

DESCRIPTION="A shell tool for executing jobs in parallel locally or using remote machines"
HOMEPAGE="http://www.gnu.org/software/parallel/"
SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
# sys-apps/moreutils also installs /usr/bin/parallel with a similar 
# purpose but less functionality.
RDEPEND="!sys-apps/moreutils
	dev-lang/perl
	virtual/perl-Getopt-Long
	virtual/perl-File-Temp
	net-misc/rsync
	net-misc/openssh"
DEPEND="${RDEPEND}"

src_install() {
	emake \
		DESTDIR="${D}" \
		docdir="/usr/share/doc/${PF}" \
		install \
		|| die
	dodoc README NEWS || die
}