blob: f31fb00d38e6e686cbf998af6b4b9fffff070f22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit eutils cuda
DESCRIPTION="Library for 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"
SRC_URI="http://wwwpub.zih.tu-dresden.de/%7Emlieber/dcount/dcount.php?package=vampirtrace&get=${P}.tar.gz"
SLOT="0"
LICENSE="vampir"
KEYWORDS="~amd64"
IUSE="cuda"
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 "${ED}"/usr/bin/otfinfo{,.vampir} || die
# libtool is already installed:
rm "${ED}"/usr/share/libtool || die
}
|