diff options
Diffstat (limited to 'sys-process/prll/prll-0.6.2.ebuild')
-rw-r--r-- | sys-process/prll/prll-0.6.2.ebuild | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/sys-process/prll/prll-0.6.2.ebuild b/sys-process/prll/prll-0.6.2.ebuild new file mode 100644 index 000000000000..43777c8f145a --- /dev/null +++ b/sys-process/prll/prll-0.6.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-process/prll/prll-0.6.2.ebuild,v 1.1 2012/02/16 20:14:16 jlec Exp $ + +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 +} |