Gentoo Archives: gentoo-commits

From: "Richard Farina (zerochaos)" <zerochaos@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/wireshark: metadata.xml wireshark-1.8.0.ebuild ChangeLog
Date: Mon, 09 Jul 2012 19:39:32
Message-Id: 20120709193921.C3BB320063@flycatcher.gentoo.org
1 zerochaos 12/07/09 19:39:21
2
3 Modified: metadata.xml wireshark-1.8.0.ebuild ChangeLog
4 Log:
5 add in support for third-party-plugins, starting with btbb
6
7 (Portage version: 2.1.11.5/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.7 net-analyzer/wireshark/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/metadata.xml?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/metadata.xml?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/metadata.xml?r1=1.6&r2=1.7
15
16 Index: metadata.xml
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/metadata.xml,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- metadata.xml 14 Jun 2010 14:47:34 -0000 1.6
23 +++ metadata.xml 9 Jul 2012 19:39:21 -0000 1.7
24 @@ -6,6 +6,11 @@
25 <email>pva@g.o</email>
26 <name>Peter Volkov</name>
27 </maintainer>
28 +<maintainer>
29 + <email>zerochaos@g.o</email>
30 + <name>Rick Farina</name>
31 + <description>Excessive wireshark user and enthusiast</description>
32 +</maintainer>
33 <longdescription>
34 Wireshark is the world's foremost network protocol analyzer, and is the de
35 facto (and often de jure) standard across many industries and educational
36 @@ -30,9 +35,11 @@
37 </longdescription>
38 <use>
39 <flag name='ares'>Use GNU <pkg>net-dns/c-ares</pkg> library to resolve DNS names</flag>
40 +<flag name='btbb'>Use <pkg>net-libs/libbtbb</pkg> (and appropriate hardware) to sniff bluetooth baseband</flag>
41 <flag name='doc-pdf'>Build documentation in pdf format (US and a4 paper sizes)</flag>
42 <flag name='gcrypt'>Use GNU crypto library (<pkg>dev-libs/libgcrypt</pkg>) to decrypt ipsec traffic</flag>
43 <flag name='pcap'>Use <pkg>net-libs/libpcap</pkg> for network packet capturing (build dumpcap, rawshark)</flag>
44 <flag name='smi'>Use <pkg>net-libs/libsmi</pkg> to resolve numeric OIDs into human readable format</flag>
45 +<flag name='third-party-plugins'>Build plugins from third party sources</flag>
46 </use>
47 </pkgmetadata>
48
49
50
51 1.6 net-analyzer/wireshark/wireshark-1.8.0.ebuild
52
53 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild?rev=1.6&view=markup
54 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild?rev=1.6&content-type=text/plain
55 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild?r1=1.5&r2=1.6
56
57 Index: wireshark-1.8.0.ebuild
58 ===================================================================
59 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild,v
60 retrieving revision 1.5
61 retrieving revision 1.6
62 diff -u -r1.5 -r1.6
63 --- wireshark-1.8.0.ebuild 27 Jun 2012 21:11:04 -0000 1.5
64 +++ wireshark-1.8.0.ebuild 9 Jul 2012 19:39:21 -0000 1.6
65 @@ -1,6 +1,6 @@
66 # Copyright 1999-2012 Gentoo Foundation
67 # Distributed under the terms of the GNU General Public License v2
68 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild,v 1.5 2012/06/27 21:11:04 jer Exp $
69 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/wireshark-1.8.0.ebuild,v 1.6 2012/07/09 19:39:21 zerochaos Exp $
70
71 EAPI="4"
72 PYTHON_DEPEND="python? 2"
73 @@ -14,8 +14,10 @@
74 LICENSE="GPL-2"
75 SLOT="0"
76 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
77 -IUSE="adns ares doc doc-pdf gtk ipv6 lua gcrypt geoip kerberos
78 -profile +pcap portaudio python +caps selinux smi ssl zlib"
79 +IUSE="adns ares btbb doc doc-pdf gtk ipv6 lua gcrypt geoip kerberos
80 +third-party-plugins profile +pcap portaudio python +caps selinux smi ssl zlib"
81 +
82 +REQUIRED_USE="btbb? ( third-party-plugins )"
83
84 RDEPEND=">=dev-libs/glib-2.14:2
85 zlib? ( sys-libs/zlib
86 @@ -35,6 +37,7 @@
87 !ares? ( adns? ( net-libs/adns ) )
88 geoip? ( dev-libs/geoip )
89 lua? ( >=dev-lang/lua-5.1 )
90 + btbb? ( >=net-libs/libbtbb-0.8-r1 )
91 selinux? ( sec-policy/selinux-wireshark )"
92
93 DEPEND="${RDEPEND}
94 @@ -104,6 +107,10 @@
95
96 src_prepare() {
97 epatch "${FILESDIR}"/${P}-underlinking.patch
98 + if use btbb; then
99 + cp -r "${EROOT}/usr/share/libbtbb/wireshark/." "${S}/" || die
100 + epatch "${S}/plugins/btbb/wireshark-1.8-btbb.patch"
101 + fi
102 eautoreconf
103 }
104
105
106
107
108 1.358 net-analyzer/wireshark/ChangeLog
109
110 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.358&view=markup
111 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?rev=1.358&content-type=text/plain
112 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/wireshark/ChangeLog?r1=1.357&r2=1.358
113
114 Index: ChangeLog
115 ===================================================================
116 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v
117 retrieving revision 1.357
118 retrieving revision 1.358
119 diff -u -r1.357 -r1.358
120 --- ChangeLog 27 Jun 2012 21:11:04 -0000 1.357
121 +++ ChangeLog 9 Jul 2012 19:39:21 -0000 1.358
122 @@ -1,6 +1,10 @@
123 # ChangeLog for net-analyzer/wireshark
124 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
125 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.357 2012/06/27 21:11:04 jer Exp $
126 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/wireshark/ChangeLog,v 1.358 2012/07/09 19:39:21 zerochaos Exp $
127 +
128 + 09 Jul 2012; Rick Farina <zerochaos@g.o> metadata.xml,
129 + wireshark-1.8.0.ebuild:
130 + add in support for third-party-plugins, starting with btbb
131
132 27 Jun 2012; Jeroen Roovers <jer@g.o> wireshark-1.8.0.ebuild,
133 files/wireshark-1.8.0-underlinking.patch: