04d6f52202
lang/gcc which have moved from GCC 4.9.4 to GCC 5.4 (at least under some circumstances such as versions of FreeBSD or platforms). This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using using Mk/bsd.octave.mk which in turn has USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++14-lang, c++11-lang, c++0x, c11, or gcc-c++11-lib. PR: 216707
29 lines
738 B
Makefile
29 lines
738 B
Makefile
# Created by: Boris Kochergin <spawk@acm.poly.edu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= arpCounterattack
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 3
|
|
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
|
|
|
|
USES= compiler:c++11-lib tar:tbz
|
|
USE_CSTD= c++11
|
|
SUB_FILES= pkg-message
|
|
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
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>
|