blob: 5e8da05e7d90576f9ef618aac2a88654dc8ab1d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-cluster/tentakel/tentakel-2.2.ebuild,v 1.3 2006/12/27 15:01:05 peper Exp $
inherit distutils eutils
DESCRIPTION="Execute commands on many hosts in parallel"
SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
HOMEPAGE="http://tentakel.biskalar.de/"
DEPEND="dev-lang/python"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 x86"
IUSE=""
S=${WORKDIR}/${P}/py
src_unpack() {
unpack ${A}
cd ${WORKDIR}/${P}
epatch ${FILESDIR}/${P}-manpath.patch
}
|