blob: 93b18ae464876d32e78437a28ea5ba6f1ad700c9 (
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-analyzer/tcpdump/tcpdump-4.0.1_pre20090709.ebuild,v 1.2 2010/01/01 17:46:33 fauli Exp $
EAPI="2"
inherit flag-o-matic toolchain-funcs eutils
DESCRIPTION="A Tool for network monitoring and data acquisition"
HOMEPAGE="http://www.tcpdump.org/"
MY_P=${PN}-${PV/_pre/-}
SRC_URI="mirror://gentoo/${MY_P}.tar.gz"
S=${WORKDIR}/${MY_P}
# SRC_URI="http://www.tcpdump.org/release/${P}.tar.gz
# http://www.jp.tcpdump.org/release/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
IUSE="+chroot smi ssl ipv6 -samba test"
RDEPEND="net-libs/libpcap
smi? ( net-libs/libsmi )
ssl? ( >=dev-libs/openssl-0.9.6m )"
DEPEND="${RDEPEND}
test? ( app-arch/sharutils
dev-lang/perl )"
pkg_setup() {
if use samba ; then
ewarn
ewarn "CAUTION !!! CAUTION !!! CAUTION"
ewarn
ewarn "You're about to compile tcpdump with samba printing support"
ewarn "Upstream tags it as 'possibly-buggy SMB printer'"
ewarn "So think twice whether this is fine with you"
ewarn
ewarn "CAUTION !!! CAUTION !!! CAUTION"
ewarn
ewarn "(Giving you 10 secs to think about it)"
ewarn
ebeep 5
epause 5
fi
enewgroup tcpdump
enewuser tcpdump -1 -1 -1 tcpdump
}
src_configure() {
# tcpdump needs some optymalization. see bug #108391
( ! is-flag -O? || is-flag -O0 ) && append-flags -O2
replace-flags -O[3-9] -O2
filter-flags -finline-functions
# Fix wrt bug #48747
if [[ $(gcc-major-version) -gt 3 ]] || \
[[ $(gcc-major-version) -eq 3 && $(gcc-minor-version) -ge 4 ]]
then
filter-flags -funit-at-a-time
append-flags -fno-unit-at-a-time
fi
econf --with-user=tcpdump \
$(use_with ssl crypto) \
$(use_with smi) \
$(use_enable ipv6) \
$(use_enable samba smb) \
$(use_with chroot chroot /var/lib/tcpdump)
}
src_compile() {
make CCOPT="$CFLAGS" || die "make failed"
}
src_test() {
sed '/^\(bgp_vpn_attrset\|ikev2four\|espudp1\|eapon1\)/d;' -i tests/TESTLIST
make check || die "tests failed"
}
src_install() {
dosbin tcpdump || die
doman tcpdump.1 || die
dodoc *.awk || die
dodoc CHANGES CREDITS README || die
keepdir /var/lib/tcpdump
fperms 700 /var/lib/tcpdump
fowners tcpdump:tcpdump /var/lib/tcpdump
}
|