# Copyright 1999-2001 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Tibor Rudas # /home/cvsroot/gentoo-x86/skel.build,v 1.7 2001/08/25 21:15:08 chadh Exp S=${WORKDIR}/${P} DESCRIPTION="the LAM MPI parallel computing environment" SRC_URI="http://www.lam-mpi.org/download/files/${P}.tar.bz2" HOMEPAGE="http://www.lam-mpi.org" DEPEND="" # we need ssh if we want to use it instead of rsh RDEPEND="net-misc/openssh" src_compile() { ./configure \ --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr \ --host="${CHOST}" --with-cflags="${CFLAGS}" \ --with-cxxflags="${CXXFLAGS}" --with-rsh="ssh -x" || die # sometimes emake doesn't finish since it gets ahead of itself :) emake || make || die } src_install () { make prefix=${D}/usr \ mandir=${D}/usr/share/man infodir=${D}/usr/share/info install || die }