mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-08 06:09:43 +02:00
Just like in DTrace. Closes: https://bugs.gentoo.org/856493 Closes: https://bugs.gentoo.org/956760 Signed-off-by: Sam James <sam@gentoo.org>
76 lines
1.5 KiB
Bash
76 lines
1.5 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="A library and tools for trace processing"
|
|
HOMEPAGE="https://github.com/LibtraceTeam/libtrace"
|
|
SRC_URI="https://github.com/LibtraceTeam/libtrace/archive/refs/tags/${PV}-1.tar.gz -> ${P}.tar.gz"
|
|
S="${WORKDIR}"/${P}-1
|
|
|
|
LICENSE="LGPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
# doxygen is always needed for man pages, but USE=doc controls installing docs themselves
|
|
# (not man pages)
|
|
IUSE="doc ncurses numa"
|
|
|
|
RDEPEND="
|
|
dev-libs/libyaml
|
|
dev-libs/openssl:=
|
|
>=net-libs/libpcap-0.8
|
|
>=net-libs/wandio-4.0.0
|
|
ncurses? ( sys-libs/ncurses:= )
|
|
numa? ( sys-process/numactl )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
app-text/doxygen[dot]
|
|
sys-devel/flex
|
|
virtual/os-headers
|
|
virtual/pkgconfig
|
|
app-alternatives/yacc
|
|
"
|
|
|
|
QA_EXECSTACK="
|
|
usr/share/libtrace/format_linux_xdp_kern.bpf
|
|
"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
eautoreconf
|
|
|
|
# Comment out FILE_PATTERNS definition (bug #706230)
|
|
if has_version ~app-text/doxygen-1.8.16; then
|
|
sed -i -e '/^FILE_PATTERNS/s|^|#|g' docs/${PN}.doxygen.in || die
|
|
fi
|
|
|
|
# Update doxygen configuration
|
|
doxygen -u docs/libtrace.doxygen.in || die
|
|
}
|
|
|
|
src_configure() {
|
|
export LEX=flex
|
|
|
|
econf \
|
|
$(use_with ncurses) \
|
|
$(use_with numa) \
|
|
--with-man \
|
|
--without-dpdk
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
# BPF
|
|
dostrip -x /usr/share/libtrace/format_linux_xdp_kern.bpf
|
|
|
|
if use doc ; then
|
|
docinto html
|
|
dodoc -r docs/doxygen/html
|
|
fi
|
|
|
|
find "${ED}" -name "*.la" -delete || die
|
|
}
|