blob: 4526aa93a1922cd4983f1317948e365783020922 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/arpd-0.2.ebuild,v 1.1 2003/09/14 16:24:20 iggy Exp $
DESCRIPTION="ARP reply daemon enables a single host to claim all unassigned addresses on a LAN 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="~x86 ~sparc ~ppc ~hppa ~amd64"
IUSE=""
DEPEND=">=libdnet-1.4
>=libevent-0.6
>=libpcap-0.7.1"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}
mv configure configure.orig || die
sed -e 's|$withval/lib/libevent.a; then||' \
-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|' \
configure.orig > configure || die
chmod +x configure
}
src_compile() {
econf --with-libdnet=/usr --with-libevent=/usr || die "configure failed"
emake || die
}
src_install() {
dosbin arpd
doman arpd.8
}
|