mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
96b9b05411
arpscan is a very simple scanner which sends out arp requests for the given IP addresses and displays a list of the found hosts. PR: ports/64605 Submitted by: David Yeske <dyeske@yahoo.com>
30 lines
599 B
Makefile
30 lines
599 B
Makefile
# New ports collection makefile for: arpscan
|
|
# Date created: 22 Mar 2004
|
|
# Whom: David Yeske <dyeske@yahoo.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= arpscan
|
|
PORTVERSION= 0.2
|
|
CATEGORIES= net-mgmt
|
|
MASTER_SITES= http://ish.cx/~jason/arpscan/
|
|
|
|
MAINTAINER= dyeske@yahoo.com
|
|
COMMENT= Simple arp scanner
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libdnet.a:${PORTSDIR}/net/libdnet
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
|
|
PLIST_FILES= bin/arpscan
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} <= 500000
|
|
IGNORE= "unknown BIOCSETIF error"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|