You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sci-libs/parmetis/parmetis-3.1.1.ebuild

42 lines
953 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/parmetis/parmetis-3.1.1.ebuild,v 1.4 2011/08/09 21:34:59 bicatali Exp $
EAPI=2
inherit eutils autotools
MYP=ParMetis-${PV}
DESCRIPTION="Parallel graph partitioner"
HOMEPAGE="http://www-users.cs.umn.edu/~karypis/metis/parmetis/"
SRC_URI="http://glaros.dtc.umn.edu/gkhome/fetch/sw/${PN}/OLD/${MYP}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="free-noncomm"
SLOT="0"
IUSE="doc static-libs"
DEPEND="virtual/mpi"
RDEPEND="${DEPEND}
!sci-libs/metis"
S="${WORKDIR}/${MYP}"
src_prepare() {
epatch "${FILESDIR}"/${P}-autotools.patch
eautoreconf
export CC=mpicc
}
src_configure() {
econf $(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc README CHANGES
if use doc; then
insinto /usr/share/doc/${PF}
doins Manual/*.pdf || die
fi
}