pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/libprelude Updated to libprelude 0.9.8. Changes:



details:   https://anonhg.NetBSD.org/pkgsrc/rev/2bebe7f8b5cf
branches:  trunk
changeset: 512270:2bebe7f8b5cf
user:      shannonjr <shannonjr%pkgsrc.org@localhost>
date:      Thu May 04 13:13:17 2006 +0000

description:
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.

diffstat:

 security/libprelude/Makefile   |   4 ++--
 security/libprelude/PLIST      |   3 ++-
 security/libprelude/distinfo   |   8 ++++----
 security/libprelude/options.mk |  10 +++++-----
 4 files changed, 13 insertions(+), 12 deletions(-)

diffs (76 lines):

diff -r e8015cfe5873 -r 2bebe7f8b5cf security/libprelude/Makefile
--- a/security/libprelude/Makefile      Thu May 04 12:59:04 2006 +0000
+++ b/security/libprelude/Makefile      Thu May 04 13:13:17 2006 +0000
@@ -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 -r e8015cfe5873 -r 2bebe7f8b5cf security/libprelude/PLIST
--- a/security/libprelude/PLIST Thu May 04 12:59:04 2006 +0000
+++ b/security/libprelude/PLIST Thu May 04 13:13:17 2006 +0000
@@ -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-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 -r e8015cfe5873 -r 2bebe7f8b5cf security/libprelude/distinfo
--- a/security/libprelude/distinfo      Thu May 04 12:59:04 2006 +0000
+++ b/security/libprelude/distinfo      Thu May 04 13:13:17 2006 +0000
@@ -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 -r e8015cfe5873 -r 2bebe7f8b5cf security/libprelude/options.mk
--- a/security/libprelude/options.mk    Thu May 04 12:59:04 2006 +0000
+++ b/security/libprelude/options.mk    Thu May 04 13:13:17 2006 +0000
@@ -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 @@
 ###
 
 .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



Home | Main Index | Thread Index | Old Index