mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 09:49:18 -04:00
Sievelog is a message dispatcher inspired by swatch but more
focused on the following problems: * Having a clean syntax * Directing a raw syslog stream to different files based on content * Mailing out alerts based on content * Being fast Sievelog's syntax is as simple as "<regex>" -> /some/file. WWW: http://sievelog.googlecode.com/ PR: ports/149347 Submitted by: Jesse Kempf <jkempf@davisvision.com>
This commit is contained in:
parent
ceec337d6b
commit
b61a2cd026
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=259452
5 changed files with 52 additions and 0 deletions
|
@ -778,6 +778,7 @@
|
|||
SUBDIR += sge61
|
||||
SUBDIR += sge62
|
||||
SUBDIR += shlock
|
||||
SUBDIR += sievelog
|
||||
SUBDIR += skill
|
||||
SUBDIR += slack
|
||||
SUBDIR += sleuthkit
|
||||
|
|
33
sysutils/sievelog/Makefile
Normal file
33
sysutils/sievelog/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
# New ports collection makefile for: sievelog
|
||||
# Date created: 2010-07-26
|
||||
# Whom: Jesse Kempf <jessekempf@gmail.com>
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= sievelog
|
||||
PORTVERSION= 1.0.1
|
||||
CATEGORIES= sysutils python
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
||||
|
||||
MAINTAINER= jessekempf@gmail.com
|
||||
COMMENT= Syslog message filter
|
||||
|
||||
USE_PYTHON= 2.5+
|
||||
USE_PYDISTUTILS=yes
|
||||
|
||||
SUB_FILES= pkg-message
|
||||
|
||||
PLIST_FILES= bin/${PORTNAME} \
|
||||
etc/${PORTNAME}.conf.example
|
||||
|
||||
MAN1= ${PORTNAME}.1
|
||||
MAN5= ${PORTNAME}.conf.5
|
||||
|
||||
post-install:
|
||||
@${CP} -p ${WRKSRC}/test.sv ${PREFIX}/etc/${PORTNAME}.conf.example
|
||||
@${INSTALL_MAN} ${WRKSRC}/man/man1/${MAN1} ${MANPREFIX}/man/man1
|
||||
@${INSTALL_MAN} ${WRKSRC}/man/man5/${MAN5} ${MANPREFIX}/man/man5
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
3
sysutils/sievelog/distinfo
Normal file
3
sysutils/sievelog/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (sievelog-1.0.1.tar.gz) = f9a74569ab219705fef8579995340275
|
||||
SHA256 (sievelog-1.0.1.tar.gz) = eadcd61dcc9e86abe3ecfe65ffbae880871d9559ac31a660122ea4269da81111
|
||||
SIZE (sievelog-1.0.1.tar.gz) = 5482
|
4
sysutils/sievelog/files/pkg-message.in
Normal file
4
sysutils/sievelog/files/pkg-message.in
Normal file
|
@ -0,0 +1,4 @@
|
|||
An example sievelog configuration file has been dropped
|
||||
in %%PREFIX%%/etc/sievelog.conf.example.
|
||||
|
||||
For more details, see http://sievelog.googlecode.com/.
|
11
sysutils/sievelog/pkg-descr
Normal file
11
sysutils/sievelog/pkg-descr
Normal file
|
@ -0,0 +1,11 @@
|
|||
Sievelog is a message dispatcher inspired by swatch but more focused on the
|
||||
following problems:
|
||||
|
||||
* Having a clean syntax
|
||||
* Directing a raw syslog stream to different files based on content
|
||||
* Mailing out alerts based on content
|
||||
* Being fast
|
||||
|
||||
Sievelog's syntax is as simple as "<regex>" -> /some/file.
|
||||
|
||||
WWW: http://sievelog.googlecode.com/
|
Loading…
Add table
Reference in a new issue