diff options
author | Justin Lecher <jlec@gentoo.org> | 2011-01-05 17:03:51 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2011-01-05 17:03:51 +0000 |
commit | 95f58756671ac605e3eeae440c841c9f86e74626 (patch) | |
tree | 25734277d35b45dec2d1569f857e0cd9c78aa744 /app-shells | |
parent | Initial commit. (diff) | |
download | gentoo-2-95f58756671ac605e3eeae440c841c9f86e74626.tar.gz gentoo-2-95f58756671ac605e3eeae440c841c9f86e74626.tar.bz2 gentoo-2-95f58756671ac605e3eeae440c841c9f86e74626.zip |
Some Clean up
(Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
Diffstat (limited to 'app-shells')
-rw-r--r-- | app-shells/prll/ChangeLog | 8 | ||||
-rw-r--r-- | app-shells/prll/files/0.4-ldflags.patch | 13 | ||||
-rw-r--r-- | app-shells/prll/files/0.4-prefix.patch | 20 | ||||
-rw-r--r-- | app-shells/prll/prll-0.4.ebuild | 30 |
4 files changed, 6 insertions, 65 deletions
diff --git a/app-shells/prll/ChangeLog b/app-shells/prll/ChangeLog index bdef3bad416e..03c2a6c1398a 100644 --- a/app-shells/prll/ChangeLog +++ b/app-shells/prll/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-shells/prll -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/ChangeLog,v 1.4 2010/05/18 07:02:14 jlec Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/ChangeLog,v 1.5 2011/01/05 17:03:51 jlec Exp $ + + 05 Jan 2011; Justin Lecher <jlec@gentoo.org> -files/0.4-ldflags.patch, + -files/0.4-prefix.patch, -prll-0.4.ebuild: + Some Clean up *prll-0.5 (18 May 2010) diff --git a/app-shells/prll/files/0.4-ldflags.patch b/app-shells/prll/files/0.4-ldflags.patch deleted file mode 100644 index 4e17c394ef83..000000000000 --- a/app-shells/prll/files/0.4-ldflags.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/Makefile b/Makefile -index c4587e7..b53dbb8 100644 ---- a/Makefile -+++ b/Makefile -@@ -13,7 +13,7 @@ sanitycheck: check_key_size - ./check_key_size && touch sanitycheck || (rm -f sanitycheck && false) - - prll_jobserver: sanitycheck -- $(CC) $(CFLAGS) -o prll_jobserver prll_jobserver.c -+ $(CC) $(CFLAGS) $(LDFLAGS) -o prll_jobserver prll_jobserver.c - - test: prll_jobserver - cd tests && $(MAKE) diff --git a/app-shells/prll/files/0.4-prefix.patch b/app-shells/prll/files/0.4-prefix.patch deleted file mode 100644 index 82bf35891228..000000000000 --- a/app-shells/prll/files/0.4-prefix.patch +++ /dev/null @@ -1,20 +0,0 @@ -diff --git a/prll.sh b/prll.sh -index 2ed4c04..bcf1525 100644 ---- a/prll.sh -+++ b/prll.sh -@@ -25,13 +25,13 @@ function prll() { - EOF - return 1 - fi -- /usr/bin/which prll_jobserver > /dev/null -+ @GENTOO_PORTAGE_EPREFIX@/usr/bin/which prll_jobserver > /dev/null - if [[ $? -ne 0 ]] ; then - echo "PRLL: Missing prll_jobserver." 1>&2 - return 1 - fi - if [[ -z $PRLL_NR_CPUS ]] ; then -- /usr/bin/which grep > /dev/null -+ @GENTOO_PORTAGE_EPREFIX@/usr/bin/which grep > /dev/null - if [[ $? -ne 0 || ! -a /proc/cpuinfo ]] ; then - echo "PRLL: Environment variable PRLL_NR_CPUS is not set" 1>&2 - echo "PRLL: and either the grep utility is missing or" 1>&2 diff --git a/app-shells/prll/prll-0.4.ebuild b/app-shells/prll/prll-0.4.ebuild deleted file mode 100644 index ec3a3040c0bc..000000000000 --- a/app-shells/prll/prll-0.4.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/prll/prll-0.4.ebuild,v 1.1 2010/02/26 10:00:58 jlec Exp $ - -EAPI="2" - -inherit eutils prefix toolchain-funcs - -DESCRIPTION="A utility for parallelizing execution in bash or zsh" -HOMEPAGE="http://prll.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-3 WTFPL-2" -SLOT="0" -KEYWORDS="~x86 ~amd64 ~x86-linux ~amd64-linux" -IUSE="" - -src_prepare() { - epatch "${FILESDIR}"/${PV}-ldflags.patch - epatch "${FILESDIR}"/${PV}-prefix.patch - tc-export CC - eprefixify ${PN}.sh -} - -src_install() { - dobin ${PN}_jobserver || die - insinto /etc/profile.d/ - doins ${PN}.sh || die - dodoc ChangeLog AUTHORS README NEWS || die -} |