diff options
author | edwin <edwin@FreeBSD.org> | 2002-11-24 13:35:21 +0800 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2002-11-24 13:35:21 +0800 |
commit | 4b92034f814e144ec573e81f6176ae31ee40f644 (patch) | |
tree | 667b812c7fbdd46b2c7a2c1399dc40e6b85f3754 /net/arpd | |
parent | e8d01459c7152febdac720fe13cd1835f40ad1ba (diff) | |
download | freebsd-ports-gnome-4b92034f814e144ec573e81f6176ae31ee40f644.tar.gz freebsd-ports-gnome-4b92034f814e144ec573e81f6176ae31ee40f644.tar.zst freebsd-ports-gnome-4b92034f814e144ec573e81f6176ae31ee40f644.zip |
New port: net/arpd
A daemon to service arp replies
PR: ports/37123
Submitted by: Dominic Marks <dominic_marks@btinternet.com
Diffstat (limited to 'net/arpd')
-rw-r--r-- | net/arpd/Makefile | 28 | ||||
-rw-r--r-- | net/arpd/distinfo | 1 | ||||
-rw-r--r-- | net/arpd/files/patch-configure | 12 | ||||
-rw-r--r-- | net/arpd/pkg-comment | 1 | ||||
-rw-r--r-- | net/arpd/pkg-descr | 5 | ||||
-rw-r--r-- | net/arpd/pkg-plist | 1 |
6 files changed, 48 insertions, 0 deletions
diff --git a/net/arpd/Makefile b/net/arpd/Makefile new file mode 100644 index 000000000000..1dc4d8b2991b --- /dev/null +++ b/net/arpd/Makefile @@ -0,0 +1,28 @@ +# Ports collection makefile for: arpd +# Date created: 16/04/2002 +# Whom: Dominic Marks <dominic_marks@btinternet.com> +# +# $FreeBSD$ +# + +PORTNAME= arpd +PORTVERSION= 0.1 +CATEGORIES= net +MASTER_SITES= http://www.citi.umich.edu/u/provos/honeyd/ + +MAINTAINER= dominc_marks@btinternet.com + +BUILD_DEPENDS= ${LOCALBASE}/include/dnet.h:${PORTSDIR}/net/libdnet \ + ${LOCALBASE}/include/event.h:${PORTSDIR}/devel/libevent +RUN_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet \ + ${LOCALBASE}/lib/libevent.a:${PORTSDIR}/devel/libevent + +CONFIGURE_ARGS= --with-libdnet=${LOCALBASE} \ + --with-libevent=${LOCALBASE} \ + --with-pcap +GNU_CONFIGURE= yes +WRKSRC= ${WRKDIR}/${PORTNAME} + +MAN8= arpd.8 + +.include <bsd.port.mk> diff --git a/net/arpd/distinfo b/net/arpd/distinfo new file mode 100644 index 000000000000..af3d4490a3ee --- /dev/null +++ b/net/arpd/distinfo @@ -0,0 +1 @@ +MD5 (arpd-0.1.tar.gz) = 046ca68db6d69d874fda4bcea6c552de diff --git a/net/arpd/files/patch-configure b/net/arpd/files/patch-configure new file mode 100644 index 000000000000..f6bb92c25878 --- /dev/null +++ b/net/arpd/files/patch-configure @@ -0,0 +1,12 @@ +--- configure.orig Sun Nov 24 16:32:01 2002 ++++ configure Sun Nov 24 16:32:36 2002 +@@ -1273,8 +1273,7 @@ + ;; + *) + echo "$ac_t""$withval" 1>&6 +- if test -f $withval/include/event.h -a -f +- $withval/lib/libevent.a; then ++ if test -f $withval/include/event.h -a -f $withval/lib/libevent.a; then + owd=`pwd` + if cd $withval; then withval=`pwd`; cd $owd; fi + EVENTINC="-I$withval/include" diff --git a/net/arpd/pkg-comment b/net/arpd/pkg-comment new file mode 100644 index 000000000000..7b67051a0260 --- /dev/null +++ b/net/arpd/pkg-comment @@ -0,0 +1 @@ +A daemon to service arp replies diff --git a/net/arpd/pkg-descr b/net/arpd/pkg-descr new file mode 100644 index 000000000000..41f32dfb1e11 --- /dev/null +++ b/net/arpd/pkg-descr @@ -0,0 +1,5 @@ +Arpd can be used to direct all Arp queries for an interface into a +single IP address or network. + +WWW: http://www.citi.umich.edu/u/provos/ +- Dominic <dominic_marks@btinternet.com> diff --git a/net/arpd/pkg-plist b/net/arpd/pkg-plist new file mode 100644 index 000000000000..46f8393fa10c --- /dev/null +++ b/net/arpd/pkg-plist @@ -0,0 +1 @@ +sbin/arpd |