dec3f19fa5
proc-maillog: - Use "-d yesterday" to get more correct statistics on the typical case of rotating logs at midnight. - Add smtpd connection statistics. - Remove per-user top 10 lists. proc-messages: - Message updates: - New messages: Cyrus, HP printers, ISC dhcpd, NetBSD kernel, Net-SNMP and ProFTPD. - Account for views in more BIND named messages. - Handle rsnapshot, smartd and Sipura SIP phones/gateways. - Logic fixes: - Facilities don't always have a trailing colon (esp. on non-UNIX). - Remove sequence number and extra timestamp from Cisco messages. - Keep $origin per-host, so "last message repeated" is logged correctly. - Log only remote host when counting warnings for different software, so the thresholds are tripped more easily (the account used is not considered as important, since dictionary attacks are common). - Code maintenance: - Modernise Perl subroutine calls (no ampersand). - Centralise host[addr] string parsing. - Some whitespace cleanup. - Configuration changes: - Update $LOCAL (should go into a config file). roller: - Use "uname -n" instead of "netname", so network connectivity is not used.
29 lines
633 B
Makefile
29 lines
633 B
Makefile
# $NetBSD: Makefile,v 1.31 2008/12/25 13:27:02 kim Exp $
|
|
#
|
|
|
|
DISTNAME= roller-1.20
|
|
#PKGREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.gw.com/pub/people/kim/
|
|
|
|
MAINTAINER= kim@tac.nyc.ny.us
|
|
COMMENT= Roll log files
|
|
|
|
DEPENDS+= cpogm-[0-9]*:../../sysutils/cpogm
|
|
DEPENDS+= logtime-[0-9]*:../../time/logtime
|
|
DEPENDS+= pflogsumm-[0-9]*:../../sysutils/pflogsumm
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
NO_CONFIGURE= yes
|
|
USE_TOOLS+= perl:run
|
|
|
|
MAKE_FLAGS+= PREFIX=${PREFIX}
|
|
MAKE_FLAGS+= GAWK=${AWK}
|
|
MAKE_FLAGS+= PERL=${PERL5}
|
|
MAKE_FLAGS+= SH=${SH}
|
|
|
|
BUILD_TARGET= all
|
|
INSTALL_TARGET= install
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|