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 A1C4D1381F3 for ; Fri, 18 Oct 2013 16:19:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 46D4DE0B29; Fri, 18 Oct 2013 16:19:18 +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 D64ACE0AF4 for ; Fri, 18 Oct 2013 16:19:17 +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 EEB5433DA7B for ; Fri, 18 Oct 2013 16:19:16 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id A75C9E545D for ; Fri, 18 Oct 2013 16:19:15 +0000 (UTC) From: "Christoph Junghans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Christoph Junghans" Message-ID: <1381264391.b194655f48fac3a35acc301ccb11f49a54932f30.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/p4est/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/p4est/metadata.xml sci-libs/p4est/p4est-0.3.4.1.ebuild sci-libs/p4est/p4est-0.3.4.2.ebuild X-VCS-Directories: sci-libs/p4est/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: b194655f48fac3a35acc301ccb11f49a54932f30 X-VCS-Branch: master Date: Fri, 18 Oct 2013 16:19:15 +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: 2a312970-827c-4c79-9570-319dc723f82e X-Archives-Hash: a3f73734087f52e9168cf5bd814ffe81 commit: b194655f48fac3a35acc301ccb11f49a54932f30 Author: layman localhost> AuthorDate: Tue Oct 8 20:31:42 2013 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Tue Oct 8 20:33:11 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=b194655f Bump p4est to version 0.3.4.2 This commit bumps p4est to version 0.3.4.2. Also add a use flag "vtk-binary" to toggle the output format for vtk files. --- sci-libs/p4est/metadata.xml | 3 +++ sci-libs/p4est/{p4est-0.3.4.1.ebuild => p4est-0.3.4.2.ebuild} | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/sci-libs/p4est/metadata.xml b/sci-libs/p4est/metadata.xml index 592c6fc..59e8e1d 100644 --- a/sci-libs/p4est/metadata.xml +++ b/sci-libs/p4est/metadata.xml @@ -12,4 +12,7 @@ designed to work in parallel and scale to hundreds of thousands of processor cores. + + Enable binary vtk output. If disabled vtk files will be written in ASCII text format. + diff --git a/sci-libs/p4est/p4est-0.3.4.1.ebuild b/sci-libs/p4est/p4est-0.3.4.2.ebuild similarity index 89% rename from sci-libs/p4est/p4est-0.3.4.1.ebuild rename to sci-libs/p4est/p4est-0.3.4.2.ebuild index 9df1e73..9db1430 100644 --- a/sci-libs/p4est/p4est-0.3.4.1.ebuild +++ b/sci-libs/p4est/p4est-0.3.4.2.ebuild @@ -10,20 +10,19 @@ inherit autotools-utils toolchain-funcs eutils multilib DESCRIPTION="Scalable Algorithms for Parallel Adaptive Mesh Refinement on Forests of Octrees" HOMEPAGE="http://www.p4est.org/" -SRC_URI="http://burstedde.ins.uni-bonn.de/release/p4est-${PV}.tar.gz" +SRC_URI="http://p4est.org/tarball/p4est-${PV}.tar.gz" KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" LICENSE="GPL-2+" SLOT="0" -IUSE="debug doc examples mpi romio static-libs" +IUSE="debug doc examples mpi romio static-libs +vtk-binary" REQUIRED_USE="romio? ( mpi )" RDEPEND=" dev-lang/lua sys-apps/util-linux - sys-libs/zlib virtual/blas virtual/lapack mpi? ( virtual/mpi[romio?] )" @@ -35,6 +34,8 @@ DEPEND=" DOCS=(AUTHORS ChangeLog NEWS README) PATCHES=( "${FILESDIR}/${PN}-libtool-fix.patch" ) + +AT_M4DIR="${WORKDIR}/${P}/sc/config" AUTOTOOLS_AUTORECONF=true src_configure() { @@ -42,6 +43,7 @@ src_configure() { $(use_enable debug) $(use_enable mpi) $(use_enable romio mpiio) + $(use_enable vtk-binary) --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" --with-lapack="$($(tc-getPKG_CONFIG) --libs lapack)" )