4aa1a45735
While here add USES=localbase and unmute post-install tasks PR: 223227 Submitted by: a.ulasov@gmail.com (inspired by) Approved by: js@iksz.hu (maintainer)
33 lines
882 B
Makefile
33 lines
882 B
Makefile
# Created by: Yuan-Chen Cheng <ycheng@sinica.edu.tw>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= logrotate
|
|
PORTVERSION= 3.13.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= js@iksz.hu
|
|
COMMENT= Daemon to rotate, compress, remove, and mail system log files
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libpopt.so:devel/popt
|
|
|
|
USE_GITHUB= yes
|
|
|
|
PATCH_STRIP= -p1
|
|
USES= autoreconf gmake localbase
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-default-mail-command=/usr/bin/mailx \
|
|
--with-compress-command=/usr/bin/gzip \
|
|
--with-uncompress-command=/usr/bin/gunzip \
|
|
--with-state-file-path=/var/run/logrotate.status
|
|
|
|
post-install:
|
|
${SED} -e 's|__PREFIX__|${PREFIX}|' \
|
|
< ${FILESDIR}/logrotate.conf.sample > ${STAGEDIR}${PREFIX}/etc/logrotate.conf.sample
|
|
${MKDIR} ${STAGEDIR}${ETCDIR}.d
|
|
${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${FILESDIR}/syslog.sample ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|