From owner-svn-ports-head@freebsd.org Sat Jan 21 17:19:28 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 9EB8ACBBB69; Sat, 21 Jan 2017 17:19:28 +0000 (UTC) (envelope-from dinoex@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 543A9D53; Sat, 21 Jan 2017 17:19:28 +0000 (UTC) (envelope-from dinoex@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v0LHJRJT039755; Sat, 21 Jan 2017 17:19:27 GMT (envelope-from dinoex@FreeBSD.org) Received: (from dinoex@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0LHJRvN039751; Sat, 21 Jan 2017 17:19:27 GMT (envelope-from dinoex@FreeBSD.org) Message-Id: <201701211719.v0LHJRvN039751@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: dinoex set sender to dinoex@FreeBSD.org using -f From: Dirk Meyer Date: Sat, 21 Jan 2017 17:19:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432063 - in head/graphics: . diffpdf X-SVN-Group: ports-head 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, 21 Jan 2017 17:19:28 -0000 Author: dinoex Date: Sat Jan 21 17:19:26 2017 New Revision: 432063 URL: https://svnweb.freebsd.org/changeset/ports/432063 Log: DiffPDF is used to compare two PDF files-textually or visually. DiffPDF can compare two PDF files. It offers three comparison modes: Words, Characters, and Appearance. LICENSE: GPL2 or later WWW: http://www.qtrac.eu/diffpdf-foss.html Added: head/graphics/diffpdf/ head/graphics/diffpdf/Makefile (contents, props changed) head/graphics/diffpdf/distinfo (contents, props changed) head/graphics/diffpdf/pkg-descr (contents, props changed) Modified: head/graphics/Makefile Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sat Jan 21 17:07:04 2017 (r432062) +++ head/graphics/Makefile Sat Jan 21 17:19:26 2017 (r432063) @@ -131,6 +131,7 @@ SUBDIR += devil SUBDIR += dia SUBDIR += diacanvas2 + SUBDIR += diffpdf SUBDIR += digikam-kde4 SUBDIR += digikam-kde4-doc SUBDIR += digikam-kde4-l10n Added: head/graphics/diffpdf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diffpdf/Makefile Sat Jan 21 17:19:26 2017 (r432063) @@ -0,0 +1,26 @@ +# $FreeBSD$ + +PORTNAME= diffpdf +PORTVERSION= 2.1.3 +CATEGORIES= graphics +MASTER_SITES= http://www.qtrac.eu/ + +MAINTAINER= dinoex@FreeBSD.org +COMMENT= Compare two PDF files-textually or visually + +LIB_DEPENDS= libpoppler-qt4.so:graphics/poppler-qt4 + +LICENSE= GPLv2+ + +USES= qmake +USE_QT4= qmake_build moc_build rcc_build uic_build linguist_build + +PLIST_FILES= bin/diffpdf + +pre-configure: + ${LRELEASE} ${BUILD_WRKSRC}/${PORTNAME}.pro + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/diffpdf ${STAGEDIR}${PREFIX}/bin/ + +.include Added: head/graphics/diffpdf/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diffpdf/distinfo Sat Jan 21 17:19:26 2017 (r432063) @@ -0,0 +1,3 @@ +TIMESTAMP = 1485019097 +SHA256 (diffpdf-2.1.3.tar.gz) = c6142ee038a78108397f45b0c456dca7a4fe1d75250f21a514a134101d322433 +SIZE (diffpdf-2.1.3.tar.gz) = 91856 Added: head/graphics/diffpdf/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/diffpdf/pkg-descr Sat Jan 21 17:19:26 2017 (r432063) @@ -0,0 +1,8 @@ +DiffPDF is used to compare two PDF files-textually or visually. + +DiffPDF can compare two PDF files. +It offers three comparison modes: Words, Characters, and Appearance. + +LICENSE: GPL2 or later + +WWW: http://www.qtrac.eu/diffpdf-foss.html