summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradrianp <adrianp@pkgsrc.org>2006-01-03 21:13:37 +0000
committeradrianp <adrianp@pkgsrc.org>2006-01-03 21:13:37 +0000
commit83385fbd2d576c8e9b91d199db086c8d36ff6cb0 (patch)
tree29ec5cf5ccc460a90a49715507a1364c53efdfaf
parentc717f9c7a626d6df3016ad0ce92acdcd4ed65f47 (diff)
downloadpkgsrc-83385fbd2d576c8e9b91d199db086c8d36ff6cb0.tar.gz
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.
-rw-r--r--databases/acid/DESCR9
-rw-r--r--databases/acid/MESSAGE23
-rw-r--r--databases/acid/Makefile68
-rw-r--r--databases/acid/PLIST61
-rw-r--r--databases/acid/distinfo6
-rw-r--r--databases/acid/files/acid.conf14
-rw-r--r--databases/acid/patches/patch-aa35
7 files changed, 0 insertions, 216 deletions
diff --git a/databases/acid/DESCR b/databases/acid/DESCR
deleted file mode 100644
index 140f9d48f06..00000000000
--- a/databases/acid/DESCR
+++ /dev/null
@@ -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 --git a/databases/acid/MESSAGE b/databases/acid/MESSAGE
deleted file mode 100644
index 9184286b85b..00000000000
--- a/databases/acid/MESSAGE
+++ /dev/null
@@ -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 --git a/databases/acid/Makefile b/databases/acid/Makefile
deleted file mode 100644
index a6b7bbc3d19..00000000000
--- a/databases/acid/Makefile
+++ /dev/null
@@ -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
-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 --git a/databases/acid/PLIST b/databases/acid/PLIST
deleted file mode 100644
index d2f59f0197d..00000000000
--- a/databases/acid/PLIST
+++ /dev/null
@@ -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 --git a/databases/acid/distinfo b/databases/acid/distinfo
deleted file mode 100644
index 362c085ece8..00000000000
--- a/databases/acid/distinfo
+++ /dev/null
@@ -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 --git a/databases/acid/files/acid.conf b/databases/acid/files/acid.conf
deleted file mode 100644
index 42687e9c2a3..00000000000
--- a/databases/acid/files/acid.conf
+++ /dev/null
@@ -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 --git a/databases/acid/patches/patch-aa b/databases/acid/patches/patch-aa
deleted file mode 100644
index f95c63ea2a6..00000000000
--- a/databases/acid/patches/patch-aa
+++ /dev/null
@@ -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