blob: 84966f965b68831ab6c5d0443c931f1a480e87a7 (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="The Process Management Interface (PMI) Exascale"
HOMEPAGE="https://openpmix.github.io/"
SRC_URI="https://github.com/openpmix/openpmix/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="debug +munge pmi"
RDEPEND="
dev-libs/libevent:=
sys-apps/hwloc:=
sys-cluster/ucx
sys-libs/zlib:=
munge? ( sys-auth/munge )
pmi? ( !sys-cluster/slurm )
"
DEPEND="${RDEPEND}"
src_configure() {
econf \
--disable-werror \
$(use_enable debug) \
$(use_with munge)
}
src_install() {
default
# bug #884765
mv "${ED}"/usr/bin/pquery "${ED}"/usr/bin/pmix-pquery || die
}
|