blob: 61d921299dbb0f913363ae05884c91194fcc3676 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit multilib cmake-utils python-single-r1
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
LICENSE="GPL-2" # only
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug"
RDEPEND="${PYTHON_DEPS}
>=dev-libs/elfutils-0.131
sys-libs/zlib"
DEPEND="${RDEPEND}"
if [[ ${PV//_p} == ${PV} ]]; then
SRC_URI="http://fedorapeople.org/~acme/dwarves/${P}.tar.bz2"
S=${WORKDIR}
else
SRC_URI="https://dev.gentoo.org/~flameeyes/${PN}/${P}.tar.xz"
fi
DOCS=( README README.ctracer NEWS )
PATCHES=( "${FILESDIR}"/${PN}-1.10-python-import.patch )
src_configure() {
local mycmakeargs=( "-D__LIB=$(get_libdir)" )
cmake-utils_src_configure
}
src_test() { :; }
src_install() {
cmake-utils_src_install
python_fix_shebang "${D}"/usr/bin/ostra-cg \
"${D}"/usr/share/dwarves/runtime/python/ostra.py
}
|