Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 2 Sep 2017 12:57:20 +0000 (UTC)
From:      Tobias Kortkamp <tobik@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r449135 - in head/print: . pdfstitch
Message-ID:  <201709021257.v82CvKN0099647@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@textmail.me>
+# $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 <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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201709021257.v82CvKN0099647>