Gentoo Archives: gentoo-commits

From: "Donnie Berkholz (dberkholz)" <dberkholz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-chemistry/namd: ChangeLog namd-2.7.ebuild
Date: Fri, 23 Apr 2010 19:38:42
Message-Id: 20100423193839.9A6D92C04B@corvid.gentoo.org
1 dberkholz 10/04/23 19:38:39
2
3 Modified: ChangeLog namd-2.7.ebuild
4 Log:
5 All tc-get* sed replacements must happen before C*FLAGS-related ones, otherwise we can replace things like -frecord-gcc-switches with -frecord-x86_64-pc-linux-gnu-gcc-switches.
6 (Portage version: 2.1.8.3/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.10 sci-chemistry/namd/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/ChangeLog?rev=1.10&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/ChangeLog?rev=1.10&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/ChangeLog?r1=1.9&r2=1.10
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/namd/ChangeLog,v
18 retrieving revision 1.9
19 retrieving revision 1.10
20 diff -u -r1.9 -r1.10
21 --- ChangeLog 23 Sep 2009 19:55:56 -0000 1.9
22 +++ ChangeLog 23 Apr 2010 19:38:39 -0000 1.10
23 @@ -1,6 +1,11 @@
24 # ChangeLog for sci-chemistry/namd
25 -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/namd/ChangeLog,v 1.9 2009/09/23 19:55:56 patrick Exp $
27 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/namd/ChangeLog,v 1.10 2010/04/23 19:38:39 dberkholz Exp $
29 +
30 + 23 Apr 2010; Donnie Berkholz <dberkholz@g.o>; namd-2.7.ebuild:
31 + All tc-get* sed replacements must happen before C*FLAGS-related ones,
32 + otherwise we can replace things like -frecord-gcc-switches with
33 + -frecord-x86_64-pc-linux-gnu-gcc-switches.
34
35 23 Sep 2009; Patrick Lauer <patrick@g.o> namd-2.6.ebuild,
36 namd-2.7.ebuild:
37
38
39
40 1.3 sci-chemistry/namd/namd-2.7.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild?rev=1.3&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild?rev=1.3&content-type=text/plain
44 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild?r1=1.2&r2=1.3
45
46 Index: namd-2.7.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild,v
49 retrieving revision 1.2
50 retrieving revision 1.3
51 diff -u -r1.2 -r1.3
52 --- namd-2.7.ebuild 23 Sep 2009 19:55:56 -0000 1.2
53 +++ namd-2.7.ebuild 23 Apr 2010 19:38:39 -0000 1.3
54 @@ -1,6 +1,6 @@
55 -# Copyright 1999-2009 Gentoo Foundation
56 +# Copyright 1999-2010 Gentoo Foundation
57 # Distributed under the terms of the GNU General Public License v2
58 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild,v 1.2 2009/09/23 19:55:56 patrick Exp $
59 +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/namd/namd-2.7.ebuild,v 1.3 2010/04/23 19:38:39 dberkholz Exp $
60
61 inherit eutils toolchain-funcs flag-o-matic
62
63 @@ -52,8 +52,8 @@
64 cd "${S}"
65 # proper compiler and cflags
66 sed -e "s/g++/$(tc-getCXX)/" \
67 - -e "s/CXXOPTS = -O3 -m64 -fexpensive-optimizations -ffast-math/CXXOPTS = ${CXXFLAGS}/" \
68 -e "s/gcc/$(tc-getCC)/" \
69 + -e "s/CXXOPTS = -O3 -m64 -fexpensive-optimizations -ffast-math/CXXOPTS = ${CXXFLAGS}/" \
70 -e "s/COPTS = -O3 -m64 -fexpensive-optimizations -ffast-math/COPTS = ${CFLAGS}/" \
71 -i arch/${NAMD_ARCH}.arch || \
72 die "Failed to setup ${NAMD_ARCH}.arch"