removed extra/openmpi, removed boost dep to openmpi

This commit is contained in:
Kevin Mihelich 2011-03-09 11:59:50 -05:00
parent 3d21be8f62
commit 3fe7c4bda0
2 changed files with 2 additions and 60 deletions

View file

@ -6,6 +6,7 @@
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
# - changed _bindir to .linuxarm from .linuxx86
# - removed (optional) dep to openmpi - does not build on ARM
plugrel=1
@ -16,7 +17,7 @@ _boostver=${pkgver//./_}
pkgrel=3
arch=('i686' 'x86_64')
url="http://www.boost.org/"
makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib' 'openmpi')
makedepends=('icu' 'python' 'python2' 'bzip2' 'zlib')
source=(http://downloads.sourceforge.net/sourceforge/${pkgbase}/${pkgbase}_${_boostver}.tar.gz
4994-compile-fix-for-Python32-v2.patch
boost-1.46.0-spirit.patch)
@ -105,7 +106,6 @@ package_boost() {
package_boost-libs() {
pkgdesc="Free peer-reviewed portable C++ source libraries - Runtime"
depends=('gcc-libs' 'bzip2' 'zlib' 'icu')
optdepends=('openmpi: for mpi support')
install -d "${pkgdir}/usr/lib"
#shared libs

View file

@ -1,58 +0,0 @@
# $Id: PKGBUILD 111958 2011-03-02 17:12:01Z stephane $
# Maintainer: Stéphane Gaudreault <stephane@archlinux.org>
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
# - removed dependency on valgrind (not supported on ARM)
plugrel=1
pkgname=openmpi
pkgver=1.5.1
pkgrel=1
pkgdesc="High performance message passing library (MPI)"
arch=('i686' 'x86_64')
url="http://www.open-mpi.org"
license=('custom')
depends=('gcc' 'gcc-fortran' 'openssh' 'libtool')
options=(!libtool)
source=(http://www.open-mpi.org/software/ompi/v1.5/downloads/${pkgname}-${pkgver}.tar.bz2)
sha1sums=('fe21acc211fe60e30dc6bef1c83a70c34e093998')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr \
--sysconfdir=/etc/${pkgname} \
--mandir=/usr/share/man \
--enable-mpi-f90 \
--libdir=/usr/lib/${pkgname} \
--with-threads=posix \
--enable-mpi-threads \
--enable-smp-locks \
--enable-pretty-print-stacktrace \
--without-slurm \
--with-libltdl=/usr \
FC=/usr/bin/gfortran \
LDFLAGS='-Wl,-z,noexecstack'
make
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
make DESTDIR="${pkgdir}" install
# Openmpi's otfinfo conflicts with the one from texlive
mv ${pkgdir}/usr/bin/otfinfo ${pkgdir}/usr/bin/otfinfompi
# Openmpi's otfdump conflicts with the one from libotf
mv ${pkgdir}/usr/bin/otfdump ${pkgdir}/usr/bin/otfdumpompi
# Symlink points to non-existing ortec++.1
rm ${pkgdir}/usr/share/man/man1/orteCC.1
install -d -m 755 ${pkgdir}/etc/ld.so.conf.d
echo "/usr/lib/${pkgname}" > ${pkgdir}/etc/ld.so.conf.d/${pkgname}.conf
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}