Install this version:
emerge -a =sys-block/libfabric-1.22.0
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sys-block/libfabric-1.22.0
Or alternatively:
emerge --autounmask-write -a =sys-block/libfabric-1.22.0
| Version | EAPI | Keywords | Slot |
|---|---|---|---|
| 1.22.0 | 8 | ~amd64 | 0/1 |
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="The Open Fabrics Interfaces (OFI) framework"
HOMEPAGE="http://libfabric.org/ https://github.com/ofiwg/libfabric"
SRC_URI="https://github.com/ofiwg/${PN}/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="BSD GPL-2"
SLOT="0/1"
KEYWORDS="~amd64"
IUSE="cuda efa usnic rocr verbs"
DEPEND="
rocr? ( dev-libs/rocr-runtime:= )
usnic? ( dev-libs/libnl:= )
verbs? ( sys-cluster/rdma-core )
"
RDEPEND="
${DEPEND}
cuda? ( dev-util/nvidia-cuda-toolkit )
"
BDEPEND="
virtual/pkgconfig
"
DOCS=(
AUTHORS
#CONTRIBUTORS
NEWS.md
README
#README.md
)
src_prepare() {
default
eautoreconf
}
src_configure() {
local myeconfargs=(
--disable-static
# let's try to avoid automagic deps
--enable-bgq=no
--enable-cuda-dlopen=$(usex cuda yes no)
--enable-efa=$(usex efa yes no)
--enable-gni=no
#--enable-gdrcopy-dlopen=no
--enable-mrail=yes
--enable-perf=no
# no psm libraries packaged that I can find (patches accepted)
--enable-psm=no
--enable-psm2=no
#--enable-psm3=no
--enable-rocr-dlopen=$(usex rocr yes no)
--enable-rstream=yes
--enable-rxd=yes
--enable-rxm=yes
--enable-sockets=yes
--enable-shm=yes
--enable-tcp=yes
--enable-udp=yes
--enable-usnic=$(usex usnic yes no)
--enable-verbs=$(usex verbs yes no)
--enable-xpmem=no
)
econf "${myeconfargs[@]}"
}
src_install() {
default
# no static archives
find "${ED}" -name '*.la' -delete || die
}
Manage flags for this package:
euse -i <flag> -p sys-block/libfabric |
euse -E <flag> -p sys-block/libfabric |
euse -D <flag> -p sys-block/libfabric
rocr? ( dev-libs/rocr-runtime:= ) usnic? ( dev-libs/libnl:= ) verbs? ( sys-cluster/rdma-core )
rocr? ( dev-libs/rocr-runtime:= ) usnic? ( dev-libs/libnl:= ) verbs? ( sys-cluster/rdma-core ) cuda? ( dev-util/nvidia-cuda-toolkit )
virtual/pkgconfig
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | libfabric-1.22.0.tar.bz2 | 2734031 bytes | https://github.com/ofiwg/libfabric/releases/download/v1.22.0/libfabric-1.22.0.tar.bz2 |