Gentoo Archives: gentoo-commits

From: "Alexey Shvetsov (alexxy)" <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/gamess: ChangeLog gamess-20090112.3-r1.ebuild
Date: Mon, 30 Nov 2009 15:13:50
Message-Id: E1NF7wg-0001qM-Hp@stork.gentoo.org
1 alexxy 09/11/30 15:13:46
2
3 Modified: ChangeLog gamess-20090112.3-r1.ebuild
4 Log:
5 [sci-chemistry/gamess] Fix typo and add note about mpi
6 (Portage version: 2.2_rc54/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.39 sci-chemistry/gamess/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/ChangeLog?rev=1.39&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/ChangeLog?rev=1.39&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/ChangeLog?r1=1.38&r2=1.39
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/ChangeLog,v
18 retrieving revision 1.38
19 retrieving revision 1.39
20 diff -u -r1.38 -r1.39
21 --- ChangeLog 30 Nov 2009 14:53:59 -0000 1.38
22 +++ ChangeLog 30 Nov 2009 15:13:46 -0000 1.39
23 @@ -1,6 +1,10 @@
24 # ChangeLog for sci-chemistry/gamess
25 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/ChangeLog,v 1.38 2009/11/30 14:53:59 alexxy Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/ChangeLog,v 1.39 2009/11/30 15:13:46 alexxy Exp $
28 +
29 + 30 Nov 2009; Alexey Shvetsov <alexxy@g.o>
30 + gamess-20090112.3-r1.ebuild:
31 + Fix typo
32
33 *gamess-20090112.3-r1 (30 Nov 2009)
34
35
36
37
38 1.2 sci-chemistry/gamess/gamess-20090112.3-r1.ebuild
39
40 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild?rev=1.2&view=markup
41 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild?rev=1.2&content-type=text/plain
42 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild?r1=1.1&r2=1.2
43
44 Index: gamess-20090112.3-r1.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild,v
47 retrieving revision 1.1
48 retrieving revision 1.2
49 diff -u -r1.1 -r1.2
50 --- gamess-20090112.3-r1.ebuild 30 Nov 2009 14:53:59 -0000 1.1
51 +++ gamess-20090112.3-r1.ebuild 30 Nov 2009 15:13:46 -0000 1.2
52 @@ -1,6 +1,6 @@
53 # Copyright 1999-2009 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild,v 1.1 2009/11/30 14:53:59 alexxy Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gamess/gamess-20090112.3-r1.ebuild,v 1.2 2009/11/30 15:13:46 alexxy Exp $
57
58 EAPI="2"
59
60 @@ -60,12 +60,21 @@
61 then die "You will need gfortran to compile gamess on amd64"
62 fi
63
64 + # note about qmmm-tinker
65 if use qmmm-tinker; then
66 einfo "By default MM subsistem is restricted to 1000 atoms"
67 einfo "if you want larger MM subsystems then you should set"
68 einfo "QMMM_GAMESS_MAXMM variable to needed value in your make.conf"
69 ebeep 5
70 fi
71 +
72 + #note about mpi
73 + if use mpi; then
74 + ewarn ""
75 + ewarn "You should adjust rungms script for your mpi implentation"
76 + ewarn "because deafult one will not work"
77 + ewarn ""
78 + fi
79 }
80
81 src_unpack() {
82 @@ -208,7 +217,7 @@
83 # the executables
84 dobin ${PN}.00.x rungms \
85 || die "Failed installing binaries"
86 - if !use mpi; then
87 + if use !mpi; then
88 dobin ddi/ddikick.x \
89 || die "Failed installing binaries"
90 fi