From 5b0861254115b1fb7a4bd36253c7b14c33eec687 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 22 Oct 2013 16:57:44 +0000 Subject: Try and be consistent with what commands are silent and not in *install. - MKDIR is silent - ECHO is silent - INSTALL_* are not silent - CP/FIND/... are not silent I fixed a few PORTDOCS misusage, I'll do a second pass. With Hat: perl@ --- security/p5-Authen-Radius/Makefile | 4 +--- security/p5-Digest-MD4/Makefile | 2 +- security/p5-Net-SAML/Makefile | 2 +- security/p5-Net-SSLeay/Makefile | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) (limited to 'security') diff --git a/security/p5-Authen-Radius/Makefile b/security/p5-Authen-Radius/Makefile index 4cf159f42b7c..791c95921267 100644 --- a/security/p5-Authen-Radius/Makefile +++ b/security/p5-Authen-Radius/Makefile @@ -38,8 +38,6 @@ pre-configure: post-install: @${MKDIR} ${DATADIR} -.for FILE in ${RADDBFILES} - @${INSTALL_DATA} ${WRKSRC}/raddb/${FILE} ${DATADIR}/${FILE} -.endfor + cd ${WRKSRC}/raddb/ && ${INSTALL_DATA} ${RADDBFILES} ${DATADIR} .include diff --git a/security/p5-Digest-MD4/Makefile b/security/p5-Digest-MD4/Makefile index 63dcd4172c7f..1f114bd29ded 100644 --- a/security/p5-Digest-MD4/Makefile +++ b/security/p5-Digest-MD4/Makefile @@ -26,7 +26,7 @@ NO_STAGE= yes post-install: .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR}/ + @${MKDIR} ${DOCSDIR}/ cd ${WRKSRC}/ && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/ @${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}." .endif diff --git a/security/p5-Net-SAML/Makefile b/security/p5-Net-SAML/Makefile index 4996d23deec4..8552c0187b78 100644 --- a/security/p5-Net-SAML/Makefile +++ b/security/p5-Net-SAML/Makefile @@ -30,7 +30,7 @@ post-patch: post-install: .if !defined(NOPORTEXAMPLES) - ${MKDIR} ${EXAMPLESDIR}/ + @${MKDIR} ${EXAMPLESDIR}/ cd ${WRKSRC}/../ && ${INSTALL_SCRIPT} zxid.pl zxidhlo.pl ${EXAMPLESDIR}/ .endif diff --git a/security/p5-Net-SSLeay/Makefile b/security/p5-Net-SSLeay/Makefile index cf9f58d9681a..47ab8f72b499 100644 --- a/security/p5-Net-SSLeay/Makefile +++ b/security/p5-Net-SSLeay/Makefile @@ -35,7 +35,7 @@ post-patch: post-install: .if ${PORT_OPTIONS:MEXAMPLES} - ${MKDIR} ${EXAMPLESDIR}/ + @${MKDIR} ${EXAMPLESDIR}/ ${INSTALL_SCRIPT} ${WRKSRC}/examples/*.pl ${EXAMPLESDIR}/ ${INSTALL_DATA} ${WRKSRC}/examples/req.conf ${EXAMPLESDIR}/req.conf .endif -- cgit