freebsd-ports/sysutils/minirsyslogd/Makefile
Sergei Kolobov 77d4c218a4 Add minirsyslogd 1.02: minimal, fast and secure syslog receiver.
minirsyslogd is a minimalistic, fast and secure (through lack of bloat)
remote-only syslog receiver suitable for hardened log receiver hosts
and/or central log receivers that receive several gigabyte of logs each day.

It will not deal with local syslog data. It does not have a multitude
of configuration, alerting or scripting options. It will however
automatically split inbound syslog data according to IP address,
date and current hour, and do so as rapidly and (I hope) securely as
possible.

Author:	Mikael Olsson <mikael.olsson@clavister.com>
WWW:	http://www.clueby4.org/minirsyslogd/

PR:		58737
Submitted by:	lx@redundancy.redundancy.org
2003-10-30 21:59:57 +00:00

26 lines
618 B
Makefile

# New ports collection makefile for: minirsyslogd
# Date created: 2003-10-30
# Whom: lx@redundancy.redundancy.org
#
# $FreeBSD$
#
PORTNAME= minirsyslogd
PORTVERSION= 1.02
CATEGORIES= sysutils net
MASTER_SITES= http://www.clueby4.org/minirsyslogd/
MAINTAINER= lx@redundancy.redundancy.org
COMMENT= Minimal, fast and secure syslog receiver
MAN8= minirsyslogd.8
MANCOMPRESSED= yes
do-build:
cd ${WRKSRC} && ${CC} ${CFLAGS} -o ${PORTNAME} ${PORTNAME}.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.8.gz ${MAN8PREFIX}/man/man8
.include <bsd.port.mk>