Received: by mail.netbsd.org (Postfix, from userid 605) id 4B75084D6E; Thu, 29 Nov 2018 09:15:27 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 93D1A84CDA for ; Thu, 29 Nov 2018 09:15:26 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 26mrn0KWT2RN for ; Thu, 29 Nov 2018 09:15:25 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D04F384C82 for ; Thu, 29 Nov 2018 09:15:25 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 30C49FB1F; Thu, 29 Nov 2018 09:15:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1543482923222610" MIME-Version: 1.0 Date: Thu, 29 Nov 2018 09:15:23 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/graphics/tesseract To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20181129091523.30C49FB1F@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1543482923222610 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: adam Date: Thu Nov 29 09:15:23 UTC 2018 Modified Files: pkgsrc/graphics/tesseract: distinfo Added Files: pkgsrc/graphics/tesseract/patches: patch-doc_Makefile.am Log Message: tesseract: fix manpage formatting To generate a diff of this commit: cvs rdiff -u -r1.19 -r1.20 pkgsrc/graphics/tesseract/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/graphics/tesseract/patches/patch-doc_Makefile.am Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1543482923222610 Content-Disposition: inline Content-Length: 1850 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/tesseract/distinfo diff -u pkgsrc/graphics/tesseract/distinfo:1.19 pkgsrc/graphics/tesseract/distinfo:1.20 --- pkgsrc/graphics/tesseract/distinfo:1.19 Sat Nov 3 09:13:07 2018 +++ pkgsrc/graphics/tesseract/distinfo Thu Nov 29 09:15:22 2018 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.19 2018/11/03 09:13:07 adam Exp $ +$NetBSD: distinfo,v 1.20 2018/11/29 09:15:22 adam Exp $ SHA1 (tessdata-4.0.0.tar.gz) = 94557a6ecdf8ff8bec131598759e7d3b0bca1911 RMD160 (tessdata-4.0.0.tar.gz) = 2e826e866b56ff8b9cb2c6613f04d8c4a4ff98d7 @@ -8,4 +8,5 @@ SHA1 (tesseract-4.0.0.tar.gz) = 243a4919 RMD160 (tesseract-4.0.0.tar.gz) = 0e95d343639ab98c6d3fbc528053b627b6e12282 SHA512 (tesseract-4.0.0.tar.gz) = 69e57d4ba1fc43d212fd0fff69a2b5d48a3b37cfee7054fdc083cbb7e04d92317609a32e457229661d70ce8d9b16c9d25e81bfc3861db660dd2c8f292202d447 Size (tesseract-4.0.0.tar.gz) = 1961372 bytes +SHA1 (patch-doc_Makefile.am) = fd9cc782e766428de5709b77d7a2476be55ec7d8 SHA1 (patch-tessdata_Makefile.am) = 496926e629d3803165306c22a9c03ff71f5b774f Added files: Index: pkgsrc/graphics/tesseract/patches/patch-doc_Makefile.am diff -u /dev/null pkgsrc/graphics/tesseract/patches/patch-doc_Makefile.am:1.1 --- /dev/null Thu Nov 29 09:15:23 2018 +++ pkgsrc/graphics/tesseract/patches/patch-doc_Makefile.am Thu Nov 29 09:15:23 2018 @@ -0,0 +1,24 @@ +$NetBSD: patch-doc_Makefile.am,v 1.1 2018/11/29 09:15:23 adam Exp $ + +Properly format manpages. + +--- doc/Makefile.am.orig 2018-11-29 08:57:43.000000000 +0000 ++++ doc/Makefile.am +@@ -2,7 +2,7 @@ + + if ASCIIDOC + +-asciidoc=asciidoc -d manpage ++asciidoc=a2x -f manpage + + + man_MANS = \ +@@ -36,7 +36,7 @@ EXTRA_DIST = $(man_MANS) Doxyfile + html: $(patsubst %,%.html,$(man_MANS)) + + %: %.asc +- $(asciidoc) -o $@ $< ++ $(asciidoc) $< + + %.html: %.asc + asciidoc -b html5 -o $@ $< --_----------=_1543482923222610--