No official changelog available. According to maintainer, the major changes for this release are optimizations: -Moved several global variables to local -Fewer Malloc calls -Several stack optimizations -More compiler flags and fixes for those warnings -Fixed compiler escaping bug involving memset for char PR: 249904 Submitted by: Samee Shahzada <onestsam@gmail.com> (maintainer) Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D26659
25 lines
572 B
Makefile
25 lines
572 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= snort2pfcd
|
|
PORTVERSION= 3.2
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://www.tworoutes.com/oss/
|
|
|
|
MAINTAINER= onestsam@gmail.com
|
|
COMMENT= Snort alert to pf blocker
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libcidr.so:devel/libcidr
|
|
RUN_DEPENDS= snort:security/snort
|
|
|
|
USE_RC_SUBR= snort2pfcd
|
|
PLIST_FILES= man/man8/snort2pfcd.8.gz \
|
|
sbin/snort2pfcd
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/snort2pfcd ${STAGEDIR}${PREFIX}/sbin
|
|
${INSTALL_MAN} ${WRKSRC}/snort2pfcd.8.gz ${STAGEDIR}${MAN8PREFIX}/man/man8
|
|
|
|
.include <bsd.port.mk>
|