diff --git a/packages/performance/scalasca/scalasca-1.4 b/packages/performance/scalasca/scalasca-1.4 deleted file mode 100755 index 99fda92..0000000 --- a/packages/performance/scalasca/scalasca-1.4 +++ /dev/null @@ -1,45 +0,0 @@ -#!/bin/sh -# sit class file -# -# Rainer Keller, HLRS (2011) -# - -CATEGORY="performance" -PACKAGE="scalasca" -VERSION="1.4" -URL="http://www.scalasca.org/" -INSTALLER="Rainer Keller " - - -# Archive A and package name P -A="scalasca-${VERSION}.tar.gz" -P="scalasca-${VERSION}" - -enable_papi=${enable_papi:=1} - -# From configure: -# additional options [ONLY TO BE USED IF DIRECTED BY configure]: -# [--compiler=(gnu|pgi|intel|path|ibm|sun)] # Compiler selection -# # (Linux only) -# [--mpi=(mpich|mpich2|lam|openmpi|intel|intel2| # MPI-Lib selection -# hp|scali|mpibull2|bullxmpi|sun|ibmpoe)] # (Linux/Solaris only) - -# use PAPI -if [ $enable_papi != 0 ] ; then - module load papi - PAPI_DIR=$(dirname $(dirname $(which papi_avail))) - CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi=$PAPI_DIR" -fi - -BUILDDIR="${SRCDIR}" - -LOGDIR=${LOGDIR:="/tmp/$USER-$PACKAGE-$VERSION/"} - - -# GRRRR Scalasca is creating their own build-directory (messy configure...) -src_build() { - cd build-linux-${COMPILER}-${MPI} - make - cd - -} - diff --git a/packages/performance/scalasca/scalasca-1.4.1 b/packages/performance/scalasca/scalasca-1.4.1 deleted file mode 100755 index 1f17d95..0000000 --- a/packages/performance/scalasca/scalasca-1.4.1 +++ /dev/null @@ -1,52 +0,0 @@ -#!/bin/sh -# sit class file -# -# Rainer Keller, HLRS (2011) -# Jose Gracia, HLRS (2012) - -CATEGORY="performance" -PACKAGE="scalasca" -VERSION="1.4.1" -URL="http://www.scalasca.org/" -INSTALLER="Jose Gracia " - - -# Archive A and package name P -A="scalasca-${VERSION}.tar.gz" -P="scalasca-${VERSION}" - -enable_papi=${enable_papi:=1} - -# From configure: -# additional options [ONLY TO BE USED IF DIRECTED BY configure]: -# [--compiler=(gnu|pgi|intel|path|ibm|sun)] # Compiler selection -# # (Linux only) -# [--mpi=(mpich|mpich2|lam|openmpi|intel|intel2| # MPI-Lib selection -# hp|scali|mpibull2|bullxmpi|sun|ibmpoe)] # (Linux/Solaris only) - -# use PAPI -if [ $enable_papi != 0 ] ; then - if [ $PLATFORM="laki" ] ; then - #module load system/perfctr system/papi - echo "Using Papi counters provided by system" - else - module load papi - fi - PAPI_DIR=$(dirname $(dirname $(which papi_avail))) - CONFIGURE_OPTS="${CONFIGURE_OPTS} --with-papi=$PAPI_DIR" -fi - -BUILDDIR="${SRCDIR}" #/build-linux-gomp-openmpi" - -LOGDIR=${LOGDIR:="/tmp/$USER-$PACKAGE-$VERSION/"} - - -# GRRRR Scalasca is creating their own build-directory (messy configure...) -# and the build dir name seems to change -src_build() { - #cd build-linux-${COMPILER}-${MPI} - cd build-linux-gomp-${MPI} - make - cd - -} -