diff options
author | Sam James <sam@gentoo.org> | 2021-05-16 19:24:50 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-05-16 19:35:00 +0000 |
commit | 3df1e290ea0cd56275955c3767d09f2ddc4648e6 (patch) | |
tree | a63e54e5e61b5c0da2387bb18ac28ed074bad3bb /sys-fabric | |
parent | sys-fabric/libnes: fix broken src_unpack (diff) | |
download | gentoo-3df1e290ea0cd56275955c3767d09f2ddc4648e6.tar.gz gentoo-3df1e290ea0cd56275955c3767d09f2ddc4648e6.tar.bz2 gentoo-3df1e290ea0cd56275955c3767d09f2ddc4648e6.zip |
sys-fabric/ibacm: fix pthread linkage
Closes: https://bugs.gentoo.org/611778
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'sys-fabric')
-rw-r--r-- | sys-fabric/ibacm/ibacm-1.0.8.ebuild | 19 |
1 files changed, 15 insertions, 4 deletions
diff --git a/sys-fabric/ibacm/ibacm-1.0.8.ebuild b/sys-fabric/ibacm/ibacm-1.0.8.ebuild index 2872d490e173..24f54d5d2f00 100644 --- a/sys-fabric/ibacm/ibacm-1.0.8.ebuild +++ b/sys-fabric/ibacm/ibacm-1.0.8.ebuild @@ -1,22 +1,33 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI="6" OFED_VER="3.12" OFED_RC="1" OFED_RC_VER="1" OFED_SUFFIX="1" -inherit openib +inherit autotools openib DESCRIPTION="IB CM pre-connection service application" KEYWORDS="amd64 ~x86 ~amd64-linux" -IUSE="" RDEPEND=" sys-fabric/libibumad:${SLOT} sys-fabric/libibverbs:${SLOT} " DEPEND="${RDEPEND}" + block_other_ofed_versions + +PATCHES=( + "${FILESDIR}"/${P}-fix-pthread-linkage.patch +) + +src_prepare() { + default + + # Needed for pthread fix (bug #611778) + eautoreconf +} |