From owner-svn-ports-all@freebsd.org Fri Jul 3 19:17:41 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 2060E356DBF; Fri, 3 Jul 2020 19:17:41 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49z4VD6tcZz4d6q; Fri, 3 Jul 2020 19:17:40 +0000 (UTC) (envelope-from lwhsu@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 CC547100D7; Fri, 3 Jul 2020 19:17:40 +0000 (UTC) (envelope-from lwhsu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 063JHePx009619; Fri, 3 Jul 2020 19:17:40 GMT (envelope-from lwhsu@FreeBSD.org) Received: (from lwhsu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 063JHdr3009610; Fri, 3 Jul 2020 19:17:39 GMT (envelope-from lwhsu@FreeBSD.org) Message-Id: <202007031917.063JHdr3009610@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lwhsu set sender to lwhsu@FreeBSD.org using -f From: Li-Wen Hsu Date: Fri, 3 Jul 2020 19:17:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r541128 - in head/print: . pdfchain X-SVN-Group: ports-head X-SVN-Commit-Author: lwhsu X-SVN-Commit-Paths: in head/print: . pdfchain X-SVN-Commit-Revision: 541128 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.33 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: Fri, 03 Jul 2020 19:17:41 -0000 Author: lwhsu Date: Fri Jul 3 19:17:39 2020 New Revision: 541128 URL: https://svnweb.freebsd.org/changeset/ports/541128 Log: Add print/pdfchain: simple but effective GUI for pdftk PR: 243390 Submitted by: Pierre Chapelet Added: head/print/pdfchain/ head/print/pdfchain/Makefile (contents, props changed) head/print/pdfchain/distinfo (contents, props changed) head/print/pdfchain/pkg-descr (contents, props changed) head/print/pdfchain/pkg-plist (contents, props changed) Modified: head/print/Makefile Modified: head/print/Makefile ============================================================================== --- head/print/Makefile Fri Jul 3 18:17:40 2020 (r541127) +++ head/print/Makefile Fri Jul 3 19:17:39 2020 (r541128) @@ -148,6 +148,7 @@ SUBDIR += pdf-tools SUBDIR += pdf4tcl SUBDIR += pdfbox + SUBDIR += pdfchain SUBDIR += pdflib SUBDIR += pdflib-perl SUBDIR += pdfstitch Added: head/print/pdfchain/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfchain/Makefile Fri Jul 3 19:17:39 2020 (r541128) @@ -0,0 +1,35 @@ +# $FreeBSD$ + +PORTNAME= pdfchain +PORTVERSION= 0.4.4.2 +CATEGORIES= print +MASTER_SITES= https://sourceforge.net/projects/pdfchain/files/pdfchain-${PORTVERSION}/ + +MAINTAINER= chapelet@gmail.com +COMMENT= Graphical user interface for the PDF Toolkit (PDFtk) + +LICENSE= GPLv3 + +USES= desktop-file-utils +USES+= gettext-runtime +USES+= gnome +USES+= pkgconfig + +GNU_CONFIGURE= yes + +USE_GNOME= atk +USE_GNOME+= atkmm +USE_GNOME+= cairo +USE_GNOME+= cairomm +USE_GNOME+= gdkpixbuf2 +USE_GNOME+= glib20 +USE_GNOME+= glibmm +USE_GNOME+= gtk30 +USE_GNOME+= gtkmm30 +USE_GNOME+= libsigc++20 +USE_GNOME+= pango +USE_GNOME+= pangomm + +INSTALLS_ICONS= yes + +.include Added: head/print/pdfchain/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfchain/distinfo Fri Jul 3 19:17:39 2020 (r541128) @@ -0,0 +1,3 @@ +TIMESTAMP = 1579170347 +SHA256 (pdfchain-0.4.4.2.tar.gz) = 1eee0f93dbe8c9cef9f9fe4ec0a10e0a45ca8cde67cd6ceffa2ce6c843752f3d +SIZE (pdfchain-0.4.4.2.tar.gz) = 312567 Added: head/print/pdfchain/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfchain/pkg-descr Fri Jul 3 19:17:39 2020 (r541128) @@ -0,0 +1,16 @@ +This is a port of pdfchain, a graphical user interface for the PDF Toolkit +(PDFtk). The GUI supports all common features of the command line tool in a +comfortable way. + +External Dependencies ===================== + +The PDF Chain GUI creates a PDFTK command with all required parameters and +starts the PDFTK console program that interprets the parameters and processes +the files. PDFTK must therefore installed at the system and executeable by the +command "pdftk". + +http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/ + +(PDF Chain starting from version 0.4.0 is compatible with PDFtk 1.45) + +WWW: https://sourceforge.net/projects/pdfchain/ Added: head/print/pdfchain/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/print/pdfchain/pkg-plist Fri Jul 3 19:17:39 2020 (r541128) @@ -0,0 +1,19 @@ +bin/pdfchain +share/applications/pdfchain.desktop +share/doc/pdfchain/AUTHORS +share/doc/pdfchain/COPYING +share/doc/pdfchain/ChangeLog +share/doc/pdfchain/INSTALL +share/doc/pdfchain/NEWS +share/doc/pdfchain/README +share/icons/hicolor/128x128/apps/pdfchain.png +share/icons/hicolor/16x16/apps/pdfchain.png +share/icons/hicolor/192x192/apps/pdfchain.png +share/icons/hicolor/22x22/apps/pdfchain.png +share/icons/hicolor/24x24/apps/pdfchain.png +share/icons/hicolor/256x256/apps/pdfchain.png +share/icons/hicolor/32x32/apps/pdfchain.png +share/icons/hicolor/48x48/apps/pdfchain.png +share/icons/hicolor/64x64/apps/pdfchain.png +share/icons/hicolor/96x96/apps/pdfchain.png +share/pixmaps/pdfchain.png