Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/fragroute: ChangeLog fragroute-1.2-r1.ebuild
Date: Tue, 16 Feb 2010 21:00:18
Message-Id: E1NhUWm-0001nu-2f@stork.gentoo.org
1 jlec 10/02/16 21:00:16
2
3 Modified: ChangeLog
4 Added: fragroute-1.2-r1.ebuild
5 Log:
6 Fixed compilation agianst newer libevent, #295877
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.17 net-analyzer/fragroute/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fragroute/ChangeLog?rev=1.17&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fragroute/ChangeLog?rev=1.17&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fragroute/ChangeLog?r1=1.16&r2=1.17
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/ChangeLog,v
19 retrieving revision 1.16
20 retrieving revision 1.17
21 diff -u -r1.16 -r1.17
22 --- ChangeLog 15 Jan 2010 19:52:41 -0000 1.16
23 +++ ChangeLog 16 Feb 2010 21:00:15 -0000 1.17
24 @@ -1,6 +1,12 @@
25 # ChangeLog for net-analyzer/fragroute
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/ChangeLog,v 1.16 2010/01/15 19:52:41 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/ChangeLog,v 1.17 2010/02/16 21:00:15 jlec Exp $
29 +
30 +*fragroute-1.2-r1 (16 Feb 2010)
31 +
32 + 16 Feb 2010; Justin Lecher (jlec) <jlec@g.o>
33 + +files/1.2-libevent.patch, +fragroute-1.2-r1.ebuild:
34 + Fixed compilation agianst newer libevent, #295877
35
36 15 Jan 2010; Ulrich Mueller <ulm@g.o> fragroute-1.2.ebuild:
37 LICENSE is identical with BSD, bug 301123.
38
39
40
41 1.1 net-analyzer/fragroute/fragroute-1.2-r1.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fragroute/fragroute-1.2-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/fragroute/fragroute-1.2-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: fragroute-1.2-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/net-analyzer/fragroute/fragroute-1.2-r1.ebuild,v 1.1 2010/02/16 21:00:15 jlec Exp $
51
52 EAPI="3"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="Testing of network intrusion detection systems, firewalls and TCP/IP stacks"
57 HOMEPAGE="http://www.monkey.org/~dugsong/fragroute/"
58 SRC_URI="http://www.monkey.org/~dugsong/fragroute/${P}.tar.gz"
59
60 LICENSE="BSD"
61 SLOT="0"
62 KEYWORDS="~amd64 ~ppc ~x86"
63 IUSE=""
64
65 DEPEND="
66 >=dev-libs/libevent-0.6
67 net-libs/libpcap
68 >=dev-libs/libdnet-1.4"
69
70 src_prepare() {
71 epatch "${FILESDIR}"/${PV}-libevent.patch
72 tc-export CC
73 }
74
75 src_configure() {
76 econf --with-libevent="${EPREFIX}"/usr --with-libdnet="${EPREFIX}"/usr
77 }
78
79 src_install() {
80 emake DESTDIR="${D}" install || die
81 dodoc README || die
82 }