28 lines
586 B
Makefile
28 lines
586 B
Makefile
# $OpenBSD: Makefile,v 1.7 2011/11/15 23:02:23 sthen Exp $
|
|
|
|
COMMENT = ARP scanning and fingerprinting tool
|
|
DISTNAME = arp-scan-1.8
|
|
REVISION = 0
|
|
CATEGORIES = net
|
|
|
|
HOMEPAGE = http://www.nta-monitor.com/tools/arp-scan/
|
|
MAINTAINER = Stuart Henderson <sthen@openbsd.org>
|
|
|
|
MASTER_SITES = ${HOMEPAGE}download/
|
|
|
|
# GPLv3+
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
|
|
WANTLIB = c pcap
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
USE_GROFF = Yes
|
|
|
|
post-install:
|
|
cd ${PREFIX}/share/arp-scan; mv mac-vendor.txt mac-vendor.txt.dist
|
|
|
|
.include <bsd.port.mk>
|