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-misc/arpd: arpd-0.2-r1.ebuild ChangeLog
Date: Tue, 16 Feb 2010 21:08:19
Message-Id: E1NhUeW-00029c-2p@stork.gentoo.org
1 jlec 10/02/16 21:08:16
2
3 Modified: ChangeLog
4 Added: arpd-0.2-r1.ebuild
5 Log:
6 Fixed compilation agianst newer libevent, #295746
7 (Portage version: 2.2_rc62/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.14 net-misc/arpd/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/arpd/ChangeLog?rev=1.14&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/arpd/ChangeLog?rev=1.14&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/arpd/ChangeLog?r1=1.13&r2=1.14
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/net-misc/arpd/ChangeLog,v
19 retrieving revision 1.13
20 retrieving revision 1.14
21 diff -u -r1.13 -r1.14
22 --- ChangeLog 27 Nov 2008 20:47:06 -0000 1.13
23 +++ ChangeLog 16 Feb 2010 21:08:15 -0000 1.14
24 @@ -1,6 +1,13 @@
25 # ChangeLog for net-misc/arpd
26 -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/ChangeLog,v 1.13 2008/11/27 20:47:06 vapier Exp $
28 +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/ChangeLog,v 1.14 2010/02/16 21:08:15 jlec Exp $
30 +
31 +*arpd-0.2-r1 (16 Feb 2010)
32 +
33 + 16 Feb 2010; Justin Lecher (jlec) <jlec@g.o> +arpd-0.2-r1.ebuild,
34 + +files/arpd-0.2-libevent.patch:
35 + Fix for compilation against new libevent per bug 295746
36 + Thanks Kacper Kowalik (Xarthisius) for providing the patch
37
38 27 Nov 2008; Mike Frysinger <vapier@g.o> arpd-0.2.ebuild:
39 Add a blocker on iproute2 #248092 by Diego E. Pettenò.
40
41
42
43 1.1 net-misc/arpd/arpd-0.2-r1.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/arpd/arpd-0.2-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-misc/arpd/arpd-0.2-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: arpd-0.2-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2010 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/arpd-0.2-r1.ebuild,v 1.1 2010/02/16 21:08:15 jlec Exp $
53
54 EAPI="3"
55
56 inherit eutils
57
58 DESCRIPTION="ARP server which claims all unassigned addresses (for network monitoring or simulation)"
59 HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/"
60 SRC_URI="http://www.citi.umich.edu/u/provos/honeyd/${P}.tar.gz"
61
62 LICENSE="BSD"
63 SLOT="0"
64 KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
65 IUSE=""
66
67 DEPEND=">=dev-libs/libdnet-1.4
68 >=dev-libs/libevent-0.6
69 net-libs/libpcap
70 !sys-apps/iproute2"
71
72 S=${WORKDIR}/${PN}
73
74 src_prepare() {
75 epatch "${FILESDIR}"/arpd.c.patch
76 epatch "${FILESDIR}"/${P}-libevent.patch
77
78 sed -i \
79 -e 's|$withval/lib/libevent.a; then||' \
80 -e 's|if test -f $withval/include/event.h -a -f|if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then|' \
81 configure || die "sed failed"
82 }
83
84 src_configure() {
85 econf --with-libdnet="${EPREFIX}"/usr --with-libevent="${EPREFIX}"/usr
86 }
87
88 src_install() {
89 dosbin arpd || die
90 doman arpd.8 || die
91 }