blob: 427ef07255640f94ff476e32ec0c352f620d08fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/scotch/scotch-5.1.6.ebuild,v 1.1 2009/09/03 16:58:50 patrick Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Software package and libraries for graph partitioning, static mapping, and sparse matrix block ordering"
HOMEPAGE="http://www.labri.u-bordeaux.fr/perso/pelegrin/scotch/"
SRC_URI="http://gforge.inria.fr/frs/download.php/5218/${PN}_${PV}.tgz"
LICENSE="CeCILL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mpi"
DEPEND="sys-devel/bison
mpi? ( virtual/mpi )"
RDEPEND="${DEPEND}"
S=${WORKDIR}"/scotch_5.0/src"
src_prepare() {
epatch "${FILESDIR}"/mmkt-typo.patch
epatch "${FILESDIR}"/shared-libs.patch
epatch "${FILESDIR}"/metis-header.patch
}
src_configure() {
cp "${FILESDIR}"/Makefile.inc ./
}
src_compile() {
emake -j1 || die "make failed"
use mpi && (emake -j1 ptscotch || die "make failed")
}
src_install() {
dodir "/usr"
emake prefix="${D}/usr" install
use mpi && dobin "${S}"/../bin/{dgord,dgscat,dgtst}
dolib.so "${S}"/{libscotch,libscotchmetis}/*.so
if [ "$(get_libdir)" != "lib" ]; then
mv "${D}"/usr/lib/* "${D}"/usr/$(get_libdir)
rm -rf "${D}"/usr/lib
fi
insinto /usr/include/scotch
doins "${S}"/libscotch/*.h
insinto /usr/include/scotchmetis
doins "${S}"/libscotchmetis/*.h
mv "${D}"/usr/include/*scotch*.h "${D}"/usr/include/scotch/
insinto "/usr/share/${PN}/tgt"
doins "${S}"/../tgt/*
insinto "/usr/share/${PN}/grf"
doins "${S}"/../grf/*
cd "${S}/../doc"
dodoc *
}
|