b632d5c0c4
fixing CVE-2017-14517 CVE-2017-14518 CVE-2017-14519 CVE-2017-14520 CVE-2017-15565 upstream notable changes: Release 0.61.1 core: * CairoOutputDev: don't overflow y * stride when accessing image data cpp: * Fix for corrupted image files on Windows. Bug #102494 build system: * Fix incorrect paths in .pc files. Bug #103578 * add the custom buildtests target only once. Bug #103003 Release 0.61.0 core: * Fix crashes in broken files * Cleanup unused functions from GlobalParams * Tweak LZWStream::processNextCode error handling. Bug #103174 * Warning fixes * Remove t1lib code qt5: * Clean up the remaining Splash code in Arthur backend. Bug #103117 * ArthurOutputDev: Properly implement saveState/restoreState. Bug #103118 * Fix leak in ArthurOutputDev::updateFont. Bug #103508 build system: * Use GNUInstallDirs. Bug #103211 * mingw: Install pkg-config files * mingw: change library names to include the soversion. Bug #103157 * Fix installing a .cc file as header * Use -pthread flag instead of -lpthread Release 0.60.1 qt5: * ArthurOutputDev: Add missing 'return' in error paths build system: * FindLIBOPENJPEG.cmake: Add CheckCXXSourceCompiles Release 0.60.0 core: * Enable libcurl support by default * PSOutputDev: Fix wrong text generation. Bug #102760 * Added methods to get and set the font size of text fields. Bug #101692 * CairoOutputDev: Do not extend the pattern in drawImageMaskRegular * CairoOutputDev: do not use the custom downscaling for rendering images when using cairo >= 1.14 * Fix build with old clang * Fix various crashes in broken files * Fix some warnings * Add some constness to the basic classes * Remove unused functions from GlobalParams qt5: * Added methods to get and set the font size of text fields. Bug #101692 * Add whether renderToImage shows annotations * ArthurOutputDev: Replace Splash font rendering by Qt font rendering * ArthurOutputDev: Implement the drawSoftMaskedImage method * ArthurOutputDev: Fix several small bugs related to dash pattern handling * Fix two minor typos build system: * cmake is now the default build system * autotools based build system has been removed utils: * pdfinfo: don't truncate dest name
37 lines
989 B
Text
37 lines
989 B
Text
# $NetBSD: Makefile.common,v 1.93 2017/12/08 07:48:11 spz Exp $
|
|
#
|
|
# used by print/poppler/Makefile
|
|
# used by print/poppler-cpp/Makefile
|
|
# used by print/poppler-glib/Makefile
|
|
# used by print/poppler-includes/Makefile
|
|
# used by print/poppler-qt4/Makefile
|
|
# used by print/poppler-qt5/Makefile
|
|
# used by print/poppler-utils/Makefile
|
|
|
|
POPPLER_VERS= 0.61.1
|
|
DISTNAME= poppler-${POPPLER_VERS}
|
|
CATEGORIES= print
|
|
MASTER_SITES= https://poppler.freedesktop.org/
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
HOMEPAGE= https://poppler.freedesktop.org/
|
|
LICENSE= gnu-gpl-v2
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../print/poppler/distinfo
|
|
PATCHDIR= ${.CURDIR}/../../print/poppler/patches
|
|
|
|
USE_TOOLS+= pkg-config
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
USE_CMAKE= yes
|
|
|
|
# Don't accidentally find libtiff
|
|
CMAKE_ARGS+= -DCMAKE_DISABLE_FIND_PACKAGE_TIFF=TRUE
|
|
|
|
.include "../../mk/compiler.mk"
|
|
.if !empty(PKGSRC_COMPILER:Mclang)
|
|
BUILDLINK_TRANSFORM+= rm:-fno-check-new
|
|
.endif
|
|
|
|
.include "../../graphics/openjpeg/buildlink3.mk"
|