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.3.ebuild
Date: Wed, 01 Dec 2010 16:56:11
Message-Id: 20101201165559.9C9F620054@flycatcher.gentoo.org
1 bicatali 10/12/01 16:55:59
2
3 Modified: ChangeLog netcdf-3.6.3.ebuild
4 Log:
5 Remove use of fortran eclass
6
7 (Portage version: 2.1.9.25/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.75 sci-libs/netcdf/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.75&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?rev=1.75&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/ChangeLog?r1=1.74&r2=1.75
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v
19 retrieving revision 1.74
20 retrieving revision 1.75
21 diff -u -r1.74 -r1.75
22 --- ChangeLog 22 Oct 2010 10:31:42 -0000 1.74
23 +++ ChangeLog 1 Dec 2010 16:55:59 -0000 1.75
24 @@ -1,6 +1,9 @@
25 # ChangeLog for sci-libs/netcdf
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.74 2010/10/22 10:31:42 grobian Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/ChangeLog,v 1.75 2010/12/01 16:55:59 bicatali Exp $
29 +
30 + 01 Dec 2010; Sébastien Fabbro <bicatali@g.o> netcdf-3.6.3.ebuild:
31 + Remove use of fortran eclass
32
33 22 Oct 2010; Fabian Groffen <grobian@g.o> netcdf-4.1.1.ebuild:
34 Marked ~ppc-macos
35
36
37
38 1.15 sci-libs/netcdf/netcdf-3.6.3.ebuild
39
40 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.15&view=markup
41 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?rev=1.15&content-type=text/plain
42 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild?r1=1.14&r2=1.15
43
44 Index: netcdf-3.6.3.ebuild
45 ===================================================================
46 RCS file: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v
47 retrieving revision 1.14
48 retrieving revision 1.15
49 diff -u -r1.14 -r1.15
50 --- netcdf-3.6.3.ebuild 22 Jun 2010 14:30:06 -0000 1.14
51 +++ netcdf-3.6.3.ebuild 1 Dec 2010 16:55:59 -0000 1.15
52 @@ -1,10 +1,10 @@
53 # Copyright 1999-2010 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v 1.14 2010/06/22 14:30:06 jlec Exp $
56 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/netcdf/netcdf-3.6.3.ebuild,v 1.15 2010/12/01 16:55:59 bicatali Exp $
57
58 EAPI=2
59
60 -inherit fortran eutils toolchain-funcs flag-o-matic autotools
61 +inherit eutils toolchain-funcs flag-o-matic autotools
62
63 DESCRIPTION="Scientific library and interface for array oriented data access"
64 SRC_URI="ftp://ftp.unidata.ucar.edu/pub/netcdf/${P}.tar.gz"
65 @@ -20,13 +20,6 @@
66 >=sys-devel/libtool-2.2
67 doc? ( virtual/latex-base )"
68
69 -pkg_setup() {
70 - if use fortran ; then
71 - FORTRAN="gfortran ifc g77 pgf77 pgf90"
72 - fortran_pkg_setup
73 - fi
74 -}
75 -
76 src_prepare() {
77 epatch "${FILESDIR}"/${P}-as-needed.patch
78 epatch "${FILESDIR}"/${P}-parallel.patch
79 @@ -37,8 +30,8 @@
80 use debug || append-cppflags -DNDEBUG
81 local myconf
82 if use fortran; then
83 - case "${FORTRANC}" in
84 - g77)
85 + case "$(tc-getFC)" in
86 + *g77)
87 myconf="${myconf} --enable-f77 --disable-f90"
88 myconf="${myconf} F77=g77"
89 ;;