blob: 7bd21db3ca93a3c40f756c3e99b338bc910cf6ce (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
PYTHON_DEPEND="2:2.4"
inherit distutils eutils
DESCRIPTION="SALOME : The Open Source Integration Platform for Numerical Simulation. GEOM component"
HOMEPAGE="http://www.salome-platform.org"
SRC_URI="http://www.stasyan.com/devel/distfiles/src${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="debug doc mpi opengl"
RDEPEND="opengl? ( virtual/opengl )
mpi? ( || ( sys-cluster/openmpi[cxx]
sys-cluster/mpich2[cxx] ) )
debug? ( dev-util/cppunit )
>=sci-misc/salome-kernel-${PV}
>=sci-misc/salome-gui-${PV}
>=dev-python/omniorbpy-3.4
>=net-misc/omniORB-4.1.4
>=x11-libs/qt-core-4.5.2
>=x11-libs/qt-gui-4.5.2
>=x11-libs/qt-opengl-4.5.2
>=sci-libs/opencascade-6.3
>=dev-libs/boost-1.40.0
>=sci-libs/vtk-5.0[python]
>=sci-libs/hdf5-1.6.4"
DEPEND="${RDEPEND}
>=app-doc/doxygen-1.5.6
media-gfx/graphviz
>=dev-python/docutils-0.4
dev-lang/swig"
MODULE_NAME="GEOM"
MY_S="${WORKDIR}/src${PV}/${MODULE_NAME}_SRC_${PV}"
INSTALL_DIR="/opt/salome-${PV}/${MODULE_NAME}"
GEOM_ROOT_DIR="/opt/salome-${PV}/${MODULE_NAME}"
PYVER=$(python_get_version)
pkg_setup() {
[[ ${PYVER} > 2.4 ]] && \
ewarn "Python 2.4 is highly recommended for Salome..."
}
src_prepare() {
epatch "${FILESDIR}"/${P}-qt4-path.patch
cd "${MY_S}"
rm -r -f autom4te.cache
./clean_configure
./build_configure
}
src_configure() {
local vtk_suffix=""
has_version ">=sci-libs/vtk-5.0" && vtk_suffix="-5.0"
has_version ">=sci-libs/vtk-5.2" && vtk_suffix="-5.2"
has_version ">=sci-libs/vtk-5.4" && vtk_suffix="-5.4"
cd "${MY_S}"
econf --prefix=${INSTALL_DIR} \
--datadir=${INSTALL_DIR}/share/salome \
--docdir=${INSTALL_DIR}/doc/salome \
--infodir=${INSTALL_DIR}/share/info \
--libdir=${INSTALL_DIR}/$(get_libdir)/salome \
--with-python-site=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \
--with-python-site-exec=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome \
--with-vtk=${VTKHOME} \
--with-vtk-version=${vtk_suffix} \
--with-qt='/usr' \
$(use_enable debug ) \
$(use_enable debug debug ) \
$(use_enable !debug production ) \
$(use_with opengl opengl /usr) \
|| die "econf failed"
}
src_compile() {
cd "${MY_S}"
MAKEOPTS="-j1" emake || die "emake failed"
}
src_install() {
cd "${MY_S}"
emake DESTDIR="${D}" install || die "emake install failed"
use amd64 && dosym ${INSTALL_DIR}/lib64 ${INSTALL_DIR}/lib
echo "${MODULE_NAME}_ROOT_DIR=${INSTALL_DIR}" > ./90${P}
echo "LDPATH=${INSTALL_DIR}/$(get_libdir)/salome" >> ./90${P}
echo "PATH=${INSTALL_DIR}/bin/salome" >> ./90${P}
echo "PYTHONPATH=${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages/salome" >> ./90${P}
doenvd 90${P}
rm adm_local/Makefile
insinto "${INSTALL_DIR}"
doins -r adm_local
use doc && dodoc INSTALL
}
pkg_postinst() {
elog "Run \`env-update && source /etc/profile\`"
elog "now to set up the correct paths."
elog ""
}
|