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 53BC7198005 for ; Mon, 18 Mar 2013 21:22:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE239E058E; Mon, 18 Mar 2013 21:22:22 +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 642C6E058E for ; Mon, 18 Mar 2013 21:22:22 +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 F0C9633D98B for ; Mon, 18 Mar 2013 21:22:20 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 920BDE4073 for ; Mon, 18 Mar 2013 21:22:19 +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: <1363641721.da7d05f6a15e1f60ca381f8b0bbabf1fc5db175f.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: da7d05f6a15e1f60ca381f8b0bbabf1fc5db175f X-VCS-Branch: master Date: Mon, 18 Mar 2013 21:22:19 +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: 4f3ede3e-24b3-43be-ae53-b7231bc5d49b X-Archives-Hash: fcbefa54f4a682b762f0fdd916818a13 commit: da7d05f6a15e1f60ca381f8b0bbabf1fc5db175f Author: Alexey Shvetsov gentoo org> AuthorDate: Mon Mar 18 21:22:01 2013 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Mon Mar 18 21:22:01 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=da7d05f6 Add gentoo style configure Package-Manager: portage-2.2.0_alpha166 RepoMan-Options: --force --- sys-cluster/lustre/ChangeLog | 3 +++ sys-cluster/lustre/lustre-9999.ebuild | 32 +++++++++++++++++++++++++++++++- 2 files changed, 34 insertions(+), 1 deletions(-) diff --git a/sys-cluster/lustre/ChangeLog b/sys-cluster/lustre/ChangeLog index eedb888..ff3d11d 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: $ + 18 Mar 2013; Alexey Shvetsov lustre-9999.ebuild: + Add gentoo style configure + 18 Mar 2013; Alexey Shvetsov +files/0007-LU-2984-build-Fix-warning-with-gcc-4.6-in-mdt_handle.patch, lustre-9999.ebuild: diff --git a/sys-cluster/lustre/lustre-9999.ebuild b/sys-cluster/lustre/lustre-9999.ebuild index 319103a..305c689 100644 --- a/sys-cluster/lustre/lustre-9999.ebuild +++ b/sys-cluster/lustre/lustre-9999.ebuild @@ -52,7 +52,37 @@ src_prepare() { sed -e 's:libzfs.so:libzfs.so.1:g' \ -e 's:libnvpair.so:libnvpair.so.1:g' \ -i lustre/utils/mount_utils_zfs.c || die - sh ./autogen.sh + + # replace upstream autogen.sh by our src_prepare() + local DIRS="build libcfs lnet lustre snmp" + local ACLOCAL_FLAGS + for dir in $DIRS ; do + ACLOCAL_FLAGS="$ACLOCAL_FLAGS -I $PWD/$dir/autoconf" + done + eaclocal $ACLOCAL_FLAGS + eautoheader + eautomake + eautoconf + # now walk in configure dirs + einfo "Reconfiguring source in libsysio" + cd libsysio + eaclocal + eautomake + eautoconf + cd .. + einfo "Reconfiguring source in lustre-iokit" + cd lustre-iokit + eaclocal + eautomake + eautoconf + cd .. + einfo "Reconfiguring source in ldiskfs" + cd ldiskfs + eaclocal -I $PWD/config + eautoheader + eautomake -W no-portability + eautoconf + cd .. } src_configure() {