mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-05 06:27:37 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
31 lines
765 B
Makefile
31 lines
765 B
Makefile
# Created by: Boris Kochergin <spawk@acm.poly.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arpCounterattack
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 8
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://isis.poly.edu/~bk/${PORTNAME}/ \
|
|
http://bk.macroblock.net/${PORTNAME}/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Detects and remedies ARP attacks
|
|
|
|
LIB_DEPENDS= libdnet.so:net/libdnet \
|
|
libpcap.so:net/libpcap
|
|
|
|
USES= compiler:c++11-lib tar:tbz
|
|
USE_CSTD= c++11
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
SUB_FILES= pkg-message
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/arpCounterattack
|
|
${INSTALL_PROGRAM} ${WRKSRC}/arpCounterattack \
|
|
${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_DATA} ${WRKSRC}/arpCounterattack.conf.sample \
|
|
${WRKSRC}/oui.txt ${STAGEDIR}${PREFIX}/etc/arpCounterattack
|
|
|
|
.include <bsd.port.mk>
|