553049dd6d
From the Readme: Version 1.5 adds major new functionality! Detection and preprocessing plugins, session logging, rules file variables and includes, five new network layer decoders including ISDN and Token Ring support, new detection functionality, and a bunch of other cool stuff.
29 lines
928 B
Makefile
29 lines
928 B
Makefile
# $NetBSD: Makefile,v 1.2 2000/01/15 21:58:29 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= snort-1.5
|
|
CATEGORIES= net security
|
|
MASTER_SITES= http://www.clark.net/~roesch/ \
|
|
ftp://the.wiretapped.net/pub/security/network-intrusion-detection/snort/ \
|
|
http://www.centus.com/snort/ \
|
|
http://snort.whitehats.com/ \
|
|
http://snort.safenetworks.com/ \
|
|
ftp://gd.tuwien.ac.at/infosys/security/snort/
|
|
|
|
MAINTAINER= rh@netbsd.org
|
|
HOMEPAGE= http://www.clark.net/~roesch/security.html
|
|
|
|
GNU_CONFIGURE= YES
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} -m 700 -o root -g wheel /var/log/snort
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/snort
|
|
.for f in backdoor-lib misc-lib overflow-lib scan-lib snort-lib web-lib
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/snort
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/snort
|
|
.for f in README README.PLUGINS NEWS RULES.SAMPLE USAGE
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/snort
|
|
.endfor
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|