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 0BC3113881E for ; Mon, 28 Sep 2015 16:04:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 161D8E086D; Mon, 28 Sep 2015 16:04:32 +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 B7DE3E086D for ; Mon, 28 Sep 2015 16:04:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 80A0D340976 for ; Mon, 28 Sep 2015 16:04:30 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F3F1C126 for ; Mon, 28 Sep 2015 16:04:28 +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: <1443456256.0a2c72596b4e8d72e9768c1f7c8565c77dd44528.vapier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/fio/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/fio/fio-2.2.9.ebuild X-VCS-Directories: sys-block/fio/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 0a2c72596b4e8d72e9768c1f7c8565c77dd44528 X-VCS-Branch: master Date: Mon, 28 Sep 2015 16:04:28 +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: 9e6a3ef2-2170-417b-9a9a-8ea2169e6f43 X-Archives-Hash: 8475060fee41b3639d7c2d99083ca742 commit: 0a2c72596b4e8d72e9768c1f7c8565c77dd44528 Author: Gwendal Grignou chromium org> AuthorDate: Mon Sep 28 16:04:16 2015 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Mon Sep 28 16:04:16 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a2c7259 sys-block/fio: add USE=static support sys-block/fio/fio-2.2.9.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys-block/fio/fio-2.2.9.ebuild b/sys-block/fio/fio-2.2.9.ebuild index 8e1c41a..a98ae8c 100644 --- a/sys-block/fio/fio-2.2.9.ebuild +++ b/sys-block/fio/fio-2.2.9.ebuild @@ -16,7 +16,7 @@ SRC_URI="http://brick.kernel.dk/snaps/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86" -IUSE="aio glusterfs gnuplot gtk numa rbd rdma zlib" +IUSE="aio glusterfs gnuplot gtk numa rbd rdma static zlib" DEPEND="aio? ( dev-libs/libaio ) glusterfs? ( !arm? ( sys-cluster/glusterfs ) ) @@ -58,6 +58,7 @@ src_configure() { $(usex gtk '--enable-gfio' '') \ $(usex numa '' '--disable-numa') \ $(usex rbd '' '--disable-rbd') \ + $(usex static '' '--build-static') \ || die 'configure failed' }