Portage is a package management system used by Gentoo Linux
# ChangeLog for net-misc/arpd
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/arpd/ChangeLog,v 1.12 2007/02/22 02:02:02 peper Exp $
22 Feb 2007; Piotr JaroszyĆski
Transition to Manifest2.
20 Feb 2006; Markus Ullmann
Removing virtual/libpcap wrt bug #117898
25 Dec 2005; Jason Wever
Stable on SPARC.
18 May 2005; Sven Wegener
Moved inherit to the top to stop eclasses from overwriting the DESCRIPTION.
01 May 2005; Michael Hanselmann
Stable on ppc.
27 Apr 2005; Brian Jackson
arpd-0.2.ebuild:
patch from bug #76833, thanks to those guys, also works on amd64
30 Jan 2005; Daniel Black
Transition dependancy from net-libs/libpcap to virtual/libpcap
*arpd-0.2 (14 Sep 2003)
14 Sep 2003;
version bump thanks to hillster
07 Jan 2003; J Robert Ray
*arpd-0.1 (20 Dec 2002)
20 Dec 2002; J Robert Ray
Daniel Mannarino
AUX arpd.c.patch 1477 RMD160 1fcf7dea74139ff11e12604f78e99459838af743 SHA1 29125936888d08376c4cf7f74bb89e3b9110ffeb SHA256 d193c5216b3c39741d6c00180d641471be9c80c68cc6a2100412671ae5e8627a
DIST arpd-0.2.tar.gz 49437 RMD160 777ef6789e2882cf0e0958951377f65f6362d816 SHA1 e827ada394aff91f9c539cee35e946e81152426c SHA256 21d55de1506b3dbbfddb1b57e782a5fbf7140d299fbb08f4a8e48daaaa8489e7
EBUILD arpd-0.2.ebuild 1113 RMD160 9baa080136b895024d5477a434c793e4f21d8034 SHA1 2dc94e7d7295671512e64f59d11931cb2e0b6c44 SHA256 a2387e8410c9f273f7152f396e321090431b8d5a626da77226e575c86692ae60
MISC ChangeLog 1338 RMD160 b42d128abd074cd2ca292f8243f14ba05752d66b SHA1 29a4b8f073385d8704069013f50fb13390c5809e SHA256 b580bb66fa4cf11b914154e1ffb504d5412c64fc401f0c48077d86ef8aa7b81e
MISC metadata.xml 314 RMD160 25181cde297628576a9545bea3a76601485bfaf3 SHA1 ac16b621acf5a22b64859e3323d466fb556fc4c8 SHA256 736baab77aea9c4da199c01e3cd6877c271bd02357ff9b41b537a2232c6e96d7
# Copyright 1999-2006 Gentoo Foundation
# 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.14 2006/02/20 20:43:20 jokey Exp $
inherit eutils
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="~amd64 hppa ppc sparc x86"
IUSE=""
DEPEND=">=dev-libs/libdnet-1.4
>=dev-libs/libevent-0.6
net-libs/libpcap"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/arpd.c.patch || die "epatch failed"
sed -i \
-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 || die "sed failed"
}
src_compile() {
econf --with-libdnet=/usr --with-libevent=/usr || die "configure failed"
emake || die
}
src_install() {
dosbin arpd || die
doman arpd.8
}