From owner-svn-ports-head@freebsd.org Sat Sep 2 12:57:22 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 4CAE9E11EF4; Sat, 2 Sep 2017 12:57:22 +0000 (UTC) (envelope-from tobik@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 mx1.freebsd.org (Postfix) with ESMTPS id 2600C204E; Sat, 2 Sep 2017 12:57:22 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v82CvLjZ099652; Sat, 2 Sep 2017 12:57:21 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v82CvKN0099647; Sat, 2 Sep 2017 12:57:20 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201709021257.v82CvKN0099647@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sat, 2 Sep 2017 12:57:20 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r449135 - in head/print: . pdfstitch X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head/print: . pdfstitch X-SVN-Commit-Revision: 449135 X-SVN-Commit-Repository: ports 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.23 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: Sat, 02 Sep 2017 12:57:22 -0000 Author: tobik Date: Sat Sep 2 12:57:20 2017 New Revision: 449135 URL: https://svnweb.freebsd.org/changeset/ports/449135 Log: New port: print/pdfstitch Pdfstitcher can transform a regular multi-page PDF into a single-page PDF, which displays the pages in a grid. While there are other tools that do the same, pdfstitcher focuses on the following features: - Crop pages to a certain size - Adjust the crop position per page WWW: https://github.com/sur5r/pdfstitch PR: 221396 Submitted by: Stefan Hagen Reviewed by: ultima Added: head/print/pdfstitch/ head/print/pdfstitch/Makefile (contents, props changed) head/print/pdfstitch/distinfo (contents, props changed) head/print/pdfstitch/pkg-descr (contents, props changed) head/print/pdfstitch/pkg-plist (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Sat Sep 2 12:40:00 2017 (r449134) +++ head/print/Makefile Sat Sep 2 12:57:20 2017 (r449135) @@ -162,6 +162,7 @@ SUBDIR += pdfcube SUBDIR += pdflib SUBDIR += pdflib-perl + SUBDIR += pdfstitch SUBDIR += pdftk SUBDIR += pear-File_PDF SUBDIR += pecl-haru Added: head/print/pdfstitch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfstitch/Makefile Sat Sep 2 12:57:20 2017 (r449135) @@ -0,0 +1,31 @@ +# Created by: Stefan Hagen +# $FreeBSD$ + +PORTNAME= pdfstitch +DISTVERSIONPREFIX= v +DISTVERSION= 0.4 +CATEGORIES= print + +MAINTAINER= ports@textmail.me +COMMENT= Crop and stitch pages from PDF to larger, single-page PDF + +LICENSE= AGPLv3 +LICENSE_FILE= ${WRKSRC}/LICENSE.txt + +RUN_DEPENDS= textproc/p5-YAML>=1.10:textproc/p5-YAML \ + devel/p5-File-LibMagic>=1.10:devel/p5-File-LibMagic \ + textproc/p5-PDF-API2>=2.030:textproc/p5-PDF-API2 + +USES= perl5 +USE_GITHUB= yes +GH_ACCOUNT= sur5r + +NO_ARCH= yes +NO_BUILD= yes + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/pdfstitch ${STAGEDIR}${PREFIX}/bin/pdfstitch + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${WRKSRC}/README.md ${STAGEDIR}${DOCSDIR}/README + +.include Added: head/print/pdfstitch/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfstitch/distinfo Sat Sep 2 12:57:20 2017 (r449135) @@ -0,0 +1,3 @@ +TIMESTAMP = 1502780467 +SHA256 (sur5r-pdfstitch-v0.4_GH0.tar.gz) = 380ce7b4a28e7fa4b9e2027a2bfa46ffe645da07b1ef26dbf1b5d04288148def +SIZE (sur5r-pdfstitch-v0.4_GH0.tar.gz) = 14606 Added: head/print/pdfstitch/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfstitch/pkg-descr Sat Sep 2 12:57:20 2017 (r449135) @@ -0,0 +1,9 @@ +Pdfstitcher can transform a regular multi-page PDF into a single-page PDF, +which displays the pages in a grid. + +While there are other tools that do the same, pdfstitcher focuses on the +following features: +- Crop pages to a certain size +- Adjust the crop position per page + +WWW: https://github.com/sur5r/pdfstitch Added: head/print/pdfstitch/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfstitch/pkg-plist Sat Sep 2 12:57:20 2017 (r449135) @@ -0,0 +1,2 @@ +bin/pdfstitch +%%PORTDOCS%%%%DOCSDIR%%/README