svn commit: r361484 - head/mail/postfix-logwatch
Raphael Kubo da Costa
rakuco at FreeBSD.org
Thu Jul 10 19:12:04 UTC 2014
Author: rakuco
Date: Thu Jul 10 19:12:03 2014
New Revision: 361484
URL: http://svnweb.freebsd.org/changeset/ports/361484
QAT: https://qat.redports.org/buildarchive/r361484/
Log:
- Support staging.
- Use the @sample keyword in the plist.
PR: 191728
Submitted by: takefu at airport.fm
Modified:
head/mail/postfix-logwatch/Makefile
head/mail/postfix-logwatch/pkg-plist
Modified: head/mail/postfix-logwatch/Makefile
==============================================================================
--- head/mail/postfix-logwatch/Makefile Thu Jul 10 19:11:19 2014 (r361483)
+++ head/mail/postfix-logwatch/Makefile Thu Jul 10 19:12:03 2014 (r361484)
@@ -3,11 +3,12 @@
PORTNAME= postfix-logwatch
PORTVERSION= 1.40.00
+PORTREVISION= 1
CATEGORIES= mail
MASTER_SITES= SF/logreporters/${PORTNAME}/release/${PORTVERSION}
EXTRACT_SUFX= .tgz
-MAINTAINER= ports at FreeBSD.org
+MAINTAINER= ports at FreeBSD.org
COMMENT= Postfix MTA log parser
LICENSE= MIT
@@ -16,36 +17,35 @@ LICENSE_FILE= ${WRKSRC}/LICENSE
PORTDOCS= Bugs Changes README
PORTEXAMPLES= ${PORTNAME}.conf ${PORTNAME}.conf-topn
-MAN1= ${PORTNAME}.1
-
-USES= perl5
+USES= perl5 shebangfix
USE_PERL5= run
NO_BUILD= yes
+SHEBANG_FILES= ${PORTNAME}
+
+.include <bsd.port.options.mk>
-NO_STAGE= yes
post-patch:
@cd ${WRKSRC} && ${REINPLACE_CMD} -e '\
s!/usr/local/etc!${ETCDIR}! \
' ${PORTNAME} ${PORTNAME}.1 README
do-install:
- ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
- ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1
- @${CP} ${WRKSRC}/${PORTNAME}.conf ${WRKSRC}/${PORTNAME}.conf.sample
- @${MKDIR} ${ETCDIR}
- ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf.sample ${ETCDIR}
+ ${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+ ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MANPREFIX}/man/man1
+ @${MKDIR} ${STAGEDIR}${ETCDIR}
+ ${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample
post-install:
@if [ ! -f ${ETCDIR}/${PORTNAME}.conf ]; then \
- ${CP} -p ${ETCDIR}/${PORTNAME}.conf.sample ${ETCDIR}/${PORTNAME}.conf; \
+ ${CP} -p ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf; \
fi
-.if !defined(NOPORTDOCS)
- @${MKDIR} ${DOCSDIR}
- cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${DOCSDIR}
+.if ${PORT_OPTIONS:MDOCS}
+ @${MKDIR} ${STAGEDIR}${DOCSDIR}
+ cd ${WRKSRC} && ${INSTALL_MAN} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
.endif
-.if !defined(NOPORTEXAMPLES)
- @${MKDIR} ${EXAMPLESDIR}
- cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${EXAMPLESDIR}
+.if ${PORT_OPTIONS:MEXAMPLES}
+ @${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
+ cd ${WRKSRC} && ${INSTALL_DATA} ${PORTEXAMPLES} ${STAGEDIR}${EXAMPLESDIR}
.endif
.include <bsd.port.mk>
Modified: head/mail/postfix-logwatch/pkg-plist
==============================================================================
--- head/mail/postfix-logwatch/pkg-plist Thu Jul 10 19:11:19 2014 (r361483)
+++ head/mail/postfix-logwatch/pkg-plist Thu Jul 10 19:12:03 2014 (r361484)
@@ -1,5 +1,4 @@
- at unexec if cmp -s %D/%%ETCDIR%%/postfix-logwatch.conf.sample %D/%%ETCDIR%%/postfix-logwatch.conf; then rm -f %D/%%ETCDIR%%/postfix-logwatch.conf; fi
-%%ETCDIR%%/postfix-logwatch.conf.sample
- at exec if [ ! -f %B/postfix-logwatch.conf ] ; then cp -p %B/%f %B/postfix-logwatch.conf; fi
+ at sample %%ETCDIR%%/postfix-logwatch.conf.sample
@dirrmtry %%ETCDIR%%
bin/postfix-logwatch
+man/man1/postfix-logwatch.1.gz
More information about the svn-ports-all
mailing list