blob: e5a02ff37b524bc7dde61c67e4a0238b7d17b0fd (
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
|
# Copyright 2019-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Linux kernel trace file system library"
HOMEPAGE="https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/"
if [[ ${PV} =~ [9]{4,} ]]; then
EGIT_REPO_URI="git://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/"
inherit git-r3
else
SRC_URI="https://git.kernel.org/pub/scm/libs/libtrace/libtracefs.git/snapshot/${P}.tar.gz"
KEYWORDS="amd64 ~arm64 ~x86"
fi
LICENSE="LGPL-2.1"
SLOT="0"
IUSE="doc"
RDEPEND="
!<dev-util/trace-cmd-3.1.4-r2
>=dev-libs/libtraceevent-1.3.0
"
DEPEND="${RDEPEND}"
# source-highlight is needed, see bug https://bugs.gentoo.org/865469
BDEPEND="
virtual/pkgconfig
doc? ( app-text/xmlto app-text/asciidoc dev-util/source-highlight )
"
src_configure() {
EMAKE_FLAGS=(
"prefix=${EPREFIX}/usr"
"libdir=${EPREFIX}/usr/$(get_libdir)"
"CC=$(tc-getCC)"
"AR=$(tc-getAR)"
VERBOSE=1
)
}
src_compile() {
emake "${EMAKE_FLAGS[@]}"
use doc && emake doc
}
src_install() {
emake "${EMAKE_FLAGS[@]}" DESTDIR="${ED}" install
# can't prevent installation of the static lib with parameters
rm "${ED}/usr/$(get_libdir)/libtracefs.a" || die
# install-doc is wrong target, see https://bugs.gentoo.org/865465
use doc && emake "${EMAKE_FLAGS[@]}" DESTDIR="${ED}" install_doc
}
|