c565bdb335
Release 21.01.0: core: * Faster routines for jpeg decoding * Fix reading signatures in encrypted files * Add white point correction when lcms is used * JBIG2Stream: Fix byte counting * Fix potential data loss if we try to fetch a non existing Ref after modifying the document * Specifically use DeviceGray instead of DefaultGray for softmasks * Fix various issues handling broken files utils: * pdftocairo: Setmode binary for windows * pdfsig: Add hability to digitally sign files * pdftoppm: add options to set DeviceGray/DeviceRGB/DeviceCMYK * pdftops: add options to set DeviceGray/DeviceRGB/DeviceCMYK * pdfimages: Account for rotation in PPI calculation qt5: * Add hability to digitally sign files qt6: * Add hability to digitally sign files build system: * Enable clang-tidy bugprone-signed-char-misuse PR: 252377 Exp-run by: antoine
28 lines
611 B
Makefile
28 lines
611 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= diffpdf
|
|
PORTVERSION= 2.1.3
|
|
PORTREVISION= 26
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.qtrac.eu/
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Compare two PDF files-textually or visually
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
LIB_DEPENDS= libpoppler-qt5.so:graphics/poppler-qt5
|
|
|
|
USES= compiler:c++11-lang qmake qt:5 gl
|
|
USE_GL= gl
|
|
USE_QT= buildtools linguist_build core gui printsupport widgets
|
|
|
|
PLIST_FILES= bin/diffpdf
|
|
|
|
pre-configure:
|
|
( cd ${BUILD_WRKSRC} && ${LRELEASE} ${BUILD_WRKSRC}/${PORTNAME}.pro )
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/diffpdf ${STAGEDIR}${PREFIX}/bin/
|
|
|
|
.include <bsd.port.mk>
|