From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QZOdK-0007iM-L8 for garchives@archives.gentoo.org; Wed, 22 Jun 2011 14:42:22 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C678A1C1C7; Wed, 22 Jun 2011 14:42:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id 9919B1C1C7 for ; Wed, 22 Jun 2011 14:42:14 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 17020641D2 for ; Wed, 22 Jun 2011 14:42:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 694668003C for ; Wed, 22 Jun 2011 14:42:13 +0000 (UTC) From: "Alexey Shvetsov" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexey Shvetsov" Message-ID: <9ccae397af9691f4aac45bafe178e736e5f5077e.alexxy@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-fs/ocfs2-tools/ X-VCS-Repository: proj/sci X-VCS-Files: sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild X-VCS-Directories: sys-fs/ocfs2-tools/ X-VCS-Committer: alexxy X-VCS-Committer-Name: Alexey Shvetsov X-VCS-Revision: 9ccae397af9691f4aac45bafe178e736e5f5077e Date: Wed, 22 Jun 2011 14:42:13 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: 031ceb8428ac938330f5225307b3201e commit: 9ccae397af9691f4aac45bafe178e736e5f5077e Author: Alexey Shvetsov gentoo org> AuthorDate: Wed Jun 22 14:41:46 2011 +0000 Commit: Alexey Shvetsov gentoo org> CommitDate: Wed Jun 22 14:41:46 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sci.git;a=3Dc= ommit;h=3D9ccae397 Update ocfs2 --- sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild | 58 +++++++++++++++++++++= ++++++ 1 files changed, 58 insertions(+), 0 deletions(-) diff --git a/sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild b/sys-fs/ocfs2-t= ools/ocfs2-tools-1.6.4.ebuild new file mode 100644 index 0000000..26aaeaf --- /dev/null +++ b/sys-fs/ocfs2-tools/ocfs2-tools-1.6.4.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=3D3 +PYTHON_DEPEND=3D"gtk? 2" +inherit python base versionator + +DESCRIPTION=3D"Support programs for the Oracle Cluster Filesystem 2" +HOMEPAGE=3D"http://oss.oracle.com/projects/ocfs2-tools/" +SRC_URI=3D"http://oss.oracle.com/projects/${PN}/dist/files/source/v$(get= _version_component_range 1-2)/${P}.tar.gz" + +LICENSE=3D"GPL-2" +SLOT=3D"0" +KEYWORDS=3D"~amd64 ~x86" +IUSE=3D"debug gtk" + +RDEPEND=3D" + sys-apps/util-linux + sys-cluster/cman-lib + || ( sys-cluster/corosync sys-cluster/openais ) + sys-fs/e2fsprogs + sys-libs/ncurses + sys-libs/readline + sys-process/psmisc + gtk? ( + dev-python/pygtk + ) +" +# 99% of deps this thing has is automagic +# specialy cluster things corosync/pacemaker +DEPEND=3D"${RDEPEND}" + +PATCHES=3D( + "${FILESDIR}/${PV}-gcc45.patch" + "${FILESDIR}/${PV}-cpg.patch" +) + +DOCS=3D( + "${S}/documentation/samples/cluster.conf" + "${S}/documentation/users_guide.txt" +) + +MAKEOPTS+=3D" -j1" + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +src_configure() { + econf \ + $(use_enable debug debug) \ + $(use_enable debug debugexe) \ + $(use_enable gtk ocfs2console) \ + --enable-dynamic-fsck \ + --enable-dynamic-ctl +}