From 529df8f58f705592770a35993bda64da7ed89fb2 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Fri, 19 Aug 2011 08:05:34 +0000 Subject: [PATCH] Added sit class file for Open MPI 1.5.4 --- packages/mpi/openmpi-1.5.4 | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 packages/mpi/openmpi-1.5.4 diff --git a/packages/mpi/openmpi-1.5.4 b/packages/mpi/openmpi-1.5.4 new file mode 100755 index 0000000..aad3990 --- /dev/null +++ b/packages/mpi/openmpi-1.5.4 @@ -0,0 +1,35 @@ +#!/bin/sh +# sit class file +# +# Christoph Niethammer (C) 2011 +# + +CATEGORY="mpi" +PACKAGE="openmpi" +VERSION="1.5.4" +URL="http://www.open-mpi.org" +INSTALLER="Christoph Niethammer " + +# Archive A and package name P +A=${PACKAGE}-${VERSION}.tar.bz2 +P=${PACKAGE}-${VERSION} + + +# Other interesting configure options: +# --enable-mpi-threads +# --enable-progress-threads +# --with-fca=DIR +CONFIGURE_OPTS=" + --with-devel-headers \ + --enable-contrib-no-build=vt + --enable-shared \ + --enable-static \ + " +if [[ -d /opt/voltaire/fca ]]; then + echo "Voltair FCA found" + CONFIGURE_OPTS+=" --with-fca=/opt/voltaire/fca" +fi + +src_pretest() { + make check +}