Gentoo Archives: gentoo-commits

From: "Michael Weber (xmw)" <xmw@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/netsniff-ng: netsniff-ng-0.5.8.ebuild ChangeLog
Date: Mon, 01 Sep 2014 16:12:30
Message-Id: 20140901161101.BF6CA471F@oystercatcher.gentoo.org
1 xmw 14/09/01 16:11:01
2
3 Modified: ChangeLog
4 Added: netsniff-ng-0.5.8.ebuild
5 Log:
6 Version bump (bug 520318).
7
8 (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
9
10 Revision Changes Path
11 1.9 net-analyzer/netsniff-ng/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 3 Dec 2013 09:22:14 -0000 1.8
24 +++ ChangeLog 1 Sep 2014 16:11:01 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for net-analyzer/netsniff-ng
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog,v 1.8 2013/12/03 09:22:14 xmw Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/netsniff-ng/ChangeLog,v 1.9 2014/09/01 16:11:01 xmw Exp $
31 +
32 +*netsniff-ng-0.5.8 (01 Sep 2014)
33 +
34 + 01 Sep 2014; Michael Weber <xmw@g.o> +netsniff-ng-0.5.8.ebuild:
35 + Version bump (bug 520318).
36
37 *netsniff-ng-0.5.8_rc3 (03 Dec 2013)
38
39
40
41
42 1.1 net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild?rev=1.1&content-type=text/plain
46
47 Index: netsniff-ng-0.5.8.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/netsniff-ng/netsniff-ng-0.5.8.ebuild,v 1.1 2014/09/01 16:11:01 xmw Exp $
52
53 EAPI=5
54
55 inherit eutils multilib toolchain-funcs
56
57 DESCRIPTION="high performance network sniffer for packet inspection"
58 HOMEPAGE="http://netsniff-ng.org/"
59 MY_P=${P/_rc/-rc}
60 SRC_URI="http://pub.${PN}.org/${PN}/${MY_P}.tar.xz"
61
62 LICENSE="GPL-2"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE=""
66
67 RDEPEND="dev-libs/geoip
68 dev-libs/libcli
69 dev-libs/libnl:3
70 dev-libs/userspace-rcu
71 net-libs/libnet:1.1
72 net-libs/libnetfilter_conntrack
73 net-libs/libpcap
74 sys-libs/ncurses:5
75 sys-libs/zlib"
76 DEPEND="${RDEPEND}
77 sys-devel/flex
78 sys-devel/bison
79 =net-libs/nacl-0_p20110221*
80 virtual/pkgconfig"
81
82 S=${WORKDIR}/${MY_P}
83
84 src_prepare() {
85 sed -e '/CFLAGS/s:?=:+=:' \
86 -e '/CFLAGS/s:\(-g\|-O2\|-O3\|-m\(arch\|tune\)=native\)::g' \
87 -i Makefile || die
88
89 if ! grep nacl-20110221 curvetun/nacl_build.sh >/dev/null ; then
90 die "have nacl-20110221, expected $(grep ${MY_NACL_P} curvetun/nacl_build.sh)"
91 fi
92
93 export NACL_INC_DIR="${EROOT}usr/include/nacl"
94 export NACL_LIB_DIR="${EROOT}usr/$(get_libdir)/nacl"
95
96 epatch_user
97 }
98
99 src_compile() {
100 emake CC="$(tc-getCC)" LD="$(tc-getCC)" CCACHE="" \
101 LEX=lex YAAC=bison STRIP=@true \
102 Q= HARDENING=1
103 }
104
105 src_install() {
106 emake PREFIX="${ED}usr" ETCDIR="${ED}etc" install
107
108 dodoc AUTHORS README REPORTING-BUGS
109 }