From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7F4111382C5 for ; Thu, 10 May 2018 13:15:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 962D1E099F; Thu, 10 May 2018 13:15:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6CD02E099F for ; Thu, 10 May 2018 13:15:21 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACC91335C36 for ; Thu, 10 May 2018 13:15:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E560A38 for ; Thu, 10 May 2018 13:15:18 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1525958117.24945aa0fe8770d9407f897fcce48b335f4809e3.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libnl/libnl-3.4.0.ebuild X-VCS-Directories: dev-libs/libnl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 24945aa0fe8770d9407f897fcce48b335f4809e3 X-VCS-Branch: master Date: Thu, 10 May 2018 13:15:18 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 07fc0d66-ea44-4fb8-9b0a-e6ff0b068b6d X-Archives-Hash: 8ced9b734be79791dce27fd3a4488efd commit: 24945aa0fe8770d9407f897fcce48b335f4809e3 Author: Jeroen Roovers gentoo org> AuthorDate: Thu May 10 13:14:31 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu May 10 13:15:17 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24945aa0 dev-libs/libnl: Add USE='debug threads'. Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-libs/libnl/libnl-3.4.0.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-libs/libnl/libnl-3.4.0.ebuild b/dev-libs/libnl/libnl-3.4.0.ebuild index 96413581c26..fc9536f8ff2 100644 --- a/dev-libs/libnl/libnl-3.4.0.ebuild +++ b/dev-libs/libnl/libnl-3.4.0.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -18,7 +18,7 @@ SRC_URI=" LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux" -IUSE="static-libs python utils" +IUSE="+debug static-libs python +threads utils" RDEPEND=" python? ( ${PYTHON_DEPS} ) @@ -71,9 +71,11 @@ src_prepare() { multilib_src_configure() { econf \ - --disable-silent-rules \ + $(multilib_native_use_enable utils cli) \ + $(use_enable debug) \ $(use_enable static-libs static) \ - $(multilib_native_use_enable utils cli) + $(use_enable threads) \ + --disable-silent-rules } multilib_src_compile() {