diff options
author | Sam James <sam@gentoo.org> | 2022-02-08 05:30:07 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-02-08 05:42:19 +0000 |
commit | 2ded35bffa1a01d8bc96328701814aa8566d9507 (patch) | |
tree | 7d6100a51f427099c7e8baf8b8b09163311d2842 /net-libs/libtrace/libtrace-4.0.18_p1.ebuild | |
parent | gnome-base/gnome: Stabilize 40.0 arm64, #831946 (diff) | |
download | gentoo-2ded35bffa1a01d8bc96328701814aa8566d9507.tar.gz gentoo-2ded35bffa1a01d8bc96328701814aa8566d9507.tar.bz2 gentoo-2ded35bffa1a01d8bc96328701814aa8566d9507.zip |
net-libs/libtrace: add 4.0.18_p1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-libs/libtrace/libtrace-4.0.18_p1.ebuild')
-rw-r--r-- | net-libs/libtrace/libtrace-4.0.18_p1.ebuild | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/net-libs/libtrace/libtrace-4.0.18_p1.ebuild b/net-libs/libtrace/libtrace-4.0.18_p1.ebuild new file mode 100644 index 000000000000..b43bb405d524 --- /dev/null +++ b/net-libs/libtrace/libtrace-4.0.18_p1.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2022 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://research.wand.net.nz/software/libtrace.php" +SRC_URI="https://github.com/${PN^}Team/${PN}/archive//${PV/_p/-}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${P/_p/-}" + +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=">=net-libs/libpcap-0.8 + dev-libs/libyaml + dev-libs/openssl:= + net-libs/wandio + ncurses? ( sys-libs/ncurses:= ) + numa? ( sys-process/numactl )" +DEPEND="${RDEPEND}" +BDEPEND="app-doc/doxygen[dot] + sys-devel/flex + virtual/os-headers + virtual/pkgconfig + virtual/yacc" + +PATCHES=( + "${FILESDIR}"/${PN}-4.0.18_p1-build-system.patch +) + +src_prepare() { + default + + mv configure.{in,ac} || die + + eautoreconf + + # Comment out FILE_PATTERNS definition (bug #706230) + if has_version ~app-doc/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() { + econf \ + $(use_with ncurses) \ + $(use_with numa) \ + --with-man \ + --without-dpdk +} + +src_install() { + default + + if use doc ; then + docinto html + dodoc -r docs/doxygen/html + fi + + find "${ED}" -name "*.la" -delete || die +} |