summaryrefslogtreecommitdiff
blob: 8ecd921690889d5c2a24f528ff5f3f1caad3f01e (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
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit cmake-utils

DESCRIPTION="Application Introspection System"
HOMEPAGE="http://computation.llnl.gov/projects/caliper"
SRC_URI="https://github.com/LLNL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="
	net-misc/curl
	sys-libs/libunwind
	dev-libs/papi
	"
RDEPEND="${DEPEND}"

#thttps://github.com/LLNL/Caliper/pull/23
#thttps://github.com/LLNL/Caliper/pull/24
#thttps://github.com/LLNL/Caliper/pull/25
PATCHES=( "${FILESDIR}/${P}-cmake.patch"
	"${FILESDIR}/${P}-python2.patch"
	"${FILESDIR}/${P}-multilib.patch"
	)

S="${WORKDIR}/${P^c}"