blob: 6cc3d14953903838ea55ae4f99a42cb6658de759 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools
DESCRIPTION="Simulation software to model electromagnetic systems"
HOMEPAGE="http://ab-initio.mit.edu/meep/"
SRC_URI="http://ab-initio.mit.edu/meep/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="examples hdf5 guile mpi"
RDEPEND="
sci-libs/fftw:3.0=
sci-libs/gsl:=
sci-physics/harminv
guile? ( >=sci-libs/libctl-3.2 )
hdf5? ( sci-libs/hdf5:= )
mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
PATCHES=(
"${FILESDIR}"/${PN}-1.2-pc-no-ldflags.patch
"${FILESDIR}"/${PN}-1.2-no-auto-mpb.patch
)
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
$(use_with mpi) \
$(use_with hdf5) \
$(use_with guile libctl)
}
src_test() {
# pml test buggy with optimization on
# http://thread.gmane.org/gmane.comp.science.electromagnetism.meep.general/4579
emake -C tests pml CXXFLAGS="-O0"
emake check
}
src_install() {
default
if use examples; then
dodoc -r examples
docompress -x /usr/share/doc/${PF}/examples
fi
}
|