[arch-commits] Commit in (6 files)

Stéphane Gaudreault stephane at archlinux.org
Wed Mar 2 17:12:01 UTC 2011


    Date: Wednesday, March 2, 2011 @ 12:12:01
  Author: stephane
Revision: 111958

Initial commit

Added:
  openmpi/
  openmpi/repos/
  openmpi/repos/community-i686/
  openmpi/repos/community-x86_64/
  openmpi/trunk/
  openmpi/trunk/PKGBUILD

----------+
 PKGBUILD |   53 +++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 53 insertions(+)

Added: openmpi/trunk/PKGBUILD
===================================================================
--- openmpi/trunk/PKGBUILD	                        (rev 0)
+++ openmpi/trunk/PKGBUILD	2011-03-02 17:12:01 UTC (rev 111958)
@@ -0,0 +1,53 @@
+# $Id$
+# Maintainer: Stéphane Gaudreault <stephane at archlinux.org>
+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' 'valgrind' '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 \
+               --with-valgrind \
+               --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"
+}


Property changes on: openmpi/trunk/PKGBUILD
___________________________________________________________________
Added: svn:keywords
   + Id




More information about the arch-commits mailing list