From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B8E991384B4 for ; Sat, 19 Dec 2015 17:15:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00DD121C0AB; Sat, 19 Dec 2015 17:15:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3DC8921C0C5 for ; Sat, 19 Dec 2015 17:15:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1459633FEB1 for ; Sat, 19 Dec 2015 17:15:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3D62CAF for ; Sat, 19 Dec 2015 17:14:59 +0000 (UTC) From: "Sven Wegener" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sven Wegener" Message-ID: <1450542881.5ad329bba1def4c7f1a2b83a28e3888bb197d4d1.swegener@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/libsigrok/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/libsigrok/libsigrok-9999.ebuild X-VCS-Directories: sci-libs/libsigrok/ X-VCS-Committer: swegener X-VCS-Committer-Name: Sven Wegener X-VCS-Revision: 5ad329bba1def4c7f1a2b83a28e3888bb197d4d1 X-VCS-Branch: master Date: Sat, 19 Dec 2015 17:14: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: 7289c2d2-f597-442f-9b16-f6256c799b35 X-Archives-Hash: ac52d798da6175234937afacbce813cc commit: 5ad329bba1def4c7f1a2b83a28e3888bb197d4d1 Author: Sven Wegener gentoo org> AuthorDate: Sun Dec 13 23:17:27 2015 +0000 Commit: Sven Wegener gentoo org> CommitDate: Sat Dec 19 16:34:41 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad329bb sci-libs/libsigrok: Use use_with for libs Signed-off-by: Sven Wegener gentoo.org> sci-libs/libsigrok/libsigrok-9999.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sci-libs/libsigrok/libsigrok-9999.ebuild b/sci-libs/libsigrok/libsigrok-9999.ebuild index b9fd1b7..b74e69e 100644 --- a/sci-libs/libsigrok/libsigrok-9999.ebuild +++ b/sci-libs/libsigrok/libsigrok-9999.ebuild @@ -41,9 +41,9 @@ src_prepare() { src_configure() { econf \ - $(use_enable ftdi libftdi) \ - $(use_enable serial libserialport) \ - $(use_enable usb libusb) \ + $(use_with ftdi libftdi) \ + $(use_with serial libserialport) \ + $(use_with usb libusb) \ $(use_enable static-libs static) }