blob: cd4190e5c4da7c1be97809101c40b7ec77e863cb (
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
30
31
32
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=4
inherit eutils prefix toolchain-funcs
DESCRIPTION="A utility for parallelizing execution of shell functions"
HOMEPAGE="http://prll.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE=""
src_prepare() {
sed \
-e '/then sh/d' \
-e '/then zsh/d' \
-e '/then dash/d' \
-i tests/Makefile || die
tc-export CC
}
src_install() {
dobin ${PN}_{qer,bfr}
insinto /etc/profile.d/
doins ${PN}.sh
dodoc AUTHORS README NEWS
doman ${PN}.1
}
|