1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

- Update to 0.9.11

- library version update of related ports

Changelog libprelude:
- Hook class comparison function. Accept NULL, equal, not equal operator.
- Introduce better error checking in the idmef-class API, which is now
  considered public and might be used by external application. Rename
  error code to reflect the API.
- Change to the way IDMEF listed element are handled. Specifying negative
  number as the position of the element from the low level API now allow
  to position the element at the specified (reversed) index. Using the
  high level API a negative index permit to address a list of element
  backward (replace an element).
- Build fixes for SWIG > 1.3.27.
- Modify idmef_value_match() so that it always unroll listed value
  (do it for both val1 and val2. Remove assertion, and let
  idmef_value_type_compare() return an error code in case there is an issue.
- Handle path using IDMEF_LIST_APPEND or IDMEF_LIST_PREPEND as
  path using an undefined list index on idmef_path_get() call.
- Make criteria parser accept (*) list index.
- Implement comparison function for all IDMEF object.

PR:		ports/104328
Submitted by:	maintainer (Robin Gruyters)
Approved by:	portmgr (pav)
This commit is contained in:
Cheng-Lung Sung 2006-11-27 01:16:41 +00:00
parent eb99a7e192
commit 86e10e595b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=178081
8 changed files with 13 additions and 12 deletions

View File

@ -4,7 +4,7 @@
# $FreeBSD$
PORTNAME= libprelude
PORTVERSION= 0.9.10.2
PORTVERSION= 0.9.11
CATEGORIES= security
MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
http://www.prelude-ids.org/download/releases/old/
@ -21,7 +21,7 @@ USE_GPG= yes
SIG_SUFFIX= .sig
USE_GMAKE= yes
GNU_CONFIGURE= yes
INSTALLS_SHLIB= yes
USE_LDCONFIG= yes
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ARGS= --localstatedir=/var
@ -37,7 +37,8 @@ PLIST_SUB+= WITH_PERL="@comment "
.endif
.if defined(WITH_PYTHON)
USE_PYTHON= yes
USE_PYTHON= 2.3+
.include "${PORTSDIR}/Mk/bsd.python.mk"
CONFIGURE_ARGS+= --with-python
PLIST_SUB+= WITH_PYTHON=""
.else

View File

@ -1,3 +1,3 @@
MD5 (libprelude-0.9.10.2.tar.gz) = 999e9f86a23abfb05985d027610cbe8f
SHA256 (libprelude-0.9.10.2.tar.gz) = b7c82b6d6193100f39a39738227f3317abfc78bd0593ad306ea1b97a9352db90
SIZE (libprelude-0.9.10.2.tar.gz) = 1790030
MD5 (libprelude-0.9.11.tar.gz) = e0ec03daf8230829f238a1e58f10846b
SHA256 (libprelude-0.9.11.tar.gz) = 1f1ae289bd6d4fac277e43287c5024d38a3e9eb47bc64e404b610d17de5100f6
SIZE (libprelude-0.9.11.tar.gz) = 1809482

View File

@ -52,7 +52,7 @@ include/libprelude/prelude.h
include/libprelude/variable.h
lib/libprelude.la
lib/libprelude.so
lib/libprelude.so.9
lib/libprelude.so.10
%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/Prelude.pm
%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/.packlist
%%WITH_PERL%%%%SITE_PERL%%/%%PERL_ARCH%%/auto/Prelude/Prelude.bs

View File

@ -12,7 +12,7 @@ MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
MAINTAINER= r.gruyters@yirdis.nl
COMMENT= Framework library for access to Prelude NIDS database
LIB_DEPENDS= prelude.9:${PORTSDIR}/security/libprelude
LIB_DEPENDS= prelude.10:${PORTSDIR}/security/libprelude
USE_GPG= yes
SIG_SUFFIX= .sig

View File

@ -13,7 +13,7 @@ MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
MAINTAINER= r.gruyters@yirdis.nl
COMMENT= Prelude Network Intrusion Detection System Log Monitoring Lackey
LIB_DEPENDS+= prelude.[8-?]:${PORTSDIR}/security/libprelude \
LIB_DEPENDS+= prelude.10:${PORTSDIR}/security/libprelude \
pcre.0:${PORTSDIR}/devel/pcre
USE_GPG= yes

View File

@ -13,7 +13,7 @@ MASTER_SITES= http://www.prelude-ids.org/download/releases/ \
MAINTAINER= r.gruyters@yirdis.nl
COMMENT= Prelude Network Intrusion Detection System central logging point
LIB_DEPENDS+= prelude.[6-?]:${PORTSDIR}/security/libprelude \
LIB_DEPENDS+= prelude.10:${PORTSDIR}/security/libprelude \
gnutls.13:${PORTSDIR}/security/gnutls
USE_GPG= yes

View File

@ -93,7 +93,7 @@ CONFIGURE_ARGS+= --with-logserver=${WITH_LOG_SERVER}
CONFIGURE_ARGS+= --with-altlogserver=${WITH_ALT_LOG_SERVER}
.endif
.if defined(WITH_PRELUDE)
LIB_DEPENDS+= prelude.[7-?]:${PORTSDIR}/security/libprelude
LIB_DEPENDS+= prelude.10:${PORTSDIR}/security/libprelude
CONFIGURE_ARGS+= --with-prelude
.endif

View File

@ -106,7 +106,7 @@ CONFIGURE_ARGS+= --with-postgresql=no
.endif
.if defined(WITH_PRELUDE)
LIB_DEPENDS+= prelude.[7-?]:${PORTSDIR}/security/libprelude
LIB_DEPENDS+= prelude.10:${PORTSDIR}/security/libprelude
CONFIGURE_ARGS+= --enable-prelude
PLIST_SUB+= PRELUDE=""
.else