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 C77A71382C5 for ; Thu, 10 May 2018 14:43:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EDA08E0C0C; Thu, 10 May 2018 14:43:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 C99F4E0C0C for ; Thu, 10 May 2018 14:43:47 +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 53695335C80 for ; Thu, 10 May 2018 14:43:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9C11342 for ; Thu, 10 May 2018 14:43:44 +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: <1525963422.845c73231f2e022b100b17f9229c523590b76814.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-99999999.ebuild X-VCS-Directories: dev-libs/libnl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 845c73231f2e022b100b17f9229c523590b76814 X-VCS-Branch: master Date: Thu, 10 May 2018 14:43:44 +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: 4fb43a13-85af-4d89-9e77-fdc811c23195 X-Archives-Hash: 093e175bb6f5999a06df40f8bf21d6ee commit: 845c73231f2e022b100b17f9229c523590b76814 Author: Jeroen Roovers gentoo org> AuthorDate: Thu May 10 14:43:30 2018 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu May 10 14:43:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=845c7323 dev-libs/libnl: Add USE='debug threads'. Package-Manager: Portage-2.3.36, Repoman-2.3.9 dev-libs/libnl/libnl-99999999.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-libs/libnl/libnl-99999999.ebuild b/dev-libs/libnl/libnl-99999999.ebuild index 65e5dfb9b48..f8aea0b33b5 100644 --- a/dev-libs/libnl/libnl-99999999.ebuild +++ b/dev-libs/libnl/libnl-99999999.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 @@ -14,7 +14,7 @@ EGIT_REPO_URI=" LICENSE="LGPL-2.1 utils? ( GPL-2 )" SLOT="3" KEYWORDS="" -IUSE="static-libs python utils" +IUSE="+debug static-libs python +threads utils" RDEPEND=" python? ( ${PYTHON_DEPS} ) @@ -67,9 +67,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() {