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 91546138CA3 for ; Fri, 6 Mar 2015 18:51:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79BC9E096A; Fri, 6 Mar 2015 18:51:31 +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 E99E4E095D for ; Fri, 6 Mar 2015 18:51:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A69D5340862 for ; Fri, 6 Mar 2015 18:51:29 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D799132EA for ; Fri, 6 Mar 2015 18:51:28 +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: <1425665738.3e1fb117de51abc3dc7e383d512646acca9e45ac.ottxor@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-util/VampirTrace/ X-VCS-Repository: proj/sci X-VCS-Files: dev-util/VampirTrace/ChangeLog dev-util/VampirTrace/VampirTrace-5.14.4.ebuild X-VCS-Directories: dev-util/VampirTrace/ X-VCS-Committer: ottxor X-VCS-Committer-Name: Christoph Junghans X-VCS-Revision: 3e1fb117de51abc3dc7e383d512646acca9e45ac X-VCS-Branch: master Date: Fri, 6 Mar 2015 18:51: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: 29dd156c-b1ca-495c-9577-acb1f1be6933 X-Archives-Hash: 9dc2dc46f7bf32bcfde3a35d8fef799d commit: 3e1fb117de51abc3dc7e383d512646acca9e45ac Author: Marius Brehler linux sungazer de> AuthorDate: Wed Mar 4 09:25:20 2015 +0000 Commit: Christoph Junghans gentoo org> CommitDate: Fri Mar 6 18:15:38 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3e1fb117 dev-util/VampirTrace: Version bump Package-Manager: portage-2.2.14 dev-util/VampirTrace/ChangeLog | 9 ++++++ dev-util/VampirTrace/VampirTrace-5.14.4.ebuild | 44 ++++++++++++++++++++++++++ 2 files changed, 53 insertions(+) diff --git a/dev-util/VampirTrace/ChangeLog b/dev-util/VampirTrace/ChangeLog new file mode 100644 index 0000000..e2713a4 --- /dev/null +++ b/dev-util/VampirTrace/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for dev-util/VampirTrace +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: $ + +*VampirTrace-5.14.4 (04 Mar 2015) + + 04 Mar 2015; Marius Brehler + +VampirTrace-5.14.4.ebuild: + Version bump diff --git a/dev-util/VampirTrace/VampirTrace-5.14.4.ebuild b/dev-util/VampirTrace/VampirTrace-5.14.4.ebuild new file mode 100644 index 0000000..5ff44d1 --- /dev/null +++ b/dev-util/VampirTrace/VampirTrace-5.14.4.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit eutils cuda + +MY_PV="${PV}-gpu2" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="An open source library that allows detailed logging of program execution for parallel applications" +HOMEPAGE="http://tu-dresden.de/die_tu_dresden/zentrale_einrichtungen/zih/forschung/projekte/vampirtrace/accelerator" +SRC_URI="http://wwwpub.zih.tu-dresden.de/~mlieber/dcount/dcount.php?package=gputrace&get=${MY_P}.tar.gz" + +SLOT="0" +LICENSE="vampir" +KEYWORDS="~amd64" +IUSE="cuda" + +S="${WORKDIR}/${MY_P}" + +DEPEND=" + virtual/mpi + cuda? ( >=dev-util/nvidia-cuda-toolkit-4.0.0 )" + +src_prepare() { + use cuda && cuda_src_prepare +} + +src_configure() { + econf $(use_with cuda cuda-dir "${EPREFIX}"/opt/cuda) +} + +src_install() { + default + # avoid collisions with app-text/lcdf-typetools: + mv "${D}/usr/bin/otfinfo" "${D}/usr/bin/otfinfo.vampir" || die + if [ -e "${D}/usr/lib/debug/usr/bin/otfinfo.debug" ]; then + mv "${D}/usr/lib/debug/usr/bin/otfinfo.debug" "${D}/usr/lib/debug/usr/bin/otfinfo.vampir.debug" || die + fi + # libtool is already installed: + rm "${D}/usr/share/libtool" || die +}