You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-libs/libtrace/libtrace-4.0.8.ebuild

60 lines
1.1 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools
DESCRIPTION="A library and tools for trace processing"
HOMEPAGE="https://research.wand.net.nz/software/libtrace.php"
SRC_URI="https://research.wand.net.nz/software/${PN}/${P/_/-}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
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/os-headers
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
}