blob: ba1cb547fdef3b5a42620110ef972e1ed3be3499 (
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/openfoam-2.1.1-r1.ebuild,v 1.2 2013/02/10 08:52:31 pacho Exp $
EAPI="2"
inherit eutils versionator multilib toolchain-funcs
MY_PN="OpenFOAM"
MY_PV=$(get_version_component_range 1-2)
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Open Field Operation and Manipulation - CFD Simulation Toolbox"
HOMEPAGE="http://www.openfoam.org"
SRC_URI="http://downloads.sourceforge.net/project/foam/foam/${PV}/${MY_P}.tgz"
LICENSE="GPL-2"
SLOT="2.1"
KEYWORDS="~amd64 ~x86"
IUSE="doc examples"
DEPEND="!=sci-libs/openfoam-bin-${MY_PV}*
!=sci-libs/openfoam-kernel-${MY_PV}*
!=sci-libs/openfoam-meta-${MY_PV}*
!=sci-libs/openfoam-solvers-${MY_PV}*
!=sci-libs/openfoam-utilities-${MY_PV}*
!=sci-libs/openfoam-wmake-${MY_PV}*
sci-libs/parmetis
sci-libs/parmgridgen
sci-libs/scotch
sci-visualization/opendx
virtual/mpi"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
INSDIR="/usr/$(get_libdir)/${MY_PN}/${MY_P}"
pkg_setup() {
# just to be sure the right profile is selected (gcc-config)
if ! version_is_at_least 4.3 $(gcc-version) ; then
die "${PN} requires >=sys-devel/gcc-4.3 to compile."
fi
elog
elog "In order to use ${MY_PN} you should add the following line to ~/.bashrc :"
elog
elog "alias startOF$(delete_all_version_separators ${MY_PV})='source ${INSDIR}/etc/bashrc'"
elog
elog "And everytime you want to use OpenFOAM you have to execute startOF$(delete_all_version_separators ${MY_PV})"
ewarn
ewarn "FoamX is deprecated since ${MY_PN}-1.5! "
ewarn
}
src_configure() {
if has_version sys-cluster/mpich2 ; then
export WM_MPLIB=MPICH
elif has_version sys-cluster/openmpi ; then
export WM_MPLIB=OPENMPI
else
die "You need one of the following mpi implementations: openmpi or mpich2"
fi
sed -i -e "s|WM_MPLIB:=OPENMPI|WM_MPLIB:="${WM_MPLIB}"|" etc/bashrc
sed -i -e "s|setenv WM_MPLIB OPENMPI|setenv WM_MPLIB "${WM_MPLIB}"|" etc/cshrc
}
src_compile() {
WM_NCOMPPROCS=`echo $MAKEOPTS | sed 's/-j\([0-9][0-9]*\)/\1/'`
if [ -n "$WM_NCOMPPROCS" ] ; then
export WM_NCOMPPROCS
else
export WM_NCOMPPROCS=1
fi
elog "Building on $WM_NCOMPPROCS cores"
export FOAM_INST_DIR=${WORKDIR}
source etc/bashrc
find wmake -name dirToString | xargs rm -rf
find wmake -name wmkdep | xargs rm -rf
./Allwmake || die "could not build"
}
src_test() {
cd bin
./foamInstallationTest
}
src_install() {
insinto ${INSDIR}
doins -r etc
use examples && doins -r tutorials
# not sure if this is useful
#doins -r src
insinto ${INSDIR}/lib
doins -r lib/*
insopts -m0755
doins -r bin applications platforms wmake
dodoc README.html doc/Guides-a4/*.pdf
if use doc ; then
dohtml -r doc/Doxygen
fi
}
|