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-physics/meep: ChangeLog meep-0.20.3.ebuild
Date: Tue, 02 Sep 2008 22:49:11
Message-Id: E1KaegO-00048U-VI@stork.gentoo.org
1 bicatali 08/09/02 22:49:08
2
3 Modified: ChangeLog
4 Added: meep-0.20.3.ebuild
5 Log:
6 Version bump
7 (Portage version: 2.2_rc8/cvs/Linux 2.6.23-gentoo-r9 x86_64)
8
9 Revision Changes Path
10 1.5 sci-physics/meep/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/meep/ChangeLog?rev=1.5&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/meep/ChangeLog?rev=1.5&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/meep/ChangeLog?r1=1.4&r2=1.5
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sci-physics/meep/ChangeLog,v
19 retrieving revision 1.4
20 retrieving revision 1.5
21 diff -u -r1.4 -r1.5
22 --- ChangeLog 3 Aug 2008 14:32:15 -0000 1.4
23 +++ ChangeLog 2 Sep 2008 22:49:08 -0000 1.5
24 @@ -1,6 +1,11 @@
25 # ChangeLog for sci-physics/meep
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/ChangeLog,v 1.4 2008/08/03 14:32:15 markusle Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/ChangeLog,v 1.5 2008/09/02 22:49:08 bicatali Exp $
29 +
30 +*meep-0.20.3 (02 Sep 2008)
31 +
32 + 02 Sep 2008; Sébastien Fabbro <bicatali@g.o> +meep-0.20.3.ebuild:
33 + Version bump
34
35 03 Aug 2008; Markus Dittrich <markusle@g.o> meep-0.10.1.ebuild:
36 Removed doc USE flag since generation of meep.pdf requires hdf5 and
37
38
39
40 1.1 sci-physics/meep/meep-0.20.3.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/meep/meep-0.20.3.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-physics/meep/meep-0.20.3.ebuild?rev=1.1&content-type=text/plain
44
45 Index: meep-0.20.3.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/sci-physics/meep/meep-0.20.3.ebuild,v 1.1 2008/09/02 22:49:08 bicatali Exp $
50
51 inherit eutils
52
53 DESCRIPTION="Simulation software to model electromagnetic systems"
54 HOMEPAGE="http://ab-initio.mit.edu/meep/"
55 SRC_URI="http://ab-initio.mit.edu/meep/${P}.tar.gz"
56
57 LICENSE="GPL-2"
58 SLOT="0"
59 KEYWORDS="~amd64 ~x86"
60 IUSE="bindist examples hdf5 guile mpi"
61
62 DEPEND="sci-libs/fftw
63 !bindist? ( sci-libs/gsl )
64 bindist? ( <sci-libs/gsl-1.10 )
65 sci-physics/harminv
66 virtual/lapack
67 guile? ( >=sci-libs/libctl-3.0 )
68 hdf5? ( sci-libs/hdf5 )
69 mpi? ( virtual/mpi )"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 epatch "${FILESDIR}"/${PN}-0.10.1-gcc4.3.patch
75 }
76
77 src_compile() {
78 econf \
79 --enable-shared \
80 $(use_with mpi) \
81 $(use_with hdf5) \
82 $(use_with guile libctl) \
83 || die "econf failed"
84 emake || die "emake failed"
85 }
86
87 src_install() {
88 emake install DESTDIR="${D}" || die "emake install failed"
89 dodoc AUTHORS NEWS README TODO || die "dodoc failed"
90 insinto /usr/share/doc/${PF}
91 if use examples; then
92 doins -r examples || die "install examples failed"
93 fi
94 }