diff options
author | Justin Lecher <jlec@gentoo.org> | 2010-06-15 12:48:48 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2010-06-15 12:48:48 +0000 |
commit | feca79a60aeee26d8dd04b41c079c4514a552626 (patch) | |
tree | f0b46d4d97b898c3f7def49b9e2c7845fa1b0865 /sci-chemistry/pdb2pqr | |
parent | Delete deprecation warnings. (diff) | |
download | gentoo-2-feca79a60aeee26d8dd04b41c079c4514a552626.tar.gz gentoo-2-feca79a60aeee26d8dd04b41c079c4514a552626.tar.bz2 gentoo-2-feca79a60aeee26d8dd04b41c079c4514a552626.zip |
Fixed typo ${PYTHON} -> $(PYTHON), thanks Arfrever for spotting this
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/pdb2pqr')
-rw-r--r-- | sci-chemistry/pdb2pqr/ChangeLog | 8 | ||||
-rw-r--r-- | sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r2.ebuild (renamed from sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r1.ebuild) | 4 |
2 files changed, 9 insertions, 3 deletions
diff --git a/sci-chemistry/pdb2pqr/ChangeLog b/sci-chemistry/pdb2pqr/ChangeLog index 2136d23057e3..a815ecfddd06 100644 --- a/sci-chemistry/pdb2pqr/ChangeLog +++ b/sci-chemistry/pdb2pqr/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-chemistry/pdb2pqr # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog,v 1.23 2010/06/15 12:46:05 arfrever Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/ChangeLog,v 1.24 2010/06/15 12:48:48 jlec Exp $ + +*pdb2pqr-1.5.0-r2 (15 Jun 2010) + + 15 Jun 2010; Justin Lecher <jlec@gentoo.org> -pdb2pqr-1.5.0-r1.ebuild, + +pdb2pqr-1.5.0-r2.ebuild: + Fixed typo ${PYTHON} -> $(PYTHON), thanks Arfrever for spotting this 15 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org> pdb2pqr-1.3.0.ebuild, pdb2pqr-1.4.0-r1.ebuild, pdb2pqr-1.5.0.ebuild: diff --git a/sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r1.ebuild b/sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r2.ebuild index e388e7f6bc02..60edc06e8b7b 100644 --- a/sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r1.ebuild +++ b/sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-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/pdb2pqr/pdb2pqr-1.5.0-r1.ebuild,v 1.3 2010/05/28 20:17:08 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/pdb2pqr/pdb2pqr-1.5.0-r2.ebuild,v 1.1 2010/06/15 12:48:48 jlec Exp $ EAPI="3" @@ -80,7 +80,7 @@ src_install() { # generate pdb2pqr wrapper cat >> "${T}"/${PN}-$(python_get_version) <<-EOF #!/bin/sh - ${PYTHON} ${EPREFIX}/${INPATH}/${PN}.py \$* + $(PYTHON) ${EPREFIX}/${INPATH}/${PN}.py \$* EOF dobin "${T}"/${PN}-$(python_get_version) || die "Failed to install pdb2pqr wrapper." |