From b0b980b800933abdd69f64dcbff3596f44f26207 Mon Sep 17 00:00:00 2001 From: danieltourde Date: Wed, 21 May 2008 21:44:16 +0000 Subject: Initial update. There is still some work to do but it starts to get shape! ;) See bug #155974 git-svn-id: http://overlays.gentoo.org/svn/proj/science/overlay@1089 32389bae-6d03-0410-99cf-db05cde120eb --- sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild | 151 ++++++++++++++++++++++++ 1 file changed, 151 insertions(+) create mode 100644 sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild (limited to 'sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild') diff --git a/sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild b/sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild new file mode 100644 index 000000000..4edc88f5b --- /dev/null +++ b/sci-misc/salome-smesh/salome-smesh-3.2.6.ebuild @@ -0,0 +1,151 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + + +inherit autotools distutils eutils flag-o-matic toolchain-funcs versionator python multilib + +DESCRIPTION="SALOME : The Open Source Integration Platform for Numerical Simulation. SMESH Component" +HOMEPAGE="http://www.salome-platform.org" +SRC_URI="salome-3.2.6.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="doc opengl mpi debug" +RESTRICT="fetch" + +RDEPEND="opengl? ( virtual/opengl ) + mpi? ( sys-cluster/mpich2 ) + debug? ( dev-util/cppunit )" + +DEPEND="${RDEPEND} + >=sci-misc/salome-kernel-3.2.6 + >=sci-misc/salome-med-3.2.6 + >=sci-misc/salome-geom-3.2.6 + <=dev-python/omniorbpy-2.6 + <=net-misc/omniORB-4.1" + +# Note that Corba is apparently not optional in this module + +MODULE_NAME="SMESH" +MY_S="${WORKDIR}/src${PV}/${MODULE_NAME}_SRC_${PV}" +INSTALL_DIR="/opt/salome-${PV}/${MODULE_NAME}" +SMESH_ROOT_DIR="/opt/salome-${PV}/${MODULE_NAME}" +export OPENPBS="/usr" + + +pkg_nofetch() +{ + einfo "You have to download manually the source code. You can download it from :" + einfo " http://www.salome-platform.org/download/dl326" + einfo "" + einfo "Put the archive in the \"/usr/portage/distfile\" directory and rename it \"salome-3.2.6.tar.gz\"" +} + + +src_unpack() +{ + python_version + distutils_python_version + ewarn "Python 2.4 is highly recommended for Salome..." + + if ! built_with_use sci-libs/vtk python ; then + die "You must rebuild sci-libs/vtk with python USE flag" + fi + + unpack ${A} + cd "${MY_S}" + epatch "${FILESDIR}"/${P}.patch + epatch "${FILESDIR}"/${P}_makefiles.patch +} + + +src_compile() +{ + local myconf="" + cd "${MY_S}" + rm -r -f autom4te.cache + ./build_configure + + # If vtk-5.O is used, include directory is named vtk-5.0 and not vtk + if has_version ">=sci-libs/vtk-5.0" ; then + einfo "vtk version 5 detected" + append-flags -I/usr/include/vtk-5.0 + else + einfo "vtk version 4 or prior detected" + fi + + # CXXFLAGS are slightly modified to allow the compilation of + # salome-visu with OpenCascade and gcc-4.1.x + if version_is_at_least "4.1" $(gcc-version) ; then + append-flags -ffriend-injection -fpermissive + fi + + # Compiler and linker flags + if use amd64 ; then + append-flags -m64 + fi + + # Specifying --without- for mpi / mpich + # has the same effect as turning it on + # so we just ommit it if it's not required to turn it off + if use mpi ; then + myconf="${myconf} --with-mpi --with-mpich" + fi + + # Configuration + 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 \ + ${myconf} \ + $(use_enable debug ) \ + $(use_enable !debug production ) \ + $(use_with debug cppunit /usr ) \ + $(use_with opengl opengl /usr) \ + || die "configuration failed" + + # Compilation + MAKEOPTS="-j1" emake || die "Compilation failed" +} + + +src_install() +{ + cd "${MY_S}" + + # Installation + emake prefix="${D}/${INSTALL_DIR}" \ + docdir="${D}/${INSTALL_DIR}/doc/salome" \ + infodir="${D}/${INSTALL_DIR}/share/info" \ + datadir="${D}/${INSTALL_DIR}/share/salome" \ + libdir="${D}/${INSTALL_DIR}/$(get_libdir)/salome" \ + pythondir="${D}/${INSTALL_DIR}/$(get_libdir)/python${PYVER}/site-packages" install \ + || die "emake install failed" + + if use amd64 ; then + dosym ${INSTALL_DIR}/lib64 ${INSTALL_DIR}/lib + fi + + 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 adm_local/unix/make_commence adm_local/unix/make_conclude adm_local/unix/make_omniorb + insinto "${INSTALL_DIR}" + doins -r adm_local + if use doc ; then + dodoc INSTALL LICENCE + fi +} + + +pkg_postinst() { + elog "Run \`env-update && source /etc/profile\`" + elog "now to set up the correct paths." + elog "" +} -- cgit v1.2.3-18-g5258