blob: e817ea8508487c13d036d7b5619b89ac057bff0c (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
|
# Copyright 2019-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( pypy3 python3_{10..11} )
inherit python-single-r1 toolchain-funcs
DESCRIPTION="highly scalable, memory efficient event trace data format"
HOMEPAGE="https://www.vi-hps.org/projects/score-p"
SRC_URI="https://perftools.pages.jsc.fz-juelich.de/cicd/otf2/tags/${P}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0/2.3"
KEYWORDS="~amd64"
IUSE="debug sionlib test"
RDEPEND="
${PYTHON_DEPS}
$(python_gen_cond_dep 'dev-python/six[${PYTHON_USEDEP}]')
sionlib? ( sys-cluster/sionlibl:= )
"
DEPEND="${RDEPEND}"
#RESTRICT="!test? ( test )"
RESTRICT="test" #tests are failing
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
PATCHES=( "${FILESDIR}/${P}-respect-flags.patch" )
src_configure() {
tc-export CC CXX FC F77 CPP
rm build-config/common/platforms/platform-* || die
cat > build-config/common/platforms/platform-backend-user-provided <<-EOF || die
CC=${CC}
CXX=${CXX}
FC=${FC}
F77=${F77}
CPP=${CPP}
CXXCPP=${CPP}
EOF
cat > build-config/common/platforms/platform-frontend-user-provided <<-EOF || die
CC_FOR_BUILD=${CC}
F77_FOR_BUILD=${F77}
FC_FOR_BUILD=${FC}
CXX_FOR_BUILD=${CXX}
LDFLAGS_FOR_BUILD=${LDFLAGS}
CFLAGS_FOR_BUILD=${CFLAGS}
CXXFLAGS_FOR_BUILD=${CXXFLAGS}
CPPFLAGS_FOR_BUILD=${CPPFLAGS}
FCFLAGS_FOR_BUILD=${FCFLAGS}
FFLAGS_FOR_BUILD=${FFLAGS}
EOF
cat > build-config/common/platforms/platform-mpi-user-provided <<-EOF || die
MPICC=mpicc
MPICXX=mpicxx
MPIF77=mpif77
MPIFC=mpif90
MPI_CPPFLAGS=${CPPFLAGS}
MPI_CFLAGS=${CFLAGS}
MPI_CXXFLAGS=${CXXFLAGS}
MPI_FFLAGS=${FFLAGS}
MPI_FCFLAGS=${FCFLAGS}
MPI_LDFLAGS=${LDFLAGS}
EOF
local myconf=(
--disable-platform-mic
--disable-static
--enable-shared
--with-custom-compilers
$(use_enable test backend-test-runs)
$(use_enable debug)
)
if use sionlib; then
myconf+=( "--with-sionlib=${EPREFIX}/usr" )
myconf+=( "--with-sionlib-headers=${EPREFIX}/usr/include/sionlibl" )
else
myconf+=( "--without-sionlib" )
fi
econf "${myconf[@]}"
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
}
|