Gentoo Archives: gentoo-commits

From: "Sebastien Fabbro (bicatali)" <bicatali@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-libs/netcdf: ChangeLog netcdf-3.6.2.ebuild
Date: Fri, 28 Sep 2007 11:34:07
Message-Id: E1IbDy1-0004cm-MT@stork.gentoo.org
1 bicatali 07/09/28 11:25:09
2
3 Modified: ChangeLog netcdf-3.6.2.ebuild
4 Log:
5 Fixes parallell make with -j2 (real this time), uses FFLAGS for fortran 90 and do not remove .la files.
6 (Portage version: 2.1.3.9)
7
8 Revision Changes Path
9 1.38 sci-libs/netcdf/ChangeLog
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.38&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.38&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.37&r2=1.38
14
15 Index: ChangeLog
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
18 retrieving revision 1.37
19 retrieving revision 1.38
20 diff -u -r1.37 -r1.38
21 --- ChangeLog 5 Aug 2007 12:07:03 -0000 1.37
22 +++ ChangeLog 28 Sep 2007 11:25:09 -0000 1.38
23 @@ -1,6 +1,11 @@
24 # ChangeLog for sci-libs/netcdf
25 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
26 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.37 2007/08/05 12:07:03 bicatali Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.38 2007/09/28 11:25:09 bicatali Exp $
28 +
29 + 28 Sep 2007; Sébastien Fabbro <bicatali@g.o>
30 + files/netcdf-3.6.2-parallel-make.patch, netcdf-3.6.2.ebuild:
31 + Fixes parallell make with -j2 (real this time), uses FFLAGS for fortran 90
32 + and do not remove .la files.
33
34 05 Aug 2007; Sébastien Fabbro <bicatali@g.o>
35 +files/netcdf-3.6.2-parallel-make.patch, -files/gcc3-gentoo.patch,
36
37
38
39 1.5 sci-libs/netcdf/netcdf-3.6.2.ebuild
40
41 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild?rev=1.5&view=markup
42 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild?rev=1.5&content-type=text/plain
43 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild?r1=1.4&r2=1.5
44
45 Index: netcdf-3.6.2.ebuild
46 ===================================================================
47 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild,v
48 retrieving revision 1.4
49 retrieving revision 1.5
50 diff -u -r1.4 -r1.5
51 --- netcdf-3.6.2.ebuild 5 Aug 2007 12:07:03 -0000 1.4
52 +++ netcdf-3.6.2.ebuild 28 Sep 2007 11:25:09 -0000 1.5
53 @@ -1,6 +1,6 @@
54 # Copyright 1999-2007 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild,v 1.4 2007/08/05 12:07:03 bicatali Exp $
57 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.2.ebuild,v 1.5 2007/09/28 11:25:09 bicatali Exp $
58
59 inherit fortran eutils toolchain-funcs flag-o-matic autotools
60
61 @@ -19,8 +19,8 @@
62
63 pkg_setup() {
64 if use fortran ; then
65 - FORTRAN="gfortran ifc g77 pgf77 pgf90"
66 - fortran_pkg_setup
67 + FORTRAN="gfortran ifc g77 pgf77 pgf90"
68 + fortran_pkg_setup
69 fi
70 }
71
72 @@ -35,7 +35,6 @@
73 use debug || append-cppflags -DNDEBUG
74 local myconf
75 if use fortran; then
76 - # cfortran CPPFLAGS are now automatically set by the configure script
77 case "${FORTRANC}" in
78 g77)
79 myconf="${myconf} --enable-f77 --disable-f90"
80 @@ -59,6 +58,8 @@
81 export F90FLAGS="-i4 ${F90FLAGS}"
82 ;;
83 esac
84 + # fortran 90 uses FCFLAGS
85 + export FCFLAGS="${FFLAGS:--O2}"
86 else
87 myconf="${myconf} --disable-f77 --disable-f90"
88 fi
89 @@ -73,7 +74,6 @@
90
91 src_install() {
92 emake DESTDIR="${D}" install || die "emake install failed"
93 - find "${D}usr/$(get_libdir)" -name \*.la -exec rm -f {} \;
94
95 dodoc README RELEASE_NOTES VERSION || die "dodoc failed"
96 # keep only pdf,txt and html docs, info were already installed
97
98
99
100 --
101 gentoo-commits@g.o mailing list