diff options
author | adrianp <adrianp@pkgsrc.org> | 2006-05-12 22:31:38 +0000 |
---|---|---|
committer | adrianp <adrianp@pkgsrc.org> | 2006-05-12 22:31:38 +0000 |
commit | a52ad051fcda4cfe64ce0ec097f3f411be0ddde9 (patch) | |
tree | eb30a50289c9d401e113632dd57ff0691206f4b2 /security/base/Makefile | |
parent | 1b7f6fd24c258f0b8fa883cee583355e7985f50e (diff) | |
download | pkgsrc-a52ad051fcda4cfe64ce0ec097f3f411be0ddde9.tar.gz |
Update to BASE 1.2.4
> Changes:
> - Fixed issue with PostGRES and schema in base_db.inc.php -- Kevin J and Nikns
> - Fixed bug 1284695 Error in SQL with PostgreSQL -- Kevin J and Nikns
> - Fixed issues displaying PortScans -- Nikns
> - Fixed sig_class (bug 1407325) and sig_priority filter bug -- Nikns and Max Valdez (garaged)
> - Fixed bug 1408387 Archive move and Email summary issues -- Nikns
> - Fixed bug when, after setup, archive database wasn't used -- Nikns
> - Fixed PostgreSQL archive database support -- Nikns
> - Fixed bug 1313261 Unable to use actions in base_stat_sensor.php -- Nikns
> - Fixed bug 1371532 First of month timestamp issue -- Nikns
> - Fixed bug 1406945 Lost alert order when switching between payload display -- Nikns
> - Fixed bug 1413712 base_conf.php file path issue under MS Windows -- garaged
> - Fixed search by signature name -- Nikns
> - Converted sql/create_base_tbls_mssql_extra.sql to CRLF line terminators -- Nikns
> - Fixed broken auth system for MSSQL -- Nikns
> - Changed MSSQL schema for table acid_event, sig_name now has type VARCHAR instead of TEXT -- Nikns
> - Fixed bug 1307250 broken base_stat_alerts.php with MSSQL -- Nikns
> - Fixed bug 1413594 Force to use alert database for auth system stuff -- Nikns
> - Setup fix, on error form values are remembered, default language is English -- garaged
> - Uppercased name 'Archive' in base_main.php (in sync with base_hdr1.php) -- Nikns
> - Fixed support for actions in base_stat_class.php -- Nikns
> - Fixed bug 1418660 Broken search by IP criteria -- Nikns
> - Added checkboxes and fixed support for actions in base_stat_iplink.php -- Nikns
> - Implemented RFE 1123382 support for actions in base_stat_uaddr.php -- Nikns
> - Implemented support for actions in base_stat_ports.php -- Nikns
> - Fixed bug 1422575 when empty email sent even if action unsuccessful -- Nikns
> - Fixed bug 1424033 Unable to Graph Alert Detection Time -- Nikns
> - Fixed bug 1426089 Score removed from email address -- Nikns
> - Fixed bug 1210542 and 1288402 Packet display mode issues -- Nikns
> - Detect archiving duplicates with select queries instead of catching db conflict error -- Nikns
> - Fixed bug 1430686 Update alert cache for archived alert right after it is coppied to archive db -- Nikns
> - Implemented archiving support for schema 107 -- Nikns
> - Added sig_gid (signature generator id) to snort signature reference url for schema 107 -- Nikns
> - session_start() on base_conf.php avoiding repetition, easier to handle with debug output -- garaged
> - debug_mode needs to be off on login (index.php:45 ) -- garaged
> - Fixed bug 1275536 Unable to download binary payload in Internet Explorer when using SSL -- Nikns
> - Implemented archiving support for FLoP extended database schema -- Nikns
> - Implemented rebuild of packet in pcap format for FLoP extended database -- Nikns
> - Added display of MAC addresses in base_query_alert.php for FLoP extended database -- Nikns
> - Fixed BASE authentication bypass in standalone mode for base_maintenance.php -- Nikns
> - Added HTTP response codes on authentication failure in base_maintenance.php for standalone mode -- Nikns
> - Fixed bug 1341286 Show IP header length in bytes, not words -- Juergen Leising
> - In plain display mode several sequential non-ASCII payload characters join together displaying their count -- Nikns
> - Changed input type of the password field in useradmin -- Kevin Johnson
Diffstat (limited to 'security/base/Makefile')
-rw-r--r-- | security/base/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/security/base/Makefile b/security/base/Makefile index 9591a660a40..dea69ecd41f 100644 --- a/security/base/Makefile +++ b/security/base/Makefile @@ -1,12 +1,12 @@ -# $NetBSD: Makefile,v 1.7 2006/03/14 20:43:23 jlam Exp $ +# $NetBSD: Makefile,v 1.8 2006/05/12 22:31:38 adrianp Exp $ # -DISTNAME= base-1.2.2 +DISTNAME= base-1.2.4 CATEGORIES= security MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=secureideas/} MAINTAINER= adrianp@NetBSD.org -HOMEPAGE= http://secureideas.sourceforge.net/ +HOMEPAGE= http://secureideas.sourceforge.net/ COMMENT= Analysis engine to process a database of security events DEPENDS+= adodb>=1.2:../../databases/adodb @@ -22,6 +22,8 @@ DEPENDS+= pear-Image_Graph-[0-9]*:../../graphics/pear-Image_Graph NO_BUILD= YES +.include "../../mk/bsd.prefs.mk" + DOC_FILES= CHANGELOG CREDITS README README.mssql TODO UPGRADE base_faq.rtf BASE_DIR= ${PREFIX}/share/base EGDIR= ${PREFIX}/share/examples/base @@ -61,11 +63,11 @@ do-install: ${INSTALL_SCRIPT} ${WRKSRC}/*.php ${BASE_DIR} . for f in ${DOC_FILES} - ${INSTALL_DATA} ${WRKSRC}/docs/${f} ${PREFIX}/share/doc/base + ${INSTALL_DATA} ${WRKSRC}/docs/${f:Q} ${PREFIX}/share/doc/base . endfor . for i in ${PAX_DIRS} - cd ${WRKSRC}/${i} && ${PAX} -rw . ${BASE_DIR}/${i} + cd ${WRKSRC}/${i:Q} && ${PAX} -rw . ${BASE_DIR}/${i:Q} . endfor @${CHOWN} ${WWW_USER} ${BASE_DIR} |