pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/databases/acid databases/acid has now been replace by ...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/eb6bc2604d41
branches:  trunk
changeset: 505499:eb6bc2604d41
user:      adrianp <adrianp%pkgsrc.org@localhost>
date:      Tue Jan 03 21:13:37 2006 +0000

description:
databases/acid has now been replace by security/base.

BASE is a fork of ACID that is under current developement where as ACID has
not had an update for a number of years now and suffers from current security
issues.

diffstat:

 databases/acid/DESCR            |   9 -----
 databases/acid/MESSAGE          |  23 -------------
 databases/acid/Makefile         |  68 -----------------------------------------
 databases/acid/PLIST            |  61 ------------------------------------
 databases/acid/distinfo         |   6 ---
 databases/acid/files/acid.conf  |  14 --------
 databases/acid/patches/patch-aa |  35 ---------------------
 7 files changed, 0 insertions(+), 216 deletions(-)

diffs (244 lines):

diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/DESCR
--- a/databases/acid/DESCR      Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,9 +0,0 @@
-The Analysis Console for Intrusion Databases (ACID) is a PHP-based analysis
-engine to search and process a database of security events generated by
-various IDSes, firewalls, and network monitoring tools.
-
-ACID has the ability to analyze a wide variety of events which are
-post-processed into its database. Tools exist for the following formats:
-
-- Snort
-- logsnorter
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/MESSAGE
--- a/databases/acid/MESSAGE    Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,23 +0,0 @@
-===========================================================================
-$NetBSD: MESSAGE,v 1.2 2005/09/28 14:15:48 rillig Exp $
-
-You will need to make ACID accessible through your HTTP server.
-If you are running Apache and ap-php, then you may copy:
-
-       ${EXDIR}/acid.conf
-
-to ${PKG_SYSCONFDIR}/httpd and add the following line to httpd.conf:
-
-       Include ${PKG_SYSCONFDIR}/httpd/acid.conf
-
-to make ACID accessible through:
-
-       http://www.domain.com/acid/
-
-You will need to customise ${ACID_DIR}/acid_conf.php before
-ACID will work.  This includes setting up database access.
-For detailed instructions see:
-
-       http://www.andrew.cmu.edu/~rdanyliw/snort/acid_config.html
-
-===========================================================================
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/Makefile
--- a/databases/acid/Makefile   Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,68 +0,0 @@
-# $NetBSD: Makefile,v 1.9 2005/04/11 21:45:10 tv Exp $
-#
-
-DISTNAME=      acid-0.9.6b23
-PKGREVISION=   1
-CATEGORIES=    databases www
-MASTER_SITES=  http://www.andrew.cmu.edu/~rdanyliw/snort/
-
-MAINTAINER=    adrianp%NetBSD.org@localhost
-HOMEPAGE=      http://www.andrew.cmu.edu/~rdanyliw/snort/snortacid.html
-COMMENT=       Analysis engine to process a database of security events
-
-DEPENDS+=      adodb>=1.2:../../databases/adodb
-DEPENDS+=      php-jpgraph>=1.8:../../graphics/php-jpgraph
-DEPENDS+=      php-gd>=4.0.4:../../graphics/php-gd
-DEPENDS+=      php-sockets>=4.0.4:../../net/php-sockets
-
-NO_BUILD=      yes
-WRKSRC=                ${WRKDIR}/acid
-
-.include "../../mk/bsd.prefs.mk"
-
-# This package will default to using MySQL.  If you want to use
-# postgresql set USE_PGSQL=YES in /etc/mk.conf or pass it to
-# make. ie. make install USE_PGSQL=YES
-#
-.if defined(USE_PGSQL) && ${USE_PGSQL} == YES
-DEPENDS+=      php-pgsql>=4.0.4:../../databases/php-pgsql
-DBTYPE=                postgres
-.else
-DEPENDS+=      php-mysql>=4.0.4:../../databases/php-mysql
-DBTYPE=                mysql
-.endif
-
-BUILD_DEFS+=   USE_PGSQL
-
-DOC_FILES=     CHANGELOG CREDITS README README.mssql TODO
-ACID_DIR=      ${PREFIX}/share/acid
-EXDIR=         ${PREFIX}/share/examples/acid
-MESSAGE_SUBST+= EXDIR=${EXDIR} ACID_DIR=${ACID_DIR}
-
-pre-install:
-       @${SED} -e 's#@ACID_DIR@#${ACID_DIR}#g' ${FILESDIR}/acid.conf \
-               >${WRKDIR}/acid.conf
-
-       @${CP} ${WRKSRC}/acid_conf.php ${WRKSRC}/acid_conf.php.orig
-
-       @${SED} -e 's#@PREFIX@#${PREFIX}#g' \
-                       -e 's#@DBTYPE@#${DBTYPE}#g' \
-                       ${WRKSRC}/acid_conf.php.orig >${WRKSRC}/acid_conf.php
-
-do-install:
-       ${INSTALL_DATA_DIR} ${ACID_DIR}
-       ${INSTALL_DATA_DIR} ${EXDIR}
-       ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/acid
-       ${INSTALL_SCRIPT} ${WRKSRC}/*.php ${ACID_DIR}
-       ${INSTALL_DATA} ${WRKSRC}/*.inc ${ACID_DIR}
-       ${INSTALL_DATA} ${WRKSRC}/*.html ${ACID_DIR}
-       ${INSTALL_DATA} ${WRKSRC}/*.sql ${ACID_DIR}
-       ${INSTALL_DATA} ${WRKSRC}/*.css ${ACID_DIR}
-
-       for FILE in ${DOC_FILES}; do \
-               ${INSTALL_DATA} ${WRKSRC}/$$FILE ${PREFIX}/share/doc/acid; \
-       done
-
-       ${INSTALL_DATA} ${WRKDIR}/acid.conf ${EXDIR}
-
-.include "../../mk/bsd.pkg.mk"
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/PLIST
--- a/databases/acid/PLIST      Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,61 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2004/04/20 09:50:55 xtraeme Exp $
-share/acid/acid_action.inc
-share/acid/acid_ag_common.php
-share/acid/acid_ag_main.php
-share/acid/acid_app_faq.php
-share/acid/acid_cache.inc
-share/acid/acid_common.php
-share/acid/acid_conf.php
-share/acid/acid_constants.inc
-share/acid/acid_db.inc
-share/acid/acid_db_common.php
-share/acid/acid_db_setup.php
-share/acid/acid_footer.html
-share/acid/acid_graph_common.php
-share/acid/acid_graph_display.php
-share/acid/acid_graph_form.php
-share/acid/acid_graph_main.php
-share/acid/acid_hdr1.html
-share/acid/acid_hdr2.html
-share/acid/acid_include.inc
-share/acid/acid_log_error.inc
-share/acid/acid_log_timing.inc
-share/acid/acid_main.php
-share/acid/acid_maintenance.php
-share/acid/acid_net.inc
-share/acid/acid_output_html.inc
-share/acid/acid_output_query.inc
-share/acid/acid_qry_alert.php
-share/acid/acid_qry_common.php
-share/acid/acid_qry_form.php
-share/acid/acid_qry_main.php
-share/acid/acid_qry_sqlcalls.php
-share/acid/acid_signature.inc
-share/acid/acid_stat_alerts.php
-share/acid/acid_stat_class.php
-share/acid/acid_stat_common.php
-share/acid/acid_stat_ipaddr.php
-share/acid/acid_stat_iplink.php
-share/acid/acid_stat_ports.php
-share/acid/acid_stat_sensor.php
-share/acid/acid_stat_time.php
-share/acid/acid_stat_uaddr.php
-share/acid/acid_state_citems.inc
-share/acid/acid_state_common.inc
-share/acid/acid_state_criteria.inc
-share/acid/acid_state_query.inc
-share/acid/acid_style.css
-share/acid/create_acid_tbls_mssql.sql
-share/acid/create_acid_tbls_mssql_extra.sql
-share/acid/create_acid_tbls_mysql.sql
-share/acid/create_acid_tbls_pgsql.sql
-share/acid/create_acid_tbls_pgsql_extra.sql
-share/acid/index.html
-share/doc/acid/CHANGELOG
-share/doc/acid/CREDITS
-share/doc/acid/README
-share/doc/acid/README.mssql
-share/doc/acid/TODO
-share/examples/acid/acid.conf
-@dirrm share/doc/acid
-@dirrm share/acid
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/distinfo
--- a/databases/acid/distinfo   Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.2 2005/02/23 16:33:05 agc Exp $
-
-SHA1 (acid-0.9.6b23.tar.gz) = 2ca04ea4482507ac924318bb1d086021388ef9a6
-RMD160 (acid-0.9.6b23.tar.gz) = e08cf26c4d420d34d4a0a38eb14e2172d346234b
-Size (acid-0.9.6b23.tar.gz) = 116728 bytes
-SHA1 (patch-aa) = 24d38240bbb0549e8d930831987c7f1c1a113c0b
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/files/acid.conf
--- a/databases/acid/files/acid.conf    Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-# $NetBSD: acid.conf,v 1.1.1.1 2004/04/20 09:50:55 xtraeme Exp $
-#
-# ACID configuration file fragment for Apache
-
-<IfModule mod_alias.c>
-    Alias /acid/ "@ACID_DIR@/"
-</IfModule>
-
-<Directory "@ACID_DIR@">
-    Options Indexes
-    AllowOverride None
-    Order allow,deny
-    Allow from all
-</Directory>
diff -r 9d5a4445b722 -r eb6bc2604d41 databases/acid/patches/patch-aa
--- a/databases/acid/patches/patch-aa   Tue Jan 03 21:10:39 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,35 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2004/04/20 09:50:55 xtraeme Exp $
-
---- acid_conf.php.orig Thu Jan  9 01:04:07 2003
-+++ acid_conf.php      Tue Jul  8 12:33:30 2003
-@@ -9,7 +9,7 @@
-  *        $foo = "c:\tmp"    [OK]
-  *        $foo = "c:\tmp\"   [WRONG]
-  */
--$DBlib_path = "";
-+$DBlib_path = "@PREFIX@/share/adodb";
- 
- /* The type of underlying alert database
-  * 
-@@ -17,7 +17,7 @@
-  *  PostgresSQL : "postgres"
-  *  MS SQL Server : "mssql"
-  */
--$DBtype = "mysql";
-+$DBtype = "@DBTYPE@";
- 
- /* Alert DB connection parameters
-  *   - $alert_dbname   : MySQL database name of Snort alert DB
-@@ -66,10 +66,10 @@
- /* Path to the graphing library 
-  *  (Note: DO NOT include a trailing backslash after the directory)
-  */
--$ChartLib_path = "";
-+$ChartLib_path = "@PREFIX@/share/php-jpgraph";
- 
- /* File format of charts ('png', 'jpeg', 'gif') */
--$chart_file_format = "png";
-+$chart_file_format = "jpeg";
- 
- /* Chart default colors - (red, green, blue)
-  *    - $chart_bg_color_default    : background color of chart



Home | Main Index | Thread Index | Old Index