diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-10-29 19:31:50 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-10-29 19:31:50 +0000 |
commit | 52b2e2efd34e5476c850cd0a05a819ffb795e649 (patch) | |
tree | f32ac5304338d834ebb4daa25c8ad456f56e9357 /app-shells | |
parent | arm stable, bug #387291 (diff) | |
download | gentoo-2-52b2e2efd34e5476c850cd0a05a819ffb795e649.tar.gz gentoo-2-52b2e2efd34e5476c850cd0a05a819ffb795e649.tar.bz2 gentoo-2-52b2e2efd34e5476c850cd0a05a819ffb795e649.zip |
Version BUmp
(Portage version: 2.2.0_alpha71/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/prll/ChangeLog | 7 | ||||
-rw-r--r-- | app-shells/prll/prll-0.6.2.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/app-shells/prll/ChangeLog b/app-shells/prll/ChangeLog index 4ad44d2577c6..ed3e101a1b22 100644 --- a/app-shells/prll/ChangeLog +++ b/app-shells/prll/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-shells/prll # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/ChangeLog,v 1.11 2011/10/19 15:36:59 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/ChangeLog,v 1.12 2011/10/29 19:31:50 jlec Exp $ + +*prll-0.6.2 (29 Oct 2011) + + 29 Oct 2011; Justin Lecher <jlec@gentoo.org> +prll-0.6.2.ebuild: + Version BUmp *prll-0.6.1 (19 Oct 2011) diff --git a/app-shells/prll/prll-0.6.2.ebuild b/app-shells/prll/prll-0.6.2.ebuild new file mode 100644 index 000000000000..d2f20bd83e75 --- /dev/null +++ b/app-shells/prll/prll-0.6.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/prll-0.6.2.ebuild,v 1.1 2011/10/29 19:31:50 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 +} |