svn commit: r345150 - head/sysutils/syslog-ng-devel

John Marino marino at FreeBSD.org
Wed Feb 19 21:17:21 UTC 2014


Author: marino
Date: Wed Feb 19 21:17:20 2014
New Revision: 345150
URL: http://svnweb.freebsd.org/changeset/ports/345150
QAT: https://qat.redports.org/buildarchive/r345150/

Log:
  sysutils/syslog-ng-devel: Unbreak everywhere (caused by unintalled docs)
  
  I spent a long while trying to figure out why the GNU makefile just
  suddenly stopped installing five man pages.  I never did understand what
  changed externally to cause that.
  
  In the end, I took a shortcut and just manually installed the man pages
  in the post-install target that was already being used.  That is simple
  and robust.

Modified:
  head/sysutils/syslog-ng-devel/Makefile

Modified: head/sysutils/syslog-ng-devel/Makefile
==============================================================================
--- head/sysutils/syslog-ng-devel/Makefile	Wed Feb 19 21:05:40 2014	(r345149)
+++ head/sysutils/syslog-ng-devel/Makefile	Wed Feb 19 21:17:20 2014	(r345150)
@@ -157,6 +157,9 @@ post-install:
 	${INSTALL_DATA} ${WRKSRC}/COPYING ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${WRKSRC}/NEWS ${STAGEDIR}${DOCSDIR}
 .endif
+	${INSTALL_MAN} ${WRKSRC}/doc/man/*.1 ${STAGEDIR}${PREFIX}/man/man1/
+	${INSTALL_MAN} ${WRKSRC}/doc/man/*.5 ${STAGEDIR}${PREFIX}/man/man5/
+	${INSTALL_MAN} ${WRKSRC}/doc/man/*.8 ${STAGEDIR}${PREFIX}/man/man8/
 	${INSTALL_DATA} ${FILESDIR}/syslog-ng.conf.sample ${STAGEDIR}${PREFIX}/etc
 	${INSTALL_DATA} ${WRKSRC}/scl/syslog-ng.conf.dist ${STAGEDIR}${PREFIX}/etc
 	${INSTALL_DATA} ${WRKSRC}/scl/scl.conf.dist ${STAGEDIR}${PREFIX}/etc


More information about the svn-ports-all mailing list