svn commit: r495318 - head/dns/yadifa

Kurt Jaeger pi at FreeBSD.org
Sun Mar 10 19:48:02 UTC 2019


Author: pi
Date: Sun Mar 10 19:48:01 2019
New Revision: 495318
URL: https://svnweb.freebsd.org/changeset/ports/495318

Log:
  dns/yadifa: fix installation of the sample config
  
  PR:		236322
  Submitted by:	Leo Vandewoestijne <freebsd at dns.company> (maintainer)

Modified:
  head/dns/yadifa/Makefile

Modified: head/dns/yadifa/Makefile
==============================================================================
--- head/dns/yadifa/Makefile	Sun Mar 10 19:32:23 2019	(r495317)
+++ head/dns/yadifa/Makefile	Sun Mar 10 19:48:01 2019	(r495318)
@@ -43,19 +43,19 @@ post-configure:
 	${REINPLACE_CMD} -e 's|/usr/local/var|/var|' -e 's|/var/zones|/var/${PORTNAME}|' ${WRKSRC}/etc/yadifad.conf.example
 
 pre-build:
-	@cd ${WRKSRC} && ${MAKE_CMD} features
+	cd ${WRKSRC} && ${MAKE_CMD} features
 
 post-install:
-	${MV} ${STAGEDIR}${PREFIX}/etc/yadifad.conf \
+	${CP} ${WRKSRC}/etc/yadifad.conf \
 		${STAGEDIR}${PREFIX}/etc/yadifad.conf.sample
-	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
-	@${MV} ${STAGEDIR}/var/zones ${STAGEDIR}/var/${PORTNAME}
+	${MV} ${STAGEDIR}/var/zones ${STAGEDIR}/var/${PORTNAME}
 
 post-install-EXAMPLES-on:
-	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
+	${MKDIR} ${STAGEDIR}${PREFIX}/etc/bash_completion.d/
 .for f in yadifa yadifad
-	@${LN} -s ../../${EXAMPLESDIR_REL}/$f.bash_completion \
+	${LN} -s ../../${EXAMPLESDIR_REL}/$f.bash_completion \
 		${STAGEDIR}${PREFIX}/etc/bash_completion.d/$f.sh
 .endfor
 


More information about the svn-ports-all mailing list