blob: d29b1aa5a8729310a84ee221b2feae15277399b9 (
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
67
68
69
70
71
72
73
74
75
76
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/scotch/scotch-5.1.7.ebuild,v 1.2 2011/06/26 10:08:23 jlec Exp $
EAPI=3
inherit eutils
DESCRIPTION="Software for graph, mesh and hypergraph partitioning"
HOMEPAGE="http://www.labri.u-bordeaux.fr/perso/pelegrin/scotch/"
SRC_URI="http://gforge.inria.fr/frs/download.php/23390/${PN}_${PV}.tgz"
LICENSE="CeCILL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="mpi"
RDEPEND="mpi? ( virtual/mpi )"
DEPEND="${RDEPEND}
sys-devel/bison"
S=${WORKDIR}"/scotch_5.1/src"
src_prepare() {
epatch \
"${FILESDIR}"/shared-libs_${PV}.patch \
"${FILESDIR}"/metis-header.patch
}
src_configure() {
cp "${FILESDIR}"/Makefile.inc_${PV} ./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}
for file in `ls "${D}"/usr/bin`
do
mv "${D}/usr/bin/$file" "${D}/usr/bin/scotch_$file"
done
for file in `ls "${D}"/usr/share/man/man1`
do
mv "${D}/usr/share/man/man1/$file" "${D}/usr/share/man/man1/scotch_$file"
done
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 *.pdf
}
|