diff options
author | adam <adam@pkgsrc.org> | 2019-05-09 09:28:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-05-09 09:28:22 +0000 |
commit | 3c9eb1f4b43e37cd7d99945c2078f36f96d72ebc (patch) | |
tree | 49b9c320a5e274efb84b6fa00e2af169805c2e09 /print/poppler-qt5 | |
parent | 21ea56b1f4ddd1889fcd5201c9c4feace12da809 (diff) | |
download | pkgsrc-3c9eb1f4b43e37cd7d99945c2078f36f96d72ebc.tar.gz |
poppler: updated to 0.76.1
poppler-0.76.1:
core:
* Make the mul tables be calculated at compile time with constexpr.
* splash: Fix compile with SPLASH_CMYK enabled
* Some typo fixing in error messages
qt5:
* Fix regression in annotation handling
build system:
* Fix some typos in build system output and comments
poppler-0.76.0:
core:
* Fix regression on case-insensitive search.
* Remove GooList, use std::vector instead
* Fix radiobutton reporting wrong state.
* Handle UTF16-LE strings
* Don't error out if there's no DA in FreeText annotation
* cairo: Compute correct coverage values for box filter.
* cairo: Constrain number of cycles in rescale filter.
* Read more fields from ViewerPreferences
* Introduce and use Ref::INVALID
* Fix crashes in broken files
* Fix mismatched free/delete
* Add missing include guards
utils:
* pdftohtml: Properly initialize HtmlOutputDev::page to avoid SIGSEGV upon error exit.
poppler-0.75.0:
core:
* Fix rendering of some annotations
* Fix crashes in broken files
* Small internal code improvements
cpp:
* Improve documentation
* tests: Add showing version information to poppler-dump
utils:
* pdfattach: new util
* pdftohtml: add -dataurls parameter
* pdftoppm: add -sep and -forcenum parameters
* pdftohtml: make singleHtml and stout not mutually exclusive
* pdfsig: fix use after free
Diffstat (limited to 'print/poppler-qt5')
-rw-r--r-- | print/poppler-qt5/Makefile | 23 | ||||
-rw-r--r-- | print/poppler-qt5/buildlink3.mk | 4 |
2 files changed, 13 insertions, 14 deletions
diff --git a/print/poppler-qt5/Makefile b/print/poppler-qt5/Makefile index 2f7cc8a7581..05260ded842 100644 --- a/print/poppler-qt5/Makefile +++ b/print/poppler-qt5/Makefile @@ -1,20 +1,19 @@ -# $NetBSD: Makefile,v 1.31 2019/04/03 00:33:03 ryoon Exp $ +# $NetBSD: Makefile,v 1.32 2019/05/09 09:28:22 adam Exp $ -PKGREVISION= 1 .include "../../print/poppler/Makefile.common" -PKGNAME= poppler-qt5-${POPPLER_VERS} -COMMENT= PDF rendering library (QT5 wrapper) -MAINTAINER= pkgsrc-users@NetBSD.org +PKGNAME= poppler-qt5-${POPPLER_VERS} +COMMENT= PDF rendering library (QT5 wrapper) +MAINTAINER= pkgsrc-users@NetBSD.org -CMAKE_ARGS+= -DENABLE_SPLASH=ON -CMAKE_ARGS+= -DBUILD_GTK_TESTS=OFF -CMAKE_ARGS+= -DENABLE_GLIB=OFF -CMAKE_ARGS+= -DENABLE_UTILS=OFF -CMAKE_ARGS+= -DENABLE_CPP=OFF -CMAKE_ARGS+= -DENABLE_QT5=ON +CMAKE_ARGS+= -DENABLE_SPLASH=ON +CMAKE_ARGS+= -DBUILD_GTK_TESTS=OFF +CMAKE_ARGS+= -DENABLE_GLIB=OFF +CMAKE_ARGS+= -DENABLE_UTILS=OFF +CMAKE_ARGS+= -DENABLE_CPP=OFF +CMAKE_ARGS+= -DENABLE_QT5=ON # Don't build libcurl based HTTP support. ## might want to include -CMAKE_ARGS+= -DENABLE_LIBCURL=OFF +CMAKE_ARGS+= -DENABLE_LIBCURL=OFF BUILDLINK_API_DEPENDS.poppler+= poppler>=${POPPLER_VERS} .include "../../print/poppler/buildlink3.mk" diff --git a/print/poppler-qt5/buildlink3.mk b/print/poppler-qt5/buildlink3.mk index cc8ac510ab6..4994de6c40c 100644 --- a/print/poppler-qt5/buildlink3.mk +++ b/print/poppler-qt5/buildlink3.mk @@ -1,4 +1,4 @@ -# $NetBSD: buildlink3.mk,v 1.30 2019/03/27 11:18:38 wiz Exp $ +# $NetBSD: buildlink3.mk,v 1.31 2019/05/09 09:28:22 adam Exp $ BUILDLINK_TREE+= poppler-qt5 @@ -6,7 +6,7 @@ BUILDLINK_TREE+= poppler-qt5 POPPLER_QT5_BUILDLINK3_MK:= BUILDLINK_API_DEPENDS.poppler-qt5+= poppler-qt5>=0.26.0 -BUILDLINK_ABI_DEPENDS.poppler-qt5?= poppler-qt5>=0.74.0 +BUILDLINK_ABI_DEPENDS.poppler-qt5+= poppler-qt5>=0.76.0 BUILDLINK_PKGSRCDIR.poppler-qt5?= ../../print/poppler-qt5 .include "../../print/poppler/buildlink3.mk" |