blob: 051c40eeeeec0c73cdd9fd4bc89f61ae8397df3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="3"
inherit autotools eutils
DESCRIPTION="ARP server which claims all unassigned addresses (for network monitoring or simulation)"
HOMEPAGE="http://www.citi.umich.edu/u/provos/honeyd/"
SRC_URI="http://www.citi.umich.edu/u/provos/honeyd/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 hppa ppc ~ppc64 sparc x86"
IUSE=""
DEPEND=">=dev-libs/libdnet-1.4
>=dev-libs/libevent-0.6
net-libs/libpcap
!sys-apps/iproute2"
S=${WORKDIR}/${PN}
src_prepare() {
epatch "${FILESDIR}"/arpd.c.patch
epatch "${FILESDIR}"/${P}-libevent.patch
#fix bug 337481, replace test on libevent.a with libevent.so
epatch "${FILESDIR}"/${P}-buildsystem-libevent-test.patch
eautoreconf
}
src_configure() {
econf --with-libdnet="${EPREFIX}"/usr --with-libevent="${EPREFIX}"/usr
}
src_install() {
dosbin arpd || die
doman arpd.8 || die
}
|