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 2B9C1138200 for ; Wed, 1 May 2013 20:09:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B2944E0891; Wed, 1 May 2013 20:09:40 +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 25592E088F for ; Wed, 1 May 2013 20:09:40 +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 397B633DFFF for ; Wed, 1 May 2013 20:09:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D3819E4741 for ; Wed, 1 May 2013 20:09:37 +0000 (UTC) From: "Kacper Kowalik" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kacper Kowalik" Message-ID: <1367432963.9d423fc0b72551e4597916718b5306dc6a8faf5e.xarthisius@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: dev-util/VampirTrace/ X-VCS-Repository: proj/sci X-VCS-Files: dev-util/VampirTrace/VampirTrace-5.14.3.ebuild X-VCS-Directories: dev-util/VampirTrace/ X-VCS-Committer: xarthisius X-VCS-Committer-Name: Kacper Kowalik X-VCS-Revision: 9d423fc0b72551e4597916718b5306dc6a8faf5e X-VCS-Branch: master Date: Wed, 1 May 2013 20:09:37 +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: 42fa43ae-16a1-405e-b112-c5b49b68e46f X-Archives-Hash: 69d85992504d94da109a802e24addf6e commit: 9d423fc0b72551e4597916718b5306dc6a8faf5e Author: Andreas Schäfer gmx de> AuthorDate: Wed May 1 18:29:23 2013 +0000 Commit: Kacper Kowalik gentoo org> CommitDate: Wed May 1 18:29:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=9d423fc0 refactoring CUDA interaction --- dev-util/VampirTrace/VampirTrace-5.14.3.ebuild | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-util/VampirTrace/VampirTrace-5.14.3.ebuild b/dev-util/VampirTrace/VampirTrace-5.14.3.ebuild index 4331320..b1b1eb8 100644 --- a/dev-util/VampirTrace/VampirTrace-5.14.3.ebuild +++ b/dev-util/VampirTrace/VampirTrace-5.14.3.ebuild @@ -4,9 +4,7 @@ EAPI=5 -use cuda && _CUDA_CLASS=cuda - -inherit eutils ${_CUDA_CLASS} +inherit eutils DESCRIPTION="An open source library that allows detailed logging of program execution for parallel applications" HOMEPAGE="http://www.tu-dresden.de/die_tu_dresden/zentrale_einrichtungen/zih/forschung/software_werkzeuge_zur_unterstuetzung_von_programmierung_und_optimierung/vampirtrace" @@ -21,6 +19,10 @@ 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) }