Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Jul 2019 21:36:16 +0000 (UTC)
From:      Yuri Victorovich <yuri@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r507246 - in head/net: . arpoison arpoison/files
Message-ID:  <201907232136.x6NLaGAk032293@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: yuri
Date: Tue Jul 23 21:36:15 2019
New Revision: 507246
URL: https://svnweb.freebsd.org/changeset/ports/507246

Log:
  New port: net/arpoison: UNIX arp cache update utility

Added:
  head/net/arpoison/
  head/net/arpoison/Makefile   (contents, props changed)
  head/net/arpoison/distinfo   (contents, props changed)
  head/net/arpoison/files/
  head/net/arpoison/files/patch-Makefile   (contents, props changed)
  head/net/arpoison/pkg-descr   (contents, props changed)
Modified:
  head/net/Makefile

Modified: head/net/Makefile
==============================================================================
--- head/net/Makefile	Tue Jul 23 20:35:35 2019	(r507245)
+++ head/net/Makefile	Tue Jul 23 21:36:15 2019	(r507246)
@@ -27,6 +27,7 @@
     SUBDIR += arp-sk
     SUBDIR += arpdig
     SUBDIR += arping
+    SUBDIR += arpoison
     SUBDIR += arprelease
     SUBDIR += asio
     SUBDIR += aslookup

Added: head/net/arpoison/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/arpoison/Makefile	Tue Jul 23 21:36:15 2019	(r507246)
@@ -0,0 +1,23 @@
+# $FreeBSD$
+
+PORTNAME=	arpoison
+DISTVERSION=	0.7
+CATEGORIES=	net
+MASTER_SITES=	http://www.arpoison.net/
+
+MAINTAINER=	yuri@FreeBSD.org
+COMMENT=	UNIX arp cache update utility
+
+LICENSE=	GPLv2
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+LIB_DEPENDS=	libnet.so:net/libnet
+
+USES=		gmake
+
+PLIST_FILES=	bin/${PORTNAME}
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
+
+.include <bsd.port.mk>

Added: head/net/arpoison/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/arpoison/distinfo	Tue Jul 23 21:36:15 2019	(r507246)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1563916540
+SHA256 (arpoison-0.7.tar.gz) = 63571633826e413a9bdaab760425d0fab76abaf71a2b7ff6a00d1de53d83e741
+SIZE (arpoison-0.7.tar.gz) = 8458

Added: head/net/arpoison/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/arpoison/files/patch-Makefile	Tue Jul 23 21:36:15 2019	(r507246)
@@ -0,0 +1,11 @@
+--- Makefile.orig	2019-07-23 21:17:28 UTC
++++ Makefile
+@@ -2,7 +2,7 @@ all: arpoison
+ 
+ arpoison: arpoison.c
+ 
+-	gcc -lnet -o arpoison `libnet-config --defines` -I/opt/local/include -L/opt/local/lib arpoison.c
++	$(CC) -o arpoison `libnet-config --defines --cflags --libs` arpoison.c
+ 
+ clean:
+ 

Added: head/net/arpoison/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/net/arpoison/pkg-descr	Tue Jul 23 21:36:15 2019	(r507246)
@@ -0,0 +1,6 @@
+This arping program sends out a custom ARP REPLY packet with the hardware and
+protocol address information of your choosing. Since ARP is a stateless
+protocol, most operating systems will gladly update their ARP cache with
+whatever information you send them in your hand-crafted packet.
+
+WWW: http://www.arpoison.net/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907232136.x6NLaGAk032293>