Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/
Date: Thu, 10 May 2018 13:15:24
Message-Id: 1525958117.24945aa0fe8770d9407f897fcce48b335f4809e3.jer@gentoo
1 commit: 24945aa0fe8770d9407f897fcce48b335f4809e3
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu May 10 13:14:31 2018 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu May 10 13:15:17 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24945aa0
7
8 dev-libs/libnl: Add USE='debug threads'.
9
10 Package-Manager: Portage-2.3.36, Repoman-2.3.9
11
12 dev-libs/libnl/libnl-3.4.0.ebuild | 10 ++++++----
13 1 file changed, 6 insertions(+), 4 deletions(-)
14
15 diff --git a/dev-libs/libnl/libnl-3.4.0.ebuild b/dev-libs/libnl/libnl-3.4.0.ebuild
16 index 96413581c26..fc9536f8ff2 100644
17 --- a/dev-libs/libnl/libnl-3.4.0.ebuild
18 +++ b/dev-libs/libnl/libnl-3.4.0.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2017 Gentoo Foundation
21 +# Copyright 1999-2018 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=6
25 @@ -18,7 +18,7 @@ SRC_URI="
26 LICENSE="LGPL-2.1 utils? ( GPL-2 )"
27 SLOT="3"
28 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
29 -IUSE="static-libs python utils"
30 +IUSE="+debug static-libs python +threads utils"
31
32 RDEPEND="
33 python? ( ${PYTHON_DEPS} )
34 @@ -71,9 +71,11 @@ src_prepare() {
35
36 multilib_src_configure() {
37 econf \
38 - --disable-silent-rules \
39 + $(multilib_native_use_enable utils cli) \
40 + $(use_enable debug) \
41 $(use_enable static-libs static) \
42 - $(multilib_native_use_enable utils cli)
43 + $(use_enable threads) \
44 + --disable-silent-rules
45 }
46
47 multilib_src_compile() {