From owner-svn-ports-all@freebsd.org Mon Apr 2 06:13:33 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BC964F756E0; Mon, 2 Apr 2018 06:13:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6A9356FD49; Mon, 2 Apr 2018 06:13:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 654D811EFD; Mon, 2 Apr 2018 06:13:32 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w326DW70044697; Mon, 2 Apr 2018 06:13:32 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w326DWiK044695; Mon, 2 Apr 2018 06:13:32 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201804020613.w326DWiK044695@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Mon, 2 Apr 2018 06:13:32 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466201 - in head/security/tinc: . files X-SVN-Group: ports-head X-SVN-Commit-Author: dinoex X-SVN-Commit-Paths: in head/security/tinc: . files X-SVN-Commit-Revision: 466201 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Apr 2018 06:13:33 -0000 Author: dinoex Date: Mon Apr 2 06:13:31 2018 New Revision: 466201 URL: https://svnweb.freebsd.org/changeset/ports/466201 Log: - fix content of manpages PR: 226917 Added: head/security/tinc/files/patch-doc-Makefile.am (contents, props changed) Modified: head/security/tinc/Makefile Modified: head/security/tinc/Makefile ============================================================================== --- head/security/tinc/Makefile Mon Apr 2 06:05:21 2018 (r466200) +++ head/security/tinc/Makefile Mon Apr 2 06:13:31 2018 (r466201) @@ -3,6 +3,7 @@ PORTNAME= tinc PORTVERSION= 1.0.33 +PORTREVISION= 1 CATEGORIES= security MASTER_SITES= https://www.tinc-vpn.org/packages/ \ http://www.tinc-vpn.org/packages/ @@ -14,7 +15,7 @@ LICENSE= GPLv3 LIB_DEPENDS= liblzo2.so:archivers/lzo2 -USES= cpe ssl makeinfo +USES= cpe ssl makeinfo autoreconf CPE_VENDOR= tinc-vpn GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include Added: head/security/tinc/files/patch-doc-Makefile.am ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/tinc/files/patch-doc-Makefile.am Mon Apr 2 06:13:31 2018 (r466201) @@ -0,0 +1,41 @@ +From 0a95c77f23352aafb08edd85da1c044c02bcb0b7 Mon Sep 17 00:00:00 2001 +From: Guus Sliepen +Date: Sat, 4 Nov 2017 19:52:08 +0100 +Subject: [PATCH] Fix building documentation when using OpenBSD's make. + +--- + doc/Makefile.am | 8 ++++---- + 1 file changed, 4 insertions(+), 4 deletions(-) + +diff --git a/doc/Makefile.am b/doc/Makefile.am +index fed46b7..60afb12 100644 +--- doc/Makefile.am ++++ doc/Makefile.am +@@ -6,7 +6,7 @@ man_MANS = tincd.8 tinc.conf.5 + + EXTRA_DIST = tincinclude.texi.in tincd.8.in tinc.conf.5.in sample-config + +-CLEANFILES = *.html tincd.8 tinc.conf.5 tincinclude.texi ++CLEANFILES = *.html tincd.8 tinc.conf.5 tincinclude.texi tinc.info + + texi2html: tinc.texi + $(AM_V_GEN)texi2html -split=chapter $< +@@ -25,12 +25,12 @@ substitute = sed \ + -e s,'@localstatedir\@',"$(localstatedir)",g + + tincd.8: $(srcdir)/tincd.8.in +- $(AM_V_GEN)$(substitute) $< > $@ ++ $(AM_V_GEN)$(substitute) $(srcdir)/tincd.8.in > $@ + + tinc.conf.5: $(srcdir)/tinc.conf.5.in +- $(AM_V_GEN)$(substitute) $< > $@ ++ $(AM_V_GEN)$(substitute) $(srcdir)/tinc.conf.5.in > $@ + + tincinclude.texi: $(srcdir)/tincinclude.texi.in +- $(AM_V_GEN)$(substitute) $< > $@ ++ $(AM_V_GEN)$(substitute) $(srcdir)/tincinclude.texi.in > $@ + + tinc.texi: tincinclude.texi +-- +2.16.2 +