Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 19 Feb 2014 21:17:21 +0000 (UTC)
From:      John Marino <marino@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r345150 - head/sysutils/syslog-ng-devel
Message-ID:  <201402192117.s1JLHLma070131@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402192117.s1JLHLma070131>