diff options
author | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-22 19:02:09 +0000 |
---|---|---|
committer | Ying-Chieh Liao <ijliao@FreeBSD.org> | 2002-06-22 19:02:09 +0000 |
commit | 99ad172ad186a66b59d7b74638177eb184545baf (patch) | |
tree | c0a1fab0d3ca3504accec11249f7fa3750a597c0 /net | |
parent | add xpath2rss 0.7 (diff) |
add echolot 0.0.3
A packet sniffer that grabs ARP packets on any ethernet devices
Notes
Notes:
svn path=/head/; revision=61750
Diffstat (limited to 'net')
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/echolot/Makefile | 33 | ||||
-rw-r--r-- | net/echolot/distinfo | 1 | ||||
-rw-r--r-- | net/echolot/pkg-comment | 1 | ||||
-rw-r--r-- | net/echolot/pkg-descr | 6 | ||||
-rw-r--r-- | net/echolot/pkg-plist | 5 |
6 files changed, 47 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 480966380edb..4a1a81644449 100644 --- a/net/Makefile +++ b/net/Makefile @@ -98,6 +98,7 @@ SUBDIR += domtools SUBDIR += driftnet SUBDIR += easysoap + SUBDIR += echolot SUBDIR += echoping SUBDIR += edonkey-core SUBDIR += edonkey-gui-gtk diff --git a/net/echolot/Makefile b/net/echolot/Makefile new file mode 100644 index 000000000000..34f64c7159ac --- /dev/null +++ b/net/echolot/Makefile @@ -0,0 +1,33 @@ +# ex:ts=8 +# Ports collection makefile for: echolot +# Date created: Jun 23, 2002 +# Whom: ijliao +# +# $FreeBSD$ +# + +PORTNAME= echolot +PORTVERSION= 0.0.3 +CATEGORIES= net +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= ports@FreeBSD.org + +LIB_DEPENDS= gnugetopt:${PORTSDIR}/devel/libgnugetopt + +GNU_CONFIGURE= yes +CONFIGURE_ENV= CFLAGS="${CFLAGS} -I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -lgnugetopt" + +MAN1= echolot.1 + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for file in DESIGN SCRIPTING SYNTAX + ${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> diff --git a/net/echolot/distinfo b/net/echolot/distinfo new file mode 100644 index 000000000000..b0ddfaab9a85 --- /dev/null +++ b/net/echolot/distinfo @@ -0,0 +1 @@ +MD5 (echolot-0.0.3.tar.gz) = b1b5c8b19958e5f899eef79d28c0bd46 diff --git a/net/echolot/pkg-comment b/net/echolot/pkg-comment new file mode 100644 index 000000000000..ac5ae54f55a3 --- /dev/null +++ b/net/echolot/pkg-comment @@ -0,0 +1 @@ +A packet sniffer that grabs ARP packets on any ethernet devices diff --git a/net/echolot/pkg-descr b/net/echolot/pkg-descr new file mode 100644 index 000000000000..e7819cdbcac0 --- /dev/null +++ b/net/echolot/pkg-descr @@ -0,0 +1,6 @@ +echolot implements a packet sniffer that grabs ARP packets on any ethernet +devices. This empowers your box + * to detect intruders (new mac in lan) + * to find your boxes on foreign lans (known mac in lan) + +WWW: http://sourceforge.net/projects/echolot diff --git a/net/echolot/pkg-plist b/net/echolot/pkg-plist new file mode 100644 index 000000000000..6ee760afe36b --- /dev/null +++ b/net/echolot/pkg-plist @@ -0,0 +1,5 @@ +bin/echolot +%%PORTDOCS%%share/doc/echolot/DESIGN +%%PORTDOCS%%share/doc/echolot/SCRIPTING +%%PORTDOCS%%share/doc/echolot/SYNTAX +%%PORTDOCS%%@dirrm share/doc/echolot |