From 5d0e12d1d2c7f127f24d0d318a05c9d8ef9603b4 Mon Sep 17 00:00:00 2001 From: shannonjr Date: Thu, 4 May 2006 13:13:17 +0000 Subject: Updated to libprelude 0.9.8. Changes: - Improve idmef-path error reporting. - Rework configure script so that it use --with[out] in place of --(en|dis)able where we deal with external dependencies. - Rework configure script so that --with[out] work as expected (enabling and disabling the feature, explicit error if "with" feature is explicitly specified but the feature it is unavailable, etc). - Rework SNMPService class for IDMEF draft 16 compliance. - Make sure we set alert CreateTime if the caller did not do it for us. - Fix handling of \r\n terminated line. - Ignore character that are part of the option value when comparing option specified using --option=value. Fix handling of parent option. --- security/libprelude/Makefile | 4 ++-- security/libprelude/PLIST | 3 ++- security/libprelude/distinfo | 8 ++++---- security/libprelude/options.mk | 10 +++++----- 4 files changed, 13 insertions(+), 12 deletions(-) (limited to 'security') diff --git a/security/libprelude/Makefile b/security/libprelude/Makefile index a1a8a80b60d..01697efb3b3 100644 --- a/security/libprelude/Makefile +++ b/security/libprelude/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2006/04/24 10:19:20 shannonjr Exp $ +# $NetBSD: Makefile,v 1.11 2006/05/04 13:13:17 shannonjr Exp $ # -DISTNAME= libprelude-0.9.7.2 +DISTNAME= libprelude-0.9.8 CATEGORIES= security MASTER_SITES= http://www.prelude-ids.org/download/releases/ diff --git a/security/libprelude/PLIST b/security/libprelude/PLIST index 76a64314bf7..c2f7aa0cb6d 100644 --- a/security/libprelude/PLIST +++ b/security/libprelude/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.3 2006/04/12 19:40:51 joerg Exp $ +@comment $NetBSD: PLIST,v 1.4 2006/05/04 13:13:17 shannonjr Exp $ bin/libprelude-config bin/prelude-adduser include/libprelude/common.h @@ -91,6 +91,7 @@ share/doc/libprelude/libprelude-prelude-string.html share/doc/libprelude/libprelude-prelude-timer.html share/doc/libprelude/libprelude-prelude.html share/doc/libprelude/libprelude.devhelp +share/doc/libprelude/libprelude.devhelp2 share/doc/libprelude/pt01.html share/doc/libprelude/pt02.html share/doc/libprelude/pt03.html diff --git a/security/libprelude/distinfo b/security/libprelude/distinfo index a3ffe988e76..9eaf772c425 100644 --- a/security/libprelude/distinfo +++ b/security/libprelude/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.8 2006/04/24 10:19:20 shannonjr Exp $ +$NetBSD: distinfo,v 1.9 2006/05/04 13:13:17 shannonjr Exp $ -SHA1 (libprelude-0.9.7.2.tar.gz) = 22ff08c8a1fd48b92b8628623914cb6083d4044d -RMD160 (libprelude-0.9.7.2.tar.gz) = 57023c09fcbe742d1ed24b65a1c499d8a258a0dd -Size (libprelude-0.9.7.2.tar.gz) = 1754249 bytes +SHA1 (libprelude-0.9.8.tar.gz) = 6d1c1672268a782bb968367ed09e91fd532901e6 +RMD160 (libprelude-0.9.8.tar.gz) = aa0b3638d05662943dfcee005e49cfd8f0724c17 +Size (libprelude-0.9.8.tar.gz) = 1759203 bytes SHA1 (patch-aa) = 1d788517feb2ef687777ae6640033d9f177b07f8 SHA1 (patch-ab) = 592f42a6d9217c502eb49e8fb0ba7d17a49f2ada SHA1 (patch-ac) = 6d8a95f0ae85071def8a38951e83838cef676c92 diff --git a/security/libprelude/options.mk b/security/libprelude/options.mk index 4a70762d5c4..0ef63f9b1b8 100644 --- a/security/libprelude/options.mk +++ b/security/libprelude/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2006/03/10 22:19:29 shannonjr Exp $ +# $NetBSD: options.mk,v 1.3 2006/05/04 13:13:17 shannonjr Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.libprelude PKG_SUPPORTED_OPTIONS= perl python @@ -12,17 +12,17 @@ PKG_SUPPORTED_OPTIONS= perl python ### .if !empty(PKG_OPTIONS:Mperl) -CONFIGURE_ARGS+= --enable-perl +CONFIGURE_ARGS+= --with-perl REPLACE_PERL+= bindings/perl/Makefile.PL .else -CONFIGURE_ARGS+= --disable-perl +CONFIGURE_ARGS+= --with-perl=no .endif .if !empty(PKG_OPTIONS:Mpython) -CONFIGURE_ARGS+= --enable-python +CONFIGURE_ARGS+= --with-python CONFIGURE_ENV+= PYTHON=${PYTHONBIN:Q} PY_PATCHPLIST= yes .include "../../lang/python/application.mk" .include "../../lang/python/extension.mk" .else -CONFIGURE_ARGS+= --disable-python +CONFIGURE_ARGS+= --with-python=no .endif -- cgit v1.2.3