blob: 48a2e554f84ae0552c144139e6391558ef68b9da (
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
77
78
79
80
81
82
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake toolchain-funcs
COMMIT="8ee6a372ca703836f593e3c450ca903f04be14df"
DESCRIPTION="Parallel (MPI) unstructured graph partitioning library"
HOMEPAGE="https://github.com/KarypisLab/ParMETIS"
SRC_URI="https://github.com/KarypisLab/ParMETIS/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/ParMETIS-${COMMIT}"
LICENSE="all-rights-reserved"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~loong ~riscv ~x86 ~amd64-linux"
IUSE="examples openmp pcre"
RESTRICT="mirror bindist"
DEPEND="
sci-libs/gklib
>=sci-libs/metis-5.1.0-r5
virtual/mpi[fortran]
pcre? ( dev-libs/libpcre:= )
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${P}-respect-user-flags.patch
"${FILESDIR}"/${P}-multilib.patch
)
pkg_pretend() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
pkg_setup() {
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
}
src_prepare() {
export CC=mpicc CXX=mpicxx
cmake_src_prepare
}
src_configure() {
local mycmakeargs=(
-DGKRAND=ON
-DMETIS_PATH="${EPREFIX}/usr"
-DOPENMP=$(usex openmp)
-DPCRE=$(usex pcre)
-DSHARED=ON
)
cmake_src_configure
}
src_install() {
cmake_src_install
dodoc Changelog
dodoc manual/manual.pdf
if use examples; then
docinto examples
dodoc -r Graphs programs
fi
cat > ${PN}.pc <<-EOF
prefix=${EPREFIX}/usr
libdir=\${prefix}/$(get_libdir)
includedir=\${prefix}/include
Name: ${PN}
Description: ${DESCRIPTION}
Version: ${PV}
URL: ${HOMEPAGE}
Libs: -L\${libdir} -lparmetis -lGKlib
Cflags: -I\${includedir}
Requires: metis
EOF
insinto /usr/$(get_libdir)/pkgconfig
doins ${PN}.pc
}
|