blob: b9e9db7b2516116e9fd6dea09f3af7cd4342bf6e (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools fortran-2 toolchain-funcs
DESCRIPTION="Performance Application Programming Interface"
HOMEPAGE="https://icl.cs.utk.edu/papi/"
SRC_URI="https://icl.cs.utk.edu/projects/${PN}/downloads/${P}.tar.gz"
S="${WORKDIR}/${P}/src"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-libs/libpfm[static-libs]
virtual/mpi
"
RDEPEND="${DEPEND}"
PATCHES=(
"${FILESDIR}"/${PN}-6.0.0.1-configure-clang16.patch
"${FILESDIR}"/${PN}-6.0.0.1-configure-c99.patch
)
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
tc-export AR
# TODO: Could try adding
# --with-static-user-events=no
# --with-static-papi-events=no
# --with-static-lib=no
# --with-static-tools=no
# but this requires fixing the homebrew configure logic for
# little gain
local myeconfargs=(
--with-perf-events
--with-pfm-prefix="${EPREFIX}/usr"
--with-pfm-libdir="${EPREFIX}/usr/$(get_libdir)"
)
CONFIG_SHELL="${EPREFIX}/bin/bash" econf "${myeconfargs[@]}"
}
src_install() {
default
dodoc ../RE*
find "${ED}" -name '*.a' -delete || die
find "${ED}" -name '*.la' -delete || die
}
|