Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fabric/ibacm/
Date: Sun, 16 May 2021 19:35:28
Message-Id: 1621193700.3df1e290ea0cd56275955c3767d09f2ddc4648e6.sam@gentoo
1 commit: 3df1e290ea0cd56275955c3767d09f2ddc4648e6
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 16 19:24:50 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Sun May 16 19:35:00 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3df1e290
7
8 sys-fabric/ibacm: fix pthread linkage
9
10 Closes: https://bugs.gentoo.org/611778
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 sys-fabric/ibacm/ibacm-1.0.8.ebuild | 19 +++++++++++++++----
14 1 file changed, 15 insertions(+), 4 deletions(-)
15
16 diff --git a/sys-fabric/ibacm/ibacm-1.0.8.ebuild b/sys-fabric/ibacm/ibacm-1.0.8.ebuild
17 index 2872d490e17..24f54d5d2f0 100644
18 --- a/sys-fabric/ibacm/ibacm-1.0.8.ebuild
19 +++ b/sys-fabric/ibacm/ibacm-1.0.8.ebuild
20 @@ -1,22 +1,33 @@
21 -# Copyright 1999-2018 Gentoo Foundation
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 -EAPI="5"
26 +EAPI="6"
27
28 OFED_VER="3.12"
29 OFED_RC="1"
30 OFED_RC_VER="1"
31 OFED_SUFFIX="1"
32
33 -inherit openib
34 +inherit autotools openib
35
36 DESCRIPTION="IB CM pre-connection service application"
37 KEYWORDS="amd64 ~x86 ~amd64-linux"
38 -IUSE=""
39
40 RDEPEND="
41 sys-fabric/libibumad:${SLOT}
42 sys-fabric/libibverbs:${SLOT}
43 "
44 DEPEND="${RDEPEND}"
45 +
46 block_other_ofed_versions
47 +
48 +PATCHES=(
49 + "${FILESDIR}"/${P}-fix-pthread-linkage.patch
50 +)
51 +
52 +src_prepare() {
53 + default
54 +
55 + # Needed for pthread fix (bug #611778)
56 + eautoreconf
57 +}