diff options
author | jedgar <jedgar@FreeBSD.org> | 2000-01-22 11:10:03 +0800 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2000-01-22 11:10:03 +0800 |
commit | 3e4776ff24ef9fdcf4eb6183d899d9d798fa666b (patch) | |
tree | 6bfc9c897a22cce3cdeb934adc64b402a34a7fa8 /sysutils/cronolog/Makefile | |
parent | c92a8020cd3c34306111148d9e5757b104f0ce41 (diff) | |
download | freebsd-ports-gnome-3e4776ff24ef9fdcf4eb6183d899d9d798fa666b.tar.gz freebsd-ports-gnome-3e4776ff24ef9fdcf4eb6183d899d9d798fa666b.tar.zst freebsd-ports-gnome-3e4776ff24ef9fdcf4eb6183d899d9d798fa666b.zip |
cronolog is a simple program that reads log messages from its input
and writes them to a set of output files, the names of which are
constructed using template and the current date and time. The
template uses the same format specifiers as the Unix date command
(which are the same as the standard C strftime library function).
PR: 16254
Submitted by: Mark Blackman <tmb_ports@maddog.u-net.com>
Diffstat (limited to 'sysutils/cronolog/Makefile')
-rw-r--r-- | sysutils/cronolog/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sysutils/cronolog/Makefile b/sysutils/cronolog/Makefile new file mode 100644 index 000000000000..f0f886015db8 --- /dev/null +++ b/sysutils/cronolog/Makefile @@ -0,0 +1,22 @@ +# New ports collection makefile for: cronolog +# Version required: 1.6.1 +# Date created: 20 January 2000 +# Whom: Mark Blackman <tmb_ports@maddog.u-net.com> +# +# $FreeBSD$ +# + +DISTNAME= cronolog-1.6.1 +CATEGORIES= sysutils +MASTER_SITES= http://www.ford-mason.co.uk/resources/cronolog/ + +MAINTAINER= tmb_ports@maddog.u-net.com + +MAN1= cronolog.1m cronosplit.1m + +GNU_CONFIGURE= yes + +post-install: + ${STRIP} ${PREFIX}/sbin/cronolog ${PREFIX}/sbin/cronolog + +.include <bsd.port.mk> |