077af361df
-- cronolog is a simple filter program that reads log file entries from standard input and writes each entry to the output file specified by a filename template and the current date and time. When the expanded filename changes, the current file is closed and a new one opened. cronolog is intended to be used in conjunction with a web server, such as Apache, to split the access log into daily or monthly logs. WWW: http://www.cronolog.org
22 lines
455 B
Makefile
22 lines
455 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/02/23 21:51:53 danh Exp $
|
|
|
|
COMMENT= "web log rotation program"
|
|
|
|
DISTNAME= cronolog-1.6.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.cronolog.org/download/
|
|
|
|
HOMEPAGE= http://www.cronolog.org/
|
|
|
|
MAINTAINER= Dan Harnett <danh@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
.include <bsd.port.mk>
|