diff options
author | wiz <wiz@pkgsrc.org> | 2000-01-15 21:58:29 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2000-01-15 21:58:29 +0000 |
commit | 553049dd6d375dcb809c70432964e589c199756a (patch) | |
tree | a0d954cd00d3efdf8e75572796946358b27f2167 /net/snort/Makefile | |
parent | 42dfd0421c3ee204a8e6e5f438379eb1f75ceedc (diff) | |
download | pkgsrc-553049dd6d375dcb809c70432964e589c199756a.tar.gz |
update snort to 1.5; added distribution sites, install example configs.
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.
Diffstat (limited to 'net/snort/Makefile')
-rw-r--r-- | net/snort/Makefile | 20 |
1 files changed, 15 insertions, 5 deletions
diff --git a/net/snort/Makefile b/net/snort/Makefile index 0578eea3b1b..4cde9f29fac 100644 --- a/net/snort/Makefile +++ b/net/snort/Makefile @@ -1,9 +1,14 @@ -# $NetBSD: Makefile,v 1.1.1.1 1999/09/10 15:48:02 rh Exp $ +# $NetBSD: Makefile,v 1.2 2000/01/15 21:58:29 wiz Exp $ # -DISTNAME= snort-1.2.1 +DISTNAME= snort-1.5 CATEGORIES= net security -MASTER_SITES= http://www.clark.net/~roesch/ +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 @@ -11,9 +16,14 @@ 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 file in README NEWS RULES.SAMPLE USAGE - ${INSTALL_DATA} ${WRKSRC}/${file} ${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" |