675ee278de
-- arpd replies to any ARP request for an IP address matching the specified destination net with the hardware MAC address of the specified interface, but only after determining if another host already claims it. Any IP address cliamed by arpd is eventually forgotten after a period of inactivity or after a hard timeout, and is relinquished if the real owner shows up. This enables a single host to claim all unassigned addresses on a LAN for network monitoring or simulation. MAINTAINER= Jason Peel <jsyn@openbsd.org>
27 lines
551 B
Makefile
27 lines
551 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2002/05/20 22:23:25 jsyn Exp $
|
|
|
|
COMMENT= "ARP reply daemon"
|
|
|
|
DISTNAME= arpd-0.1
|
|
CATEGORIES= net
|
|
NEED_VERSION= 1.531
|
|
|
|
MAINTAINER= Jason Peel <jsyn@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= http://www.citi.umich.edu/u/provos/honeyd/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
WRKDIST= ${WRKDIR}/arpd
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libevent.a::devel/libevent \
|
|
${LOCALBASE}/lib/libdnet.a::net/libdnet
|
|
|
|
.include <bsd.port.mk>
|