068a7bca20
release in github so I (and portroach) missed it
72 lines
2.0 KiB
Makefile
72 lines
2.0 KiB
Makefile
GH_ACCOUNT = royhills
|
|
GH_PROJECT = arp-scan
|
|
GH_COMMIT = 995c1cc37df8c5f8491a45e814f42c3b0cd683f3
|
|
DISTNAME = arp-scan-1.9.9pre20221011
|
|
|
|
COMMENT-main = ARP scanning and fingerprinting tool
|
|
PKGNAME-main = ${DISTNAME}
|
|
|
|
M = 20221011
|
|
COMMENT-mac = MAC address vendor list
|
|
PKGNAME-mac = mac-vendor-$M
|
|
|
|
CATEGORIES = net
|
|
|
|
MAINTAINER = Stuart Henderson <stu.ports@spacehopper.org>
|
|
|
|
MASTER_SITES0 = https://spacehopper.org/mirrors/
|
|
|
|
DISTFILES = ${GH_DISTFILE} \
|
|
oui-iab-$M.tar.xz:0
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
# uses pledge()
|
|
WANTLIB-main = c pcap
|
|
RUN_DEPENDS-main = ${BASE_PKGPATH},-mac
|
|
|
|
MULTI_PACKAGES = -main -mac
|
|
|
|
CONFIGURE_STYLE = autoreconf
|
|
AUTOCONF_VERSION = 2.71
|
|
AUTOMAKE_VERSION = 1.16
|
|
|
|
# for local format-ma script
|
|
BUILD_DEPENDS = textproc/p5-Text-CSV
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; cat ${WRKDIR}/oui-iab/ma-{s,m,l}.csv \
|
|
${FILESDIR}/unofficial.csv ${WRKDIR}/oui-iab/iab.csv | \
|
|
perl ${FILESDIR}/format-ma
|
|
|
|
post-install:
|
|
cd ${PREFIX}/share/arp-scan; \
|
|
mv mac-vendor.txt mac-vendor.txt.dist
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/arpwatch/
|
|
${INSTALL_DATA} ${WRKSRC}/ethercodes.dat \
|
|
${PREFIX}/share/examples/arpwatch/ethercodes.dat
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/mac-vendor/
|
|
${INSTALL_DATA} ${WRKDIR}/oui-iab/*csv \
|
|
${WRKSRC}/aircrack-oui.txt ${FILESDIR}/unofficial.csv \
|
|
${PREFIX}/share/mac-vendor/
|
|
|
|
# maintainer convenience target to update mac-vendor file from the databases
|
|
# http://standards.ieee.org/develop/regauth/oui/
|
|
# https://regauth.standards.ieee.org/standards-ra-web/pub/view.html#registries
|
|
listing:
|
|
base='http://standards-oui.ieee.org'; \
|
|
f=oui-iab-`date +%Y%m%d`.tar.xz; \
|
|
t=`mktemp -d /tmp/oui-iab.XXXXXXXXXX`; \
|
|
cd $$t; \
|
|
mkdir -p oui-iab; \
|
|
cd oui-iab; \
|
|
[ -r iab.csv ] || ftp -o iab.csv $$base/iab/iab.csv; \
|
|
[ -r ma-l.csv ] || ftp -o ma-l.csv $$base/oui/oui.csv; \
|
|
[ -r ma-m.csv ] || ftp -o ma-m.csv $$base/oui28/mam.csv; \
|
|
[ -r ma-s.csv ] || ftp -o ma-s.csv $$base/oui36/oui36.csv; \
|
|
cd ..; tar cf - oui-iab | xz -T 0 > $$f; scp $$f naiad:mirrors/; \
|
|
rm -r $$t
|
|
|
|
.include <bsd.port.mk>
|