blob: 7c5b7adc0f1d1479b7520af3ed72553f3a8df85a (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/libtrace/libtrace-3.0.14.ebuild,v 1.1 2012/09/03 22:22:03 radhermit Exp $
EAPI=4
inherit eutils autotools
DESCRIPTION="A library and tools for trace processing"
HOMEPAGE="http://research.wand.net.nz/software/libtrace.php"
SRC_URI="http://research.wand.net.nz/software/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="bzip2 doc lzo ncurses static-libs zlib"
RDEPEND=">=net-libs/libpcap-0.8
ncurses? ( sys-libs/ncurses )
bzip2? ( app-arch/bzip2 )
zlib? ( sys-libs/zlib )
lzo? ( dev-libs/lzo )"
DEPEND="${RDEPEND}
sys-devel/flex
virtual/yacc"
src_prepare() {
epatch "${FILESDIR}"/${P}-no-doxygen.patch
# don't build examples
sed -i "/^SUBDIRS/s/examples//" Makefile.am || die
eautoreconf
}
src_configure() {
econf \
--with-man \
$(use_enable static-libs static) \
$(use_with ncurses) \
$(use_with bzip2) \
$(use_with zlib) \
$(use_with lzo)
}
src_install() {
default
use doc && dohtml docs/doxygen/html/*
use static-libs || find "${ED}" -name "*.la" -delete
}
|