mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
ef1976c7a9
PR: ports/179524 Submitted by: Balazs Nagy <js@iksz.hu> (maintainer)
30 lines
716 B
Makefile
30 lines
716 B
Makefile
# Created by: Yuan-Chen Cheng <ycheng@sinica.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= logrotate
|
|
PORTVERSION= 3.8.5
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= https://fedorahosted.org/releases/l/o/logrotate/
|
|
|
|
MAINTAINER= js@iksz.hu
|
|
COMMENT= Daemon to rotate, compress, remove, and mail system log files
|
|
|
|
LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt
|
|
|
|
PATCH_STRIP= -p1
|
|
USE_GMAKE= yes
|
|
MAKE_ENV= "BASEDIR=${PREFIX}"
|
|
CPP= ${CC} -E
|
|
|
|
MAN5= logrotate.conf.5
|
|
MAN8= logrotate.8
|
|
MANCOMPRESSED= no
|
|
|
|
post-install:
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
@${SED} -e 's|__PREFIX__|${PREFIX}|' \
|
|
< ${FILESDIR}/logrotate.conf.sample > ${PREFIX}/etc/logrotate.conf.sample
|
|
@${INSTALL_DATA} ${FILESDIR}/syslog.sample ${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|