blob: d75bf3f05e9030f54282e4c05cfc1cafd7a2f575 (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit cmake-utils flag-o-matic fortran-2 toolchain-funcs
DESCRIPTION="A three-dimensional finite element mesh generator"
HOMEPAGE="http://www.geuz.org/gmsh/"
SRC_URI="http://www.geuz.org/gmsh/src/${P}-source.tgz"
## gmsh comes with its own copies of (at least) metis, netgen and tetgen, therefore inform the user of their special licenses
LICENSE="GPL-3 free-noncomm"
SLOT="0"
KEYWORDS="~amd64 ~x86"
## cgns is not compiling ATM, maybe fix cgns lib first
IUSE="blas cgns chaco doc examples jpeg lua med metis mpi netgen opencascade petsc png python taucs tetgen X zlib"
RDEPEND="
virtual/fortran
X? ( x11-libs/fltk:1 )
blas? ( virtual/blas virtual/lapack sci-libs/fftw:3.0 )
cgns? ( sci-libs/cgnslib )
jpeg? ( virtual/jpeg:0 )
lua? ( dev-lang/lua:0 )
med? ( sci-libs/med )
opencascade? ( sci-libs/opencascade:* )
png? ( media-libs/libpng:0 )
petsc? ( sci-mathematics/petsc )
zlib? ( sys-libs/zlib )
mpi? ( virtual/mpi[cxx] )
taucs? ( sci-libs/taucs )"
REQUIRED_USE="
taucs? ( || ( metis ) )
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( virtual/latex-base )
python? ( dev-lang/swig:0 )
"
S=${WORKDIR}/${P}-source
pkg_setup() {
fortran-2_pkg_setup
}
src_configure() {
local mycmakeargs=( )
use blas && \
mycmakeargs+=(-DCMAKE_Fortran_COMPILER=$(tc-getF77))
mycmakeargs+=(
-DENABLE_BLAS_LAPACK="$(usex blas)"
-DENABLE_CGNS="$(usex cgns)"
-DENABLE_CHACO="$(usex chaco)"
-DENABLE_FLTK="$(usex X)"
-DENABLE_GRAPHICS="$(usex X)"
-DENABLE_MED="$(usex med)"
-DENABLE_METIS="$(usex metis)"
-DENABLE_NETGEN="$(usex netgen)"
-DENABLE_TAUCS="$(usex taucs)"
-DENABLE_TETGEN="$(usex tetgen)"
-DENABLE_OCC="$(usex opencascade)"
-DENABLE_PETSC="$(usex petsc)"
-DENABLE_WRAP_PYTHON="$(usex python)")
cmake-utils_src_configure mycmakeargs
}
src_compile() {
cmake-utils_src_compile
if use doc ; then
cd "${BUILD_DIR}" || die
emake pdf
cd "${S}" || die
dodoc doc/texinfo/gmsh.pdf
fi
}
src_install() {
cmake-utils_src_install
if use examples ; then
insinto /usr/share/doc/${PF}
doins -r demos tutorial
fi
}
|