diff options
author | Alexey Shvetsov <alexxy@gentoo.org> | 2011-10-06 10:44:52 +0000 |
---|---|---|
committer | Alexey Shvetsov <alexxy@gentoo.org> | 2011-10-06 10:44:52 +0000 |
commit | e113699a1ad9f5556c24692bff16644c14886175 (patch) | |
tree | 4054ab349f15ab711c5ca8e25c2b7d4e18800bc7 /sci-chemistry/gamess | |
parent | Bump for #385137 (diff) | |
download | gentoo-2-e113699a1ad9f5556c24692bff16644c14886175.tar.gz gentoo-2-e113699a1ad9f5556c24692bff16644c14886175.tar.bz2 gentoo-2-e113699a1ad9f5556c24692bff16644c14886175.zip |
[sci-chemistry/gamess] Fix bug #379973. Thanks to Florian D.
(Portage version: 2.2.0_alpha61/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/gamess')
-rw-r--r-- | sci-chemistry/gamess/ChangeLog | 8 | ||||
-rw-r--r-- | sci-chemistry/gamess/files/gamess-checktst.patch | 13 | ||||
-rw-r--r-- | sci-chemistry/gamess/gamess-20101001.3-r1.ebuild (renamed from sci-chemistry/gamess/gamess-20101001.3.ebuild) | 7 |
3 files changed, 24 insertions, 4 deletions
diff --git a/sci-chemistry/gamess/ChangeLog b/sci-chemistry/gamess/ChangeLog index 57429a83c58c..3eb12cdcf6f4 100644 --- a/sci-chemistry/gamess/ChangeLog +++ b/sci-chemistry/gamess/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sci-chemistry/gamess # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/ChangeLog,v 1.53 2011/07/20 16:55:51 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/ChangeLog,v 1.54 2011/10/06 10:44:51 alexxy Exp $ + +*gamess-20101001.3-r1 (06 Oct 2011) + + 06 Oct 2011; Alexey Shvetsov <alexxy@gentoo.org> -gamess-20101001.3.ebuild, + +gamess-20101001.3-r1.ebuild, +files/gamess-checktst.patch: + Fix bug #379973. Thanks to Florian D. 20 Jul 2011; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, bug #105599 diff --git a/sci-chemistry/gamess/files/gamess-checktst.patch b/sci-chemistry/gamess/files/gamess-checktst.patch new file mode 100644 index 000000000000..ee986d09d2ea --- /dev/null +++ b/sci-chemistry/gamess/files/gamess-checktst.patch @@ -0,0 +1,13 @@ +--- /usr/share/gamess/tests/checktst 2011-08-19 18:08:16.000000000 +0200 ++++ ./checktst 2011-08-20 00:45:59.613091738 +0200 +@@ -61,8 +61,8 @@ + setenv tolW 0.1 + setenv tolX 0.00001 + +-set script=$GMSPATH/tools/checktst/exam +-setenv chkabs $GMSPATH/tools/checktst/chkabs ++set script=./exam ++setenv chkabs ./chkabs + + # If we don't see the message about GAMESS exiting normally, + # then there is surely a mistake, and we want to focus the diff --git a/sci-chemistry/gamess/gamess-20101001.3.ebuild b/sci-chemistry/gamess/gamess-20101001.3-r1.ebuild index 43b44bbe32fa..41a33c83cb68 100644 --- a/sci-chemistry/gamess/gamess-20101001.3.ebuild +++ b/sci-chemistry/gamess/gamess-20101001.3-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/gamess-20101001.3.ebuild,v 1.3 2011/06/21 16:03:51 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/gamess-20101001.3-r1.ebuild,v 1.1 2011/10/06 10:44:51 alexxy Exp $ -EAPI="3" +EAPI="4" inherit eutils fortran-2 toolchain-funcs flag-o-matic @@ -106,7 +106,8 @@ src_unpack() { src_prepare() { # apply LINUX-arch patches to gamess makesfiles - epatch "${FILESDIR}"/${P}.gentoo.patch + epatch "${FILESDIR}/${P}.gentoo.patch" + epatch "${FILESDIR}/${P}-checktst.patch" # select arch # NOTE: please leave lked alone; it should be good as is!! cd "${S}" |