From: Jeroen Roovers Date: Sat, 19 Jan 2019 11:37:23 +0000 (+0100) Subject: net-libs/libtrace: Add live ebuild X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2a341148b37dc9ed9d57b12e728d220632fd32e4;p=gentoo.git net-libs/libtrace: Add live ebuild Package-Manager: Portage-2.3.56, Repoman-2.3.12 Signed-off-by: Jeroen Roovers --- diff --git a/net-libs/libtrace/libtrace-99999.ebuild b/net-libs/libtrace/libtrace-99999.ebuild new file mode 100644 index 000000000000..c4061e17a7b9 --- /dev/null +++ b/net-libs/libtrace/libtrace-99999.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit autotools git-r3 + +DESCRIPTION="A library and tools for trace processing" +HOMEPAGE="https://research.wand.net.nz/software/libtrace.php" +EGIT_REPO_URI="https://github.com/LibtraceTeam/libtrace" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="" +IUSE="doc ncurses numa static-libs" + +RDEPEND=" + >=net-libs/libpcap-0.8 + dev-libs/openssl:0= + ncurses? ( sys-libs/ncurses:0= ) + net-libs/wandio + numa? ( sys-process/numactl ) +" +DEPEND=" + ${RDEPEND} + app-doc/doxygen + sys-devel/flex + virtual/pkgconfig + virtual/yacc +" +PATCHES=( + "${FILESDIR}"/${PN}-3.0.20-autoconf-1.13.patch + "${FILESDIR}"/${PN}-3.0.20-tinfo.patch + "${FILESDIR}"/${PN}-4.0.0-no-examples.patch + "${FILESDIR}"/${PN}-4.0.0-with-numa.patch +) +S=${WORKDIR}/${P/_beta/} + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_with ncurses) \ + $(use_with numa) \ + --with-man +} + +src_install() { + default + + use doc && dodoc -r docs/doxygen/html + + find "${D}" -name "*.la" -delete || die +}