Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/tcpdump/
Date: Tue, 26 Jul 2016 13:46:43
Message-Id: 1469540781.5473cda682a269505079f1e131cdad28569b11f0.jer@gentoo
1 commit: 5473cda682a269505079f1e131cdad28569b11f0
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jul 26 13:34:33 2016 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Tue Jul 26 13:46:21 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5473cda6
7
8 net-analyzer/tcpdump: Version bump.
9
10 Package-Manager: portage-2.3.0
11
12 net-analyzer/tcpdump/Manifest | 1 +
13 net-analyzer/tcpdump/tcpdump-4.8.0.ebuild | 98 +++++++++++++++++++++++++++++++
14 2 files changed, 99 insertions(+)
15
16 diff --git a/net-analyzer/tcpdump/Manifest b/net-analyzer/tcpdump/Manifest
17 index dd68403..d3b9358 100644
18 --- a/net-analyzer/tcpdump/Manifest
19 +++ b/net-analyzer/tcpdump/Manifest
20 @@ -1 +1,2 @@
21 DIST tcpdump-4.7.4.tar.gz 1153657 SHA256 6be520269a89036f99c0b2126713a60965953eab921002b07608ccfc0c47d9af SHA512 5660d82abdf7327c3e1717db519b2c98cd217fff17440019f3ccf166b3cb28ab1c1850b7c42f8c6ee38110838bb8a4a10cd394f25123783bb3d58e1f350ef326 WHIRLPOOL 7c320adf64bf5ff57af7f98fec9919ba3c07056fbbbe1c8a87ac73ecb767ce245c4963e69e24ff71704be7b42dc604992f261173a34b12a87cd0eab153762816
22 +DIST tcpdump-4.8.0.tar.gz 1149698 SHA256 6d80fe345d0f5ee42fd273bfafe076231ad700c2daaf56805d17dc8159a6d1a7 SHA512 c35b26bd170706116a5274846f967893c2d6f1f67082c0aa264d0811b6bdd2d7bd9dcde3f725179b0916c0160088bc87298af061179d2f1ca47a0f3e2cd870ab WHIRLPOOL 43129349417cb68b2076efb2d01683f122d998d98e625e39edc25c336d06fc714ccb06beb85e8ce4bcbe12f185cff9865c27583e242420dd3b44b7b26dd3ca90
23
24 diff --git a/net-analyzer/tcpdump/tcpdump-4.8.0.ebuild b/net-analyzer/tcpdump/tcpdump-4.8.0.ebuild
25 new file mode 100644
26 index 0000000..94f6eab
27 --- /dev/null
28 +++ b/net-analyzer/tcpdump/tcpdump-4.8.0.ebuild
29 @@ -0,0 +1,98 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=6
35 +inherit flag-o-matic toolchain-funcs user
36 +
37 +DESCRIPTION="A Tool for network monitoring and data acquisition"
38 +HOMEPAGE="http://www.tcpdump.org/"
39 +SRC_URI="
40 + https://github.com/the-${PN}-group/${PN}/archive/${P}.tar.gz
41 +"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
46 +IUSE="+drop-root libressl smi ssl samba suid test"
47 +
48 +RDEPEND="
49 + drop-root? ( sys-libs/libcap-ng )
50 + net-libs/libpcap
51 + smi? ( net-libs/libsmi )
52 + ssl? (
53 + !libressl? ( >=dev-libs/openssl-0.9.6m:0 )
54 + libressl? ( dev-libs/libressl )
55 + )
56 +"
57 +DEPEND="
58 + ${RDEPEND}
59 + drop-root? ( virtual/pkgconfig )
60 + test? (
61 + || ( app-arch/sharutils sys-freebsd/freebsd-ubin )
62 + dev-lang/perl
63 + )
64 +"
65 +
66 +S=${WORKDIR}/${PN}-${P}
67 +
68 +pkg_setup() {
69 + if use drop-root || use suid; then
70 + enewgroup tcpdump
71 + enewuser tcpdump -1 -1 -1 tcpdump
72 + fi
73 +}
74 +
75 +src_configure() {
76 + # tcpdump needs some optimization. see bug #108391
77 + # but do not replace -Os
78 + filter-flags -O[0-9]
79 + has -O? ${CFLAGS} || append-cflags -O2
80 +
81 + filter-flags -finline-functions
82 +
83 + if use drop-root; then
84 + append-cppflags -DHAVE_CAP_NG_H
85 + export LIBS=$( $(tc-getPKG_CONFIG) --libs libcap-ng )
86 + fi
87 +
88 + econf \
89 + $(use_enable samba smb) \
90 + $(use_with drop-root chroot '') \
91 + $(use_with smi) \
92 + $(use_with ssl crypto "${EPREFIX}/usr") \
93 + $(usex drop-root "--with-user=tcpdump" "")
94 +}
95 +
96 +src_test() {
97 + if [[ ${EUID} -ne 0 ]] || ! use drop-root; then
98 + sed -i -e '/^\(espudp1\|eapon1\)/d;' tests/TESTLIST || die
99 + emake check
100 + else
101 + ewarn "If you want to run the test suite, make sure you either"
102 + ewarn "set FEATURES=userpriv or set USE=-drop-root"
103 + fi
104 +}
105 +
106 +src_install() {
107 + dosbin tcpdump
108 + doman tcpdump.1
109 + dodoc *.awk
110 + dodoc CHANGES CREDITS README.md
111 +
112 + if use suid; then
113 + fowners root:tcpdump /usr/sbin/tcpdump
114 + fperms 4110 /usr/sbin/tcpdump
115 + fi
116 +}
117 +
118 +pkg_preinst() {
119 + if use drop-root || use suid; then
120 + enewgroup tcpdump
121 + enewuser tcpdump -1 -1 -1 tcpdump
122 + fi
123 +}
124 +
125 +pkg_postinst() {
126 + use suid && elog "To let normal users run tcpdump add them into tcpdump group."
127 +}