From owner-svn-ports-head@FreeBSD.ORG Wed Feb 19 21:17:21 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 6F9329D6; Wed, 19 Feb 2014 21:17:21 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5AD59154A; Wed, 19 Feb 2014 21:17:21 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1JLHLiN070132; Wed, 19 Feb 2014 21:17:21 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1JLHLma070131; Wed, 19 Feb 2014 21:17:21 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201402192117.s1JLHLma070131@svn.freebsd.org> From: John Marino Date: Wed, 19 Feb 2014 21:17:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r345150 - head/sysutils/syslog-ng-devel X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Feb 2014 21:17:21 -0000 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