diff options
author | pav <pav@FreeBSD.org> | 2005-04-17 14:25:33 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2005-04-17 14:25:33 +0000 |
commit | d298543dd902ecf55d990168b3cd3b9c6f268ee0 (patch) | |
tree | a074d1721af3a6b32cb59fa5ade0d57c2b31d6c8 /security/osiris | |
parent | a215486d07be72f40d313f01fc82afe136fa4d2b (diff) | |
download | FreeBSD-ports-d298543dd902ecf55d990168b3cd3b9c6f268ee0.zip FreeBSD-ports-d298543dd902ecf55d990168b3cd3b9c6f268ee0.tar.gz |
- Update to 4.1.7
PR: ports/79984
Submitted by: David Thiel <lx@redundancy.redundancy.org> (maintainer)
Diffstat (limited to 'security/osiris')
-rw-r--r-- | security/osiris/Makefile | 9 | ||||
-rw-r--r-- | security/osiris/distinfo | 4 | ||||
-rw-r--r-- | security/osiris/files/patch-src-cli-osiris.c | 17 |
3 files changed, 25 insertions, 5 deletions
diff --git a/security/osiris/Makefile b/security/osiris/Makefile index e348cd9..115f5aa 100644 --- a/security/osiris/Makefile +++ b/security/osiris/Makefile @@ -6,7 +6,7 @@ # PORTNAME= osiris -PORTVERSION= 4.1.5 +PORTVERSION= 4.1.7 CATEGORIES= security MASTER_SITES= http://osiris.shmoo.com/data/ \ http://darkambient.net/ @@ -19,13 +19,16 @@ OPTIONS= OSIRISMD "Enable to build the management daemon" off \ CLI "Enable to build the management CLI" off GNU_CONFIGURE= yes -CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} \ - --enable-fancy-cli +CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} USE_LIBTOOL_VER= 15 USE_RC_SUBR= yes .include <bsd.port.pre.mk> +.if ${OSVERSION} < 500000 +LIB_DEPENDS+= readline.5:${PORTSDIR}/devel/readline +.endif + .if defined(WITH_OSIRISMD) PLIST_SUB+= OSIRISMD="" .else diff --git a/security/osiris/distinfo b/security/osiris/distinfo index aca57b4..bc549e6 100644 --- a/security/osiris/distinfo +++ b/security/osiris/distinfo @@ -1,2 +1,2 @@ -MD5 (osiris-4.1.5.tar.gz) = 12f28beb5b20421e0b94b0ceda434448 -SIZE (osiris-4.1.5.tar.gz) = 1886363 +MD5 (osiris-4.1.7.tar.gz) = de2470ebe864ec7a9351568dfac7f8d0 +SIZE (osiris-4.1.7.tar.gz) = 1891269 diff --git a/security/osiris/files/patch-src-cli-osiris.c b/security/osiris/files/patch-src-cli-osiris.c new file mode 100644 index 0000000..89def13 --- /dev/null +++ b/security/osiris/files/patch-src-cli-osiris.c @@ -0,0 +1,17 @@ +--- src/cli/osiris.c.orig Tue Apr 5 14:37:58 2005 ++++ src/cli/osiris.c Sun Apr 17 15:47:40 2005 +@@ -2985,11 +2985,13 @@ + + if( filters == NULL ) + { ++ OSI_CMP_FILTER *f; ++ + filters = list_new(); + + /* add a comment filter. */ + +- OSI_CMP_FILTER *f = osi_malloc( sizeof(OSI_CMP_FILTER) ); ++ f = osi_malloc( sizeof(OSI_CMP_FILTER) ); + osi_strlcpy( f->exclude, CMP_FILTER_COMMENT, sizeof(f->exclude) ); + list_add( filters, f ); + } |