blob: fec4f89af748e37f72e1ce8dda02b87c8728d144 (
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit autotools eutils qt4-r2 subversion python-single-r1 versionator
ELMER_ROOT="elmerfem"
MY_PN=ElmerGUI
DESCRIPTION="Elmer is a collection of finite element programs, libraries, and visualization tools, New Elmer pre-processor"
HOMEPAGE="http://www.csc.fi/english/pages/elmer"
SRC_URI=""
ESVN_REPO_URI="https://elmerfem.svn.sourceforge.net/svnroot/elmerfem/trunk/${MY_PN}"
ESVN_PROJECT="${MY_PN}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE="debug +bundled_netgen matc opencascade python qwt vtk"
REQUIRED_USE="opencascade? ( vtk )"
DEPEND="
~sci-libs/elmer-eio-${PV}
!bundled_netgen? ( sci-mathematics/netgen )
virtual/glu
|| (
~sci-misc/elmer-post-${PV}
>=sci-libs/vtk-5.0.0[qt4,python?]
)
matc? ( ~sci-libs/matc-${PV} )
vtk? ( >=sci-libs/vtk-5.0.0[qt4,python?] )
opencascade? ( >=sci-libs/opencascade-6.3 )
python? ( dev-python/pythonqt )
qwt? ( x11-libs/qwt:5 )
>=dev-qt/qtcore-4.3:4
>=x11-libs/qt-opengl-4.3:4
>=x11-libs/qt-script-4.3:4"
RDEPEND="${DEPEND}"
src_prepare() {
# Do not build bundled matc and PythonQt
sed \
-e 's/matc//' \
-e 's/PythonQt//' \
-i ${MY_PN}.pro || die
# Ideally we would avoid buildling thirdparty code
# and use a separate package but this currently fails
# to build. ElmerGui provides its own patched version of
# NetGen. Currently considering backporting them to
# sci-mathematics/netgen
if use !bundled_netgen; then
sed -i 's/netgen//' ${MY_PN}.pro || die
sed \
-e "s:INCLUDEPATH += ../netgen/libsrc/interface:INCLUDEPATH += ${EPREFIX}/usr/include:g" \
-e "s:LIBPATH += ../netgen/ngcore:LIBPATH += ${EPREFIX}/usr/$(get_libdir):g" \
-e "s:LIBS += -lng:LIBS += -lnglib:g" \
-i Application/Application.pro || die
eerror "${PN} currently fails to build against sci-mathematics/netgen."
fi
# Fix install path
sed \
-e 's|unix: ELMER_HOME = /usr/local|unix: ELMER_HOME = /usr|g' \
-i ${MY_PN}.pri || die
if use amd64; then
sed -i 's/32/64/' ${MY_PN}.pri || die
fi
if use !qwt; then
# QWT is activated by default, disable
sed -i 's/DEFINES += EG_QWT//' ${MY_PN}.pri || die
else
# Detect x11-libs/qwt version and fix paths
local QWT_VER=`echo $(best_version "x11-libs/qwt") | sed 's:x11-libs/qwt-::'`
local QWT_MAJOR=$(get_major_version ${QWT_VER})
local QWT_MAJOR=5
if [[ ${QWT_MAJOR} -lt 6 ]]; then
local QWT_LIBS=-lqwt
else
local QWT_LIBS=-lqwt${QWT_MAJOR}
fi
local QWT_INCLUDEPATH=${EPREFIX}/usr/include/qwt${QWT_MAJOR}
local QWT_LIBPATH=${EPREFIX}/usr/$(get_libdir)
sed -i \
-e "s:QWT_INCLUDEPATH.*:QWT_INCLUDEPATH = ${QWT_INCLUDEPATH}:g" \
-e "s:QWT_LIBPATH.*:QWT_LIBPATH = ${QWT_LIBPATH}:g" \
-e "s:QWT_LIBS.*:QWT_LIBS = ${QWT_LIBS}:g" \
${MY_PN}.pri || die
fi
if use !vtk; then
# VTK is activated by default, disable
sed -i 's/DEFINES += EG_VTK//' ${MY_PN}.pri || die
else
# Fix paths
local VTK_VER=`echo ${VTK_DIR} | cut -d/ -f4`
sed -i \
-e "s:VTK_INCLUDEPATH.*:VTK_INCLUDEPATH = ${EPREFIX}/usr/include/${VTK_VER}:g" \
-e "s:VTK_LIBPATH.*:VTK_LIBPATH = ${VTK_DIR}:g" \
${MY_PN}.pri || die
fi
if use !matc; then
sed -i 's/DEFINES += EG_MATC//' ${MY_PN}.pri || die
else
sed -i "s:LIBPATH += ../matc/lib:LIBPATH += ${EPREFIX}/usr/$(get_libdir):g" Application/Application.pro || die
fi
if use !opencascade; then
# Opencascade is activated by default, disable
sed -i 's/DEFINES += EG_OCC//' ${MY_PN}.pri || die
else
# Fix paths, depend on portage version of opencascade
sed -i \
-e "s:OCC_INCLUDEPATH.*:OCC_INCLUDEPATH = ${CASROOT}/inc:g" \
-e "s:OCC_LIBPATH.*:OCC_LIBPATH = ${CASROOT}/$(get_libdir):g" \
${MY_PN}.pri || die
fi
if use python; then
# Fix paths
sed -i \
-e 's/DEFINES -= EG_PYTHON/DEFINES += EG_PYTHON/g' \
-e "s:PY_INCLUDEPATH.*:PY_INCLUDEPATH = $(python_get_includedir):g" \
-e "s:PY_LIBPATH.*:PY_LIBPATH = $(python_get_libdir):g" \
-e "s:PY_LIBS.*:PY_LIBS = $(python_get_library -l):g" \
${MY_PN}.pri || die
# Fix paths and invert Python(Qt) linking order to work with --Wl,--as-needed
sed -i \
-e "s:INCLUDEPATH += $${PY_INCLUDEPATH} ../PythonQt/src:${EPREFIX}/usr/include/PythonQt:g" \
-e "s:LIBPATH += $${PY_LIBPATH} ../PythonQt/lib:${EPREFIX}/usr/$(get_libdir):g" \
-e "s:LIBS += $${PY_LIBS} -lPythonQt:LIBS += -lPythonQt $${PY_LIBS}:" \
Application/Application.pro || die
fi
}
src_configure() {
eqmake4 "${S}" ./${MY_PN}.pro
}
|