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 462EB1381F3 for ; Wed, 17 Apr 2013 13:33:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0260FE087B; Wed, 17 Apr 2013 13:33:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9642EE087B for ; Wed, 17 Apr 2013 13:33:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9C9A533DE43 for ; Wed, 17 Apr 2013 13:33:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 38F65E4306 for ; Wed, 17 Apr 2013 13:33:14 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <1366205568.52fec902919570497bbfa3d24d078a038aafa4c6.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/lustre/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/lustre/ChangeLog sys-cluster/lustre/lustre-9999.ebuild X-VCS-Directories: sys-cluster/lustre/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 52fec902919570497bbfa3d24d078a038aafa4c6 X-VCS-Branch: master Date: Wed, 17 Apr 2013 13:33:14 +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: 2a2d56d2-8cf6-449b-9fb4-270c51e7af8e X-Archives-Hash: 22734486a2912e179de78b1f7d586920 commit: 52fec902919570497bbfa3d24d078a038aafa4c6 Author: Alexey Shvetsov gentoo org> AuthorDate: Wed Apr 17 13:32:48 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Wed Apr 17 13:32:48 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=52fec902 Fix client build Package-Manager: portage-2.2.0_alpha173 RepoMan-Options: --force --- sys-cluster/lustre/ChangeLog | 3 +++ sys-cluster/lustre/lustre-9999.ebuild | 8 ++++++-- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/sys-cluster/lustre/ChangeLog b/sys-cluster/lustre/ChangeLog index d4315a2..7ff1c93 100644 --- a/sys-cluster/lustre/ChangeLog +++ b/sys-cluster/lustre/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 17 Apr 2013; Alexey Shvetsov lustre-9999.ebuild: + Fix client build + 17 Apr 2013; Alexey Shvetsov +files/0009-LU-2850-kernel-3.8-upstream-kills-daemonize.patch, +files/0010-LU-3079-kernel-3.9-hlist_for_each_entry-uses-3-args.patch, diff --git a/sys-cluster/lustre/lustre-9999.ebuild b/sys-cluster/lustre/lustre-9999.ebuild index 6956df0..a40cd65 100644 --- a/sys-cluster/lustre/lustre-9999.ebuild +++ b/sys-cluster/lustre/lustre-9999.ebuild @@ -98,13 +98,17 @@ src_prepare() { } src_configure() { + local myconf + if use server; then + myconf+="${myconf} --with-zfs=\"${EPREFIX}/usr/src/zfs\"" + myconf+="${myconf} --with-spl=\"${EPREFIX}/usr/src/spl\"" + fi econf \ + ${myconf} \ --without-ldiskfs \ --disable-ldiskfs-build \ --with-linux="${KERNEL_DIR}" \ --with-linux-release="${KV_FULL}" \ - --with-zfs="${EPREFIX}/usr/src/zfs" \ - --with-spl="${EPREFIX}/usr/src/spl" \ $(use_enable client) \ $(use_enable utils) \ $(use_enable server) \