freebsd-ports/sysutils/sievelog/Makefile
Sahil Tandon b61a2cd026 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>
2010-08-17 23:00:22 +00:00

34 lines
769 B
Makefile

# 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>