Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 732924 | Differences between
and this patch

Collapse All | Expand All

(-)a/dev-util/dwarves/dwarves-1.17.ebuild (-6 / +4 lines)
Lines 1-10 Link Here
1
# Copyright 1999-2020 Gentoo Authors
1
# Copyright 1999-2020 Gentoo Authors
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
3
4
EAPI=6
4
EAPI=7
5
5
6
PYTHON_COMPAT=( python3_{6,7,8} )
6
PYTHON_COMPAT=( python3_{6,7,8} )
7
inherit multilib cmake-utils python-single-r1
7
inherit cmake python-single-r1
8
8
9
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
9
DESCRIPTION="pahole (Poke-a-Hole) and other DWARF2 utilities"
10
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
10
HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/"
Lines 12-18 HOMEPAGE="https://git.kernel.org/cgit/devel/pahole/pahole.git/" Link Here
12
LICENSE="GPL-2" # only
12
LICENSE="GPL-2" # only
13
SLOT="0"
13
SLOT="0"
14
KEYWORDS="amd64 ~ppc64 x86"
14
KEYWORDS="amd64 ~ppc64 x86"
15
IUSE="debug"
16
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
15
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
17
16
18
RDEPEND="${PYTHON_DEPS}
17
RDEPEND="${PYTHON_DEPS}
Lines 34-44 PATCHES=( Link Here
34
33
35
src_configure() {
34
src_configure() {
36
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
35
	local mycmakeargs=( "-D__LIB=$(get_libdir)" )
37
	cmake-utils_src_configure
36
	cmake_src_configure
38
}
37
}
39
38
40
src_test() { :; }
39
src_test() { :; }
41
40
42
src_install() {
41
src_install() {
43
	cmake-utils_src_install
42
	cmake_src_install
44
}
43
}
45
- 

Return to bug 732924