From owner-svn-ports-all@freebsd.org Tue Jul 17 17:52:26 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A7A6A1048755; Tue, 17 Jul 2018 17:52:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5C3197305F; Tue, 17 Jul 2018 17:52:26 +0000 (UTC) (envelope-from yuri@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 232BC6DFC; Tue, 17 Jul 2018 17:52:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6HHqQoM086349; Tue, 17 Jul 2018 17:52:26 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6HHqPGY086343; Tue, 17 Jul 2018 17:52:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201807171752.w6HHqPGY086343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Tue, 17 Jul 2018 17:52:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r474820 - in head/graphics: . diff-pdf X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/graphics: . diff-pdf X-SVN-Commit-Revision: 474820 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.27 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: Tue, 17 Jul 2018 17:52:26 -0000 Author: yuri Date: Tue Jul 17 17:52:25 2018 New Revision: 474820 URL: https://svnweb.freebsd.org/changeset/ports/474820 Log: New port: graphics/diff-pdf: Tool for visually comparing two PDFs PR: 229757 Submitted by: Zsolt Udvari Added: head/graphics/diff-pdf/ head/graphics/diff-pdf/Makefile (contents, props changed) head/graphics/diff-pdf/distinfo (contents, props changed) head/graphics/diff-pdf/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Tue Jul 17 17:49:40 2018 (r474819) +++ head/graphics/Makefile Tue Jul 17 17:52:25 2018 (r474820) @@ -138,6 +138,7 @@ SUBDIR += derelict-gl3 SUBDIR += devil SUBDIR += dia + SUBDIR += diff-pdf SUBDIR += diffpdf SUBDIR += digikam SUBDIR += digikam-kde4 Added: head/graphics/diff-pdf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diff-pdf/Makefile Tue Jul 17 17:52:25 2018 (r474820) @@ -0,0 +1,28 @@ +# $FreeBSD$ + +PORTNAME= diff-pdf +DISTVERSIONPREFIX= v +DISTVERSION= 0.2-27 +DISTVERSIONSUFFIX= -gc4d6722 +CATEGORIES= graphics + +MAINTAINER= uzsolt@uzsolt.hu +COMMENT= Tool for visually comparing two PDFs + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libpoppler.so:graphics/poppler \ + libpoppler-glib.so:graphics/poppler-glib + +USES= autoreconf pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= vslavik +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-wx-config=${WX_CONFIG} +USE_GNOME= cairo glib20 +USE_WX= 2.8+ + +PLIST_FILES= bin/${PORTNAME} + +.include Added: head/graphics/diff-pdf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diff-pdf/distinfo Tue Jul 17 17:52:25 2018 (r474820) @@ -0,0 +1,3 @@ +TIMESTAMP = 1531601752 +SHA256 (vslavik-diff-pdf-v0.2-27-gc4d6722_GH0.tar.gz) = 98273411476598dd69b61d13f360303ca2b81b97c56af930a9228d05a75deadb +SIZE (vslavik-diff-pdf-v0.2-27-gc4d6722_GH0.tar.gz) = 35829 Added: head/graphics/diff-pdf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diff-pdf/pkg-descr Tue Jul 17 17:52:25 2018 (r474820) @@ -0,0 +1,9 @@ +A tool for visual comparison of two PDFs. + +It takes two PDF files as arguments. +If given the --pdf option, output-diff produces a PDF file with +visually highlighted differences. +Another option is to compare the two files visually in a simple GUI, +using the --view argument. + +WWW: http://vslavik.github.io/diff-pdf/