diff options
author | dsomero <xgizzmo@gmail.com> | 2010-05-21 08:15:36 -0400 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-24 16:06:03 -0500 |
commit | 381d91097ab796f0502515f20317e2b5c046c380 (patch) | |
tree | e2d90b542a7e3adfa507ec2f34d24aab0505413b /development/openmpi | |
parent | 9c865508c4f75c882041e91bdbb3eda2936aca76 (diff) | |
download | slackbuilds-381d91097ab796f0502515f20317e2b5c046c380.tar.gz |
development/openmpi: Removed (Build failure)
/usr/include/cmdline.h:47:20: error: config.h: No such file
or directory.
Diffstat (limited to 'development/openmpi')
-rw-r--r-- | development/openmpi/README | 18 | ||||
-rw-r--r-- | development/openmpi/doinst.sh | 17 | ||||
-rw-r--r-- | development/openmpi/openmpi.SlackBuild | 100 | ||||
-rw-r--r-- | development/openmpi/openmpi.info | 10 | ||||
-rw-r--r-- | development/openmpi/slack-desc | 19 |
5 files changed, 0 insertions, 164 deletions
diff --git a/development/openmpi/README b/development/openmpi/README deleted file mode 100644 index 6cf6e38b02..0000000000 --- a/development/openmpi/README +++ /dev/null @@ -1,18 +0,0 @@ -The Open MPI Project is an open source MPI-2 implementation that is -developed and maintained by a consortium of academic, research, and -industry partners. Open MPI is therefore able to combine the experise, -technologies, and resources from all across the High Performance -Computing community in order to build the best MPI library available. -Open MPI offers advantages for system and software vendors, application -developers and computer science researchers. - -Open MPI represents the merger between three well-known MPI implementations: - * FT-MPI from the University of Tennessee - * LA-MPI from Los Alamos National Laboratory - * LAM/MPI from Indiana University -with contributions from the PACX-MPI team at the University of Stuttgart. -These four institutions comprise the founding members of the Open MPI -development team. Each of these MPI implementations excelled in one or more -areas. The driving motivation behind Open MPI is to bring the best ideas -and technologies from the individual projects and create one world-class open -source MPI implementation that excels in all areas. diff --git a/development/openmpi/doinst.sh b/development/openmpi/doinst.sh deleted file mode 100644 index 437882b5ef..0000000000 --- a/development/openmpi/doinst.sh +++ /dev/null @@ -1,17 +0,0 @@ -config() { - NEW="$1" - OLD="$(dirname $NEW)/$(basename $NEW .new)" - # If there's no config file by that name, mv it over: - if [ ! -r $OLD ]; then - mv $NEW $OLD - elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then - # toss the redundant copy - rm $NEW - fi - # Otherwise, we leave the .new copy for the admin to consider... -} - -config etc/openmpi-totalview.tcl.new -config etc/openmpi-mca-params.conf.new -config etc/openmpi-default-hostfile.new - diff --git a/development/openmpi/openmpi.SlackBuild b/development/openmpi/openmpi.SlackBuild deleted file mode 100644 index 1409cacb8a..0000000000 --- a/development/openmpi/openmpi.SlackBuild +++ /dev/null @@ -1,100 +0,0 @@ -#!/bin/sh - -# Slackware build script for Open MPI - -# Copyright 2009 Murat D. Kadirov <banderols@gmail.com> -# All rights reserved. -# -# Redistribution and use of this script, with or without modification, is -# permitted provided that the following conditions are met: -# -# 1. Redistributions of this script must retain the above copyright -# notice, this list of conditions and the following disclaimer. -# -# THIS SOFTWARE IS PROVIDED BY THE AUTHOR "AS IS" AND ANY EXPRESS OR IMPLIED -# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF -# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO -# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, -# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; -# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, -# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR -# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF -# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - -PRGNAM=openmpi -VERSION=${VERSION:-1.3.3} -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" - LIBDIRSUFFIX="64" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG -cd $TMP -rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 -cd $PRGNAM-$VERSION -chown -R root:root . -find . \ - \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ - -exec chmod 755 {} \; -o \ - \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ - -exec chmod 644 {} \; - -CFLAGS="$SLKCFLAGS" \ -CXXFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --libdir=/usr/lib${LIBDIRSUFFIX} \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --mandir=/usr/man \ - --docdir=/usr/doc/$PRGNAM-$VERSION \ - --build=$ARCH-slackware-linux - -make -make install DESTDIR=$PKG - -find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ - | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - -( cd $PKG/usr/man - find . -type f -exec gzip -9 {} \; - for i in $( find . -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done -) - -# Don't clobber config files on upgrades -mv $PKG/etc/openmpi-totalview.tcl $PKG/etc/openmpi-totalview.tcl.new -mv $PKG/etc/openmpi-mca-params.conf $PKG/etc/openmpi-mca-params.conf.new -mv $PKG/etc/openmpi-default-hostfile $PKG/etc/openmpi-default-hostfile.new - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a \ - AUTHORS INSTALL LICENSE NEWS README VERSION examples \ - $PKG/usr/doc/$PRGNAM-$VERSION -cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild - -mkdir -p $PKG/install -cat $CWD/slack-desc > $PKG/install/slack-desc -cat $CWD/doinst.sh > $PKG/install/doinst.sh - -cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} diff --git a/development/openmpi/openmpi.info b/development/openmpi/openmpi.info deleted file mode 100644 index 94276a6e61..0000000000 --- a/development/openmpi/openmpi.info +++ /dev/null @@ -1,10 +0,0 @@ -PRGNAM="openmpi" -VERSION="1.3.3" -HOMEPAGE="http://www.open-mpi.org" -DOWNLOAD="http://www.open-mpi.org:80/software/ompi/v1.3/downloads/openmpi-1.3.3.tar.bz2" -MD5SUM="f6cdc9c195daa8571b2e509e952d6755" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" -MAINTAINER="Murat D. Kadirov" -EMAIL="banderols@gmail.com" -APPROVED="rworkman" diff --git a/development/openmpi/slack-desc b/development/openmpi/slack-desc deleted file mode 100644 index d4ef35fe1c..0000000000 --- a/development/openmpi/slack-desc +++ /dev/null @@ -1,19 +0,0 @@ -# HOW TO EDIT THIS FILE: -# The "handy ruler" below makes it easier to edit a package description. Line -# up the first '|' above the ':' following the base package name, and the '|' -# on the right side marks the last column you can put a character in. You must -# make exactly 11 lines for the formatting to be correct. It's also -# customary to leave one space after the ':'. - - |-----handy-ruler------------------------------------------------------| -openmpi: openmpi (an open source MPI-2 implementation) -openmpi: -openmpi: Open MPI is a project combining technologies and resources from -openmpi: several other projects (FT-MPI, LA-MPI, LAM/MPI, and PACX-MPI) -openmpi: in order to build the best Message Passing Interface (MPI) -openmpi: library available. MPI is highly specialised computer software -openmpi: that allows many computers to communicate with one another; it -openmpi: is exclusively used in computer clusters. -openmpi: -openmpi: Homepage: http://www.open-mpi.org/ -openmpi: |