6789bd2f42
Sarah is a program which is used to trim, rotate, archive and delete log files. It is meant to run periodically out of cron, determining what to do based on a configuration file. Sarah is designd to be an optional replacment for newsyslog, depending on your needs. Mmmmm, SMG.
27 lines
567 B
Makefile
27 lines
567 B
Makefile
# New ports collection makefile for: sarah
|
|
# Version required: 0.1b
|
|
# Date created: 10 Jan 2000
|
|
# Whom: Matthew Pounsett <mattp@conundrum.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
DISTNAME= sarah-0.1b
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ftp://ftp.conundrum.com/pub/sarah/
|
|
|
|
MAINTAINER= mattp@conundrum.com
|
|
|
|
MAN1= sarah.1
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_SCRIPT} sarah ${PREFIX}/bin
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_DATA} sarah.conf.sample ${PREFIX}/etc
|
|
cd ${WRKSRC} && \
|
|
${INSTALL_MAN} ${MAN1} ${PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|