svn commit: r449135 - in head/print: . pdfstitch
Tobias Kortkamp
tobik at FreeBSD.org
Sat Sep 2 12:57:22 UTC 2017
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 <ports at textmail.me>
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 <ports at textmail.me>
+# $FreeBSD$
+
+PORTNAME= pdfstitch
+DISTVERSIONPREFIX= v
+DISTVERSION= 0.4
+CATEGORIES= print
+
+MAINTAINER= ports at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list