blob: 2667603df0e836968b259db77566f850037ace0b (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools fortran-2
DESCRIPTION="Performance Application Programming Interface"
HOMEPAGE="http://icl.cs.utk.edu/papi/"
SRC_URI="http://icl.cs.utk.edu/projects/${PN}/downloads/${P}.tar.gz"
S="${WORKDIR}/${PN}-$(ver_cut 1-3)/src"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="
dev-libs/libpfm
virtual/mpi
"
RDEPEND="${DEPEND}"
src_prepare() {
default
mv configure.{in,ac} || die
eautoreconf
}
src_configure() {
local myeconfargs=(
--with-shlib
--with-perf-events
--with-pfm-prefix="${EPREFIX}/usr"
--with-pfm-libdir="${EPREFIX}/usr/$(get_libdir)"
--with-shared-lib=yes
--with-static-lib=no
)
econf "${myeconfargs[@]}"
}
src_install() {
default
dodoc ../RE*
}
|