Clean up of several package files.

This commit is contained in:
Christoph Niethammer 2011-03-04 17:44:08 +00:00
parent c28191ada0
commit 599b7bf7e5
4 changed files with 17 additions and 17 deletions

View file

@ -17,12 +17,9 @@ P=${PACKAGE}-${VERSION}
# Circumvent problems with parallel build # Circumvent problems with parallel build
MAKEOPTS="-j1" MAKEOPTS="-j1"
# Other interesting configure options:
#--with-file-system=lustre
CONFIGURE_OPTS="\ CONFIGURE_OPTS="\
--enable-sharedlibs=gcc \ --enable-sharedlibs=gcc \
" "
# Other interesting configure options:
#--with-file-system=lustre
#--enable-sharedlibs=gcc \

View file

@ -14,14 +14,14 @@ INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
A=${PACKAGE}-${VERSION}.tar.bz2 A=${PACKAGE}-${VERSION}.tar.bz2
P=${PACKAGE}-${VERSION} P=${PACKAGE}-${VERSION}
# Other interesting configure options:
# --enable-mpi-threads
# --enable-progress-threads
# --with-fca=DIR
CONFIGURE_OPTS=" CONFIGURE_OPTS="
--with-devel-headers \ --with-devel-headers \
--enable-contrib-no-build=vt --enable-contrib-no-build=vt
--enable-shared \ --enable-shared \
-enable-static \ -enable-static \
" "
# Other interesting configure options:
# --enable-mpi-threads
# --enable-progress-threads
# --with-fca=DIR

View file

@ -14,13 +14,16 @@ INSTALLER="Christoph Niethammer <niethammer@hlrs.de>"
A=${PACKAGE}-${VERSION}.tar.bz2 A=${PACKAGE}-${VERSION}.tar.bz2
P=${PACKAGE}-${VERSION} P=${PACKAGE}-${VERSION}
enable_papi=0 enable_papi=${enable_papi:=0}
# Other interesting configure options:
CONFIGURE_OPTS="\ CONFIGURE_OPTS="\
--with-mpi=$MPI_DIR \ --with-mpi=$MPI_DIR \
--enable-sampling \ --enable-sampling \
" "
# use PAPI # use PAPI
if [ $enable_papi != 0 ] ; then if [ $enable_papi != 0 ] ; then
module load system/perfctr system/papi module load system/perfctr system/papi
@ -28,6 +31,8 @@ if [ $enable_papi != 0 ] ; then
CONFIGURE_OPTS="$CONFIGURE_OPTS --with-papi=$PAPI_DIR" CONFIGURE_OPTS="$CONFIGURE_OPTS --with-papi=$PAPI_DIR"
fi fi
# currently extrae has to be build in the source directory
BUILDDIR="${SRCDIR}"
src_install() { src_install() {
mkdir -p $PREFIX mkdir -p $PREFIX

View file

@ -17,12 +17,12 @@ P="VampirTrace-${VERSION}"
enable_papi=${enable_papi:=0} enable_papi=${enable_papi:=0}
enable_papi=${enable_cuda:=0} enable_papi=${enable_cuda:=0}
# Other interesting configure options:
#--enable-sampling \
CONFIGURE_OPTS="\ CONFIGURE_OPTS="\
--with-mpi-dir=$MPI_DIR \ --with-mpi-dir=$MPI_DIR \
" "
# Other interesting configure options:
#--enable-sampling \
# use PAPI # use PAPI
if [ $enable_papi != 0 ] ; then if [ $enable_papi != 0 ] ; then
@ -43,5 +43,3 @@ if [ $enable_cuda != 0 ] ; then
--with-cudart-lib-dir=$CUDA_DIR/lib64 \ --with-cudart-lib-dir=$CUDA_DIR/lib64 \
" "
fi fi