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/gerris: gerris-20120731.ebuild ChangeLog
Date: Thu, 02 Aug 2012 21:30:36
Message-Id: 20120802213017.5D91C2004B@flycatcher.gentoo.org
1 bicatali 12/08/02 21:30:17
2
3 Modified: ChangeLog
4 Added: gerris-20120731.ebuild
5 Log:
6 Version bump. Keyword amd64-linux x86-linux
7
8 (Portage version: 2.2.01.20796-prefix/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.16 sci-libs/gerris/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gerris/ChangeLog?rev=1.16&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gerris/ChangeLog?rev=1.16&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gerris/ChangeLog?r1=1.15&r2=1.16
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sci-libs/gerris/ChangeLog,v
20 retrieving revision 1.15
21 retrieving revision 1.16
22 diff -u -r1.15 -r1.16
23 --- ChangeLog 4 May 2012 08:22:51 -0000 1.15
24 +++ ChangeLog 2 Aug 2012 21:30:17 -0000 1.16
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sci-libs/gerris
27 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/gerris/ChangeLog,v 1.15 2012/05/04 08:22:51 jdhore Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/gerris/ChangeLog,v 1.16 2012/08/02 21:30:17 bicatali Exp $
30 +
31 +*gerris-20120731 (02 Aug 2012)
32 +
33 + 02 Aug 2012; Sébastien Fabbro <bicatali@g.o> +gerris-20120731.ebuild:
34 + Version bump. Keyword amd64-linux x86-linux
35
36 04 May 2012; Jeff Horelick <jdhore@g.o> gerris-20100519.ebuild,
37 gerris-20111123.ebuild:
38 @@ -77,4 +82,3 @@
39 +gerris-0.8.0.ebuild:
40 Initial import (fixes bug #102323). Many thanks to Tim Cera
41 <timcera@×××××××××.net> for his ebuild.
42 -
43
44
45
46 1.1 sci-libs/gerris/gerris-20120731.ebuild
47
48 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gerris/gerris-20120731.ebuild?rev=1.1&view=markup
49 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/gerris/gerris-20120731.ebuild?rev=1.1&content-type=text/plain
50
51 Index: gerris-20120731.ebuild
52 ===================================================================
53 # Copyright 1999-2012 Gentoo Foundation
54 # Distributed under the terms of the GNU General Public License v2
55 # $Header: /var/cvsroot/gentoo-x86/sci-libs/gerris/gerris-20120731.ebuild,v 1.1 2012/08/02 21:30:17 bicatali Exp $
56
57 EAPI=4
58
59 inherit autotools eutils flag-o-matic
60
61 MYP=${P/-20/-snapshot-}
62
63 DESCRIPTION="Gerris Flow Solver"
64 HOMEPAGE="http://gfs.sourceforge.net/"
65 SRC_URI="http://gerris.dalembert.upmc.fr/gerris/tarballs/${MYP}.tar.gz"
66
67 LICENSE="GPL-2"
68
69 SLOT="0"
70 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
71 IUSE="examples mpi static-libs"
72
73 # all these deps could be optional
74 # but the configure.in would have to be modified
75 # heavily for the automagic
76 RDEPEND="dev-libs/glib:2
77 dev-games/ode
78 sci-libs/netcdf
79 sci-libs/gsl
80 sci-libs/gts
81 sci-libs/hypre
82 sci-libs/lis
83 sci-libs/proj
84 >=sci-libs/fftw-3
85 virtual/lapack
86 mpi? ( virtual/mpi )"
87 DEPEND="${RDEPEND}
88 virtual/pkgconfig"
89
90 S="${WORKDIR}/${MYP}"
91
92 src_configure() {
93 append-cppflags "-I${EPREFIX}/usr/include/hypre"
94 econf \
95 $(use_enable mpi) \
96 $(use_enable static-libs static) \
97 LAPACK_LIBS="$(pkg-config --libs lapack)"
98 }
99
100 src_install() {
101 default
102 if use examples; then
103 insinto /usr/share/doc/${PF}/examples
104 rm -f doc/examples/*.pyc || die "Failed to remove python object"
105 doins -r doc/examples/*
106 fi
107 }