Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 525702
Collapse All | Expand All

(-)/usr/portage/app-shells/pdsh/pdsh-2.26.ebuild (-1 / +14 lines)
Lines 4-12 Link Here
4
4
5
EAPI="2"
5
EAPI="2"
6
6
7
inherit autotools
8
7
DESCRIPTION="A high-performance, parallel remote shell utility"
9
DESCRIPTION="A high-performance, parallel remote shell utility"
8
HOMEPAGE="https://computing.llnl.gov/linux/pdsh.html"
10
HOMEPAGE="https://computing.llnl.gov/linux/pdsh.html"
9
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
11
SRC_URI="https://${PN}.googlecode.com/archive/${P}.zip"
10
12
11
LICENSE="GPL-2"
13
LICENSE="GPL-2"
12
SLOT="0"
14
SLOT="0"
Lines 17-22 Link Here
17
	rsh? ( net-misc/netkit-rsh )
19
	rsh? ( net-misc/netkit-rsh )
18
	readline? ( sys-libs/readline )"
20
	readline? ( sys-libs/readline )"
19
DEPEND="${RDEPEND}
21
DEPEND="${RDEPEND}
22
	app-arch/unzip
20
	test? ( dev-util/dejagnu )"
23
	test? ( dev-util/dejagnu )"
21
24
22
pkg_setup() {
25
pkg_setup() {
Lines 37-42 Link Here
37
	elog "PDSH_MODULE_LIST=\"module1 module2...\""
40
	elog "PDSH_MODULE_LIST=\"module1 module2...\""
38
}
41
}
39
42
43
src_prepare() {
44
	# non-standard directory name
45
	cd ${PN}-*
46
	S=`pwd`
47
	# broken timestamps
48
	find . -print0 | xargs -0 touch
49
	# a configure file which isn't executable
50
	chmod +x "${S}/configure"
51
}
52
40
src_configure() {
53
src_configure() {
41
	econf ${MODULE_CONFIG} \
54
	econf ${MODULE_CONFIG} \
42
		--with-machines \
55
		--with-machines \

Return to bug 525702