From 943a04e722200ea8eb9a76833bf2e89de5569212 Mon Sep 17 00:00:00 2001 From: Christoph Niethammer Date: Fri, 19 Oct 2012 11:34:58 +0000 Subject: [PATCH] Added sit class file for openmpi-1.6.2. --- packages/mpi/openmpi/openmpi-1.6.2 | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100755 packages/mpi/openmpi/openmpi-1.6.2 diff --git a/packages/mpi/openmpi/openmpi-1.6.2 b/packages/mpi/openmpi/openmpi-1.6.2 new file mode 100755 index 0000000..146b0e5 --- /dev/null +++ b/packages/mpi/openmpi/openmpi-1.6.2 @@ -0,0 +1,35 @@ +#!/bin/sh +# sit class file +# +# Christoph Niethammer (C) 2012 +# + +CATEGORY="mpi" +PACKAGE="openmpi" +VERSION="1.6.2" +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 +CONFIGURE_OPTS=" + --with-devel-headers \ + --enable-contrib-no-build=vt + --enable-shared \ + --enable-static" + +if [[ -d /opt/voltaire/fca ]]; then + echo "Voltaire FCA found" + sit_info "Enabling Voltaire FCA (/opt/voltaire/fca)" + CONFIGURE_OPTS+=" --with-fca=/opt/voltaire/fca" +fi + +src_pretest() { + make check +}