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

DESCRIPTION="A collection of tools for executing commands on cluster nodes"
HOMEPAGE="http://clusterit.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE="X"

DEPEND="X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}
	!app-shells/dsh"

src_unpack() {
	unpack ${A}
	use X || sed -i '/^SUBDIRS =/ { s/dvt//; s/rvt// }' "${S}/Makefile.in"
}

src_install() {
	emake DESTDIR="${D}" install || die "Install failed"
	dodoc README CHANGES
}