diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-06-19 02:21:17 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-06-19 02:21:17 +0000 |
commit | b2da673ad3d1ef3114aea07b39fcc7b2c7dc9ba8 (patch) | |
tree | 3d5ff580c51816128bf56b76b1d247722ac7ec67 | |
parent | marked x86 per bug 418411 (diff) | |
download | gentoo-2-b2da673ad3d1ef3114aea07b39fcc7b2c7dc9ba8.tar.gz gentoo-2-b2da673ad3d1ef3114aea07b39fcc7b2c7dc9ba8.tar.bz2 gentoo-2-b2da673ad3d1ef3114aea07b39fcc7b2c7dc9ba8.zip |
Bump
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
-rw-r--r-- | sci-libs/openfoam/ChangeLog | 9 | ||||
-rw-r--r-- | sci-libs/openfoam/openfoam-2.1.1.ebuild | 115 |
2 files changed, 122 insertions, 2 deletions
diff --git a/sci-libs/openfoam/ChangeLog b/sci-libs/openfoam/ChangeLog index 8d86ac6f8da4..c7d2b368905a 100644 --- a/sci-libs/openfoam/ChangeLog +++ b/sci-libs/openfoam/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-libs/openfoam -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/ChangeLog,v 1.9 2011/12/30 05:15:50 patrick Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/openfoam/ChangeLog,v 1.10 2012/06/19 02:21:17 patrick Exp $ + +*openfoam-2.1.1 (19 Jun 2012) + + 19 Jun 2012; Patrick Lauer <patrick@gentoo.org> +openfoam-2.1.1.ebuild: + Bump *openfoam-2.1.0 (30 Dec 2011) diff --git a/sci-libs/openfoam/openfoam-2.1.1.ebuild b/sci-libs/openfoam/openfoam-2.1.1.ebuild new file mode 100644 index 000000000000..2b15d0713554 --- /dev/null +++ b/sci-libs/openfoam/openfoam-2.1.1.ebuild @@ -0,0 +1,115 @@ +# Copyright 1999-2012 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.ebuild,v 1.1 2012/06/19 02:21:17 patrick 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/paraview-3.0 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 + + insopts -m0755 + doins -r bin + + insinto ${INSDIR}/applications/bin + doins -r applications/bin/* + + insinto ${INSDIR}/lib + doins -r lib/* + + insinto ${INSDIR}/wmake + doins -r wmake/* + + dodoc {doc/Guides-a4/*.pdf,README} + + if use doc ; then + dohtml -r doc/Doxygen + fi +} |