diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-11-16 17:12:13 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-11-16 17:12:13 +0000 |
commit | e50cd5b653e2b666c2caa9d37909ad1f573d21f7 (patch) | |
tree | 48296887f1cc86c531893650d8b96f6b0523e156 /sci-chemistry/aqua | |
parent | Version bump. (diff) | |
download | gentoo-2-e50cd5b653e2b666c2caa9d37909ad1f573d21f7.tar.gz gentoo-2-e50cd5b653e2b666c2caa9d37909ad1f573d21f7.tar.bz2 gentoo-2-e50cd5b653e2b666c2caa9d37909ad1f573d21f7.zip |
Corrected usage of system tools
(Portage version: 2.1.9.24/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/aqua')
-rw-r--r-- | sci-chemistry/aqua/ChangeLog | 8 | ||||
-rw-r--r-- | sci-chemistry/aqua/aqua-3.2-r2.ebuild (renamed from sci-chemistry/aqua/aqua-3.2-r1.ebuild) | 8 |
2 files changed, 13 insertions, 3 deletions
diff --git a/sci-chemistry/aqua/ChangeLog b/sci-chemistry/aqua/ChangeLog index 6749f3ad30b8..6b1a8a0f052d 100644 --- a/sci-chemistry/aqua/ChangeLog +++ b/sci-chemistry/aqua/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-chemistry/aqua # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/aqua/ChangeLog,v 1.3 2010/07/19 06:27:54 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/aqua/ChangeLog,v 1.4 2010/11/16 17:12:12 jlec Exp $ + +*aqua-3.2-r2 (16 Nov 2010) + + 16 Nov 2010; Justin Lecher <jlec@gentoo.org> -aqua-3.2-r1.ebuild, + +aqua-3.2-r2.ebuild: + Corrected usage of system tools *aqua-3.2-r1 (19 Jul 2010) diff --git a/sci-chemistry/aqua/aqua-3.2-r1.ebuild b/sci-chemistry/aqua/aqua-3.2-r2.ebuild index 3e50586518d3..81005f321137 100644 --- a/sci-chemistry/aqua/aqua-3.2-r1.ebuild +++ b/sci-chemistry/aqua/aqua-3.2-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/aqua/aqua-3.2-r1.ebuild,v 1.2 2010/07/19 06:33:52 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/aqua/aqua-3.2-r2.ebuild,v 1.1 2010/11/16 17:12:12 jlec Exp $ EAPI="3" @@ -33,7 +33,11 @@ pkg_nofetch() { } src_prepare() { - sed 's:nwak:gawk:g' -i scripts/* || die + sed \ + -e 's:nawk:gawk:g' \ + -e "s:/bin/gawk:${EPREFIX}/usr/bin/gawk:g" \ + -e "s:/usr/local/bin/perl:${EPREFIX}/usr/bin/perl:g" \ + -i $(find . -type f) || die epatch "${FILESDIR}"/${PV}-flags.patch } |