blob: ce2ca5f1ad98e16a733e03dd2009dced98f81253 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/perf/perf-2.6.33_rc5.ebuild,v 1.2 2010/01/23 17:22:22 flameeyes Exp $
EAPI=2
inherit versionator eutils toolchain-funcs linux-info
MY_PV="${PV/_/-}"
MY_PV="${MY_PV/-pre/-git}"
DESCRIPTION="Userland tools for Linux Performance Counters"
HOMEPAGE="http://perf.wiki.kernel.org/"
LINUX_V=$(get_version_component_range 1-2)
if [ ${PV/_rc} != ${PV} ]; then
LINUX_VER=$(get_version_component_range 1-2).$(($(get_version_component_range 3)-1))
PATCH_VERSION=$(get_version_component_range 1-3)
LINUX_PATCH=patch-${PV//_/-}.bz2
SRC_URI="mirror://kernel/linux/kernel/v${LINUX_V}/testing/${LINUX_PATCH}
mirror://kernel/linux/kernel/v${LINUX_V}/testing/v${PATCH_VERSION}/${LINUX_PATCH}"
else
LINUX_VER=${PV}
fi
LINUX_SOURCES=linux-${LINUX_VER}.tar.bz2
SRC_URI="${SRC_URI} mirror://kernel/linux/kernel/v${LINUX_V}/${LINUX_SOURCES}"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+demangle +doc"
RDEPEND="demangle? ( sys-devel/binutils )
dev-libs/elfutils"
DEPEND="${RDEPEND}
${LINUX_PATCH+dev-util/patchutils}
doc? ( app-text/asciidoc app-text/xmlto )"
S="${WORKDIR}/linux-${LINUX_VER}/tools/perf"
CONFIG_CHECK="~PERF_EVENTS ~KALLSYMS"
src_unpack() {
local _tarpattern=
local _filterdiff=
for _pattern in {tools/perf,include,lib,"arch/*/include"}; do
_tarpattern="${_tarpattern} linux-${LINUX_VER}/${_pattern}"
_filterdiff="${_filterdiff} -i ${_pattern}/*"
done
# We expect the tar implementation to support the -j option (both
# GNU tar and libarchive's tar support that).
ebegin "Unpacking partial source tarball"
tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} ${_tarpattern}
eend $? || die "tar failed"
ebegin "Filtering partial source patch"
filterdiff ${_filterdiff} -z "${DISTDIR}"/${LINUX_PATCH} > ${P}.patch || die
eend $? || die "filterdiff failed"
MY_A=
for _AFILE in ${A}; do
[[ ${_AFILE} == ${LINUX_SOURCES} ]] && continue
[[ ${_AFILE} == ${LINUX_PATCH} ]] && continue
MY_A="${MY_A} ${_AFILE}"
done
[[ -n ${MY_A} ]] && unpack ${MY_A}
}
src_prepare() {
# Drop some upstream too-developer-oriented flags and fix the
# Makefile in general
sed -i \
-e 's:-Werror::' \
-e 's:-ggdb3::' \
-e 's:-fstack-protector-all::' \
-e 's:^LDFLAGS =:EXTLIBS +=:' \
-e '/-x c - /s:\$(ALL_LDFLAGS):\0 $(EXTLIBS):' \
-e '/^ALL_CFLAGS =/s:$: $(CFLAGS_OPTIMIZE):' \
-e '/^ALL_LDFLAGS =/s:$: $(LDFLAGS_OPTIMIZE):' \
"${S}"/Makefile
if [[ -n ${LINUX_PATCH} ]]; then
epatch "${WORKDIR}"/${P}.patch
fi
}
src_compile() {
local makeargs=
use demangle || makeargs="${makeargs} NO_DEMANGLE= "
emake ${makeargs} \
CC="$(tc-getCC)" AR="$(tc-getAR)" \
prefix="/usr" bindir_relative="sbin" \
CFLAGS_OPTIMIZE="${CFLAGS}" \
LDFLAGS_OPTIMIZE="${LDFLAGS}" || die
if use doc; then
pushd Documentation
emake ${makeargs} || die
popd
fi
}
src_test() {
:
}
src_install() {
# Don't use make install or it'll be re-building the stuff :(
dobin perf || die
dodoc CREDITS || die
if use doc; then
dodoc Documentation/*.txt || die
dohtml Documentation/*.html || die
doman Documentation/*.1 || die
fi
}
pkg_postinst() {
if ! use doc; then
elog "Without the doc USE flag you won't get any documentation nor man pages."
elog "And without man pages, you won't get any --help output for perf and its"
elog "sub-tools."
fi
}
|