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 87108139085 for ; Fri, 16 Dec 2016 00:05:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C49F8E0C03; Fri, 16 Dec 2016 00:05:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9C292E0C03 for ; Fri, 16 Dec 2016 00:05:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 684DD34121E for ; Fri, 16 Dec 2016 00:05:01 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CBED524DD for ; Fri, 16 Dec 2016 00:04:59 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <1481846662.3ee56b51a48d078ea70c41bf24346d2456c2e8f6.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/nvme-cli/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/nvme-cli/nvme-cli-0.9.ebuild X-VCS-Directories: sys-apps/nvme-cli/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 3ee56b51a48d078ea70c41bf24346d2456c2e8f6 X-VCS-Branch: master Date: Fri, 16 Dec 2016 00:04:59 +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: 04662572-eb56-45df-9046-099c50b7a8a0 X-Archives-Hash: 8945e8b0fa943e4f7adba51be11beff1 commit: 3ee56b51a48d078ea70c41bf24346d2456c2e8f6 Author: Mike Frysinger gentoo org> AuthorDate: Fri Dec 16 00:03:49 2016 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Dec 16 00:04:22 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ee56b51 sys-apps/nvme-cli: add USE=udev to control automagic dep sys-apps/nvme-cli/nvme-cli-0.9.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sys-apps/nvme-cli/nvme-cli-0.9.ebuild b/sys-apps/nvme-cli/nvme-cli-0.9.ebuild index 2cdadb3..b0abbe6 100644 --- a/sys-apps/nvme-cli/nvme-cli-0.9.ebuild +++ b/sys-apps/nvme-cli/nvme-cli-0.9.ebuild @@ -13,8 +13,10 @@ SRC_URI="https://github.com/linux-nvme/nvme-cli/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -RDEPEND="sys-libs/libcap" +IUSE="udev" + +RDEPEND="sys-libs/libcap + udev? ( virtual/libudev:= )" DEPEND="${RDEPEND}" src_prepare() { @@ -31,4 +33,5 @@ src_prepare() { src_configure() { tc-export CC export PREFIX="${EPREFIX}/usr" + MAKEOPTS+=" LIBUDEV=$(usex udev 0 1)" }