diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2023-04-10 16:27:43 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-04-10 09:39:38 -0700 |
| commit | 02331987d0be340f17760efccd606a8ebd15b864 (patch) | |
| tree | 6e9a666ffa34563f598706f89f85a8c104dded22 /meta-oe/recipes-support/poppler/poppler_23.04.0.bb | |
| parent | 05dda95465c98c8617bd2790a73dee796e834060 (diff) | |
| download | meta-openembedded-02331987d0be340f17760efccd606a8ebd15b864.tar.gz | |
poppler: upgrade 23.03.0 -> 23.04.0
Changelog:
=========
core:
* Fix memory issue when signing fails. Issue #1372
* Internal improvements of signature related code
* CairoOutputDev: improve type3 font rendering
* Fix memory leak in GlobalParams::findSystemFontFileForFamilyAndStyle
utils:
* pdftocairo: Fix crash in some special situations
* pdfsig: allow holes in -dump signature list
* pdfsig: Support --help
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/poppler/poppler_23.04.0.bb')
| -rw-r--r-- | meta-oe/recipes-support/poppler/poppler_23.04.0.bb | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/poppler/poppler_23.04.0.bb b/meta-oe/recipes-support/poppler/poppler_23.04.0.bb new file mode 100644 index 0000000000..19bdce4d86 --- /dev/null +++ b/meta-oe/recipes-support/poppler/poppler_23.04.0.bb | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | SUMMARY = "Poppler is a PDF rendering library based on the xpdf-3.0 code base" | ||
| 2 | HOMEPAGE = "https://poppler.freedesktop.org/" | ||
| 3 | LICENSE = "GPL-2.0-only" | ||
| 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
| 5 | |||
| 6 | SRC_URI = "http://poppler.freedesktop.org/${BP}.tar.xz \ | ||
| 7 | file://0001-Do-not-overwrite-all-our-build-flags.patch \ | ||
| 8 | file://basename-include.patch \ | ||
| 9 | file://0001-cmake-Do-not-use-isystem.patch \ | ||
| 10 | " | ||
| 11 | SRC_URI[sha256sum] = "b6d893dc7dcd4138b9e9df59a13c59695e50e80dc5c2cacee0674670693951a1" | ||
| 12 | |||
| 13 | DEPENDS = "fontconfig zlib cairo lcms glib-2.0" | ||
| 14 | |||
| 15 | inherit cmake pkgconfig gobject-introspection | ||
| 16 | |||
| 17 | PACKAGECONFIG ??= "jpeg openjpeg png tiff nss splash" | ||
| 18 | PACKAGECONFIG[jpeg] = "-DWITH_JPEG=ON -DENABLE_DCTDECODER=libjpeg,-DWITH_JPEG=OFF -DENABLE_DCTDECODER=none,jpeg" | ||
| 19 | PACKAGECONFIG[png] = "-DWITH_PNG=ON,-DWITH_PNG=OFF,libpng" | ||
| 20 | PACKAGECONFIG[tiff] = "-DWITH_TIFF=ON,-DWITH_TIFF=OFF,tiff" | ||
| 21 | PACKAGECONFIG[curl] = "-DENABLE_LIBCURL=ON,-DENABLE_LIBCURL=OFF,curl" | ||
| 22 | PACKAGECONFIG[openjpeg] = "-DENABLE_LIBOPENJPEG=openjpeg2,-DENABLE_LIBOPENJPEG=none,openjpeg" | ||
| 23 | PACKAGECONFIG[qt5] = "-DENABLE_QT5=ON,-DENABLE_QT5=OFF,qtbase qttools-native" | ||
| 24 | PACKAGECONFIG[nss] = "-DWITH_NSS3=ON,-DWITH_NSS3=OFF,nss" | ||
| 25 | PACKAGECONFIG[splash] = "-DENABLE_SPLASH=ON -DENABLE_BOOST=ON,-DENABLE_SPLASH=OFF -DENABLE_BOOST=OFF,boost" | ||
| 26 | |||
| 27 | # surprise - did not expect this to work :) | ||
| 28 | inherit ${@bb.utils.contains('PACKAGECONFIG', 'qt5', 'cmake_qt5', '', d)} | ||
| 29 | |||
| 30 | SECURITY_CFLAGS = "${SECURITY_NO_PIE_CFLAGS}" | ||
| 31 | |||
| 32 | EXTRA_OECMAKE += " \ | ||
| 33 | -DENABLE_CMS=lcms2 \ | ||
| 34 | -DENABLE_UNSTABLE_API_ABI_HEADERS=ON \ | ||
| 35 | -DBUILD_GTK_TESTS=OFF \ | ||
| 36 | -DENABLE_ZLIB=ON \ | ||
| 37 | -DRUN_GPERF_IF_PRESENT=OFF \ | ||
| 38 | -DCMAKE_CXX_IMPLICIT_INCLUDE_DIRECTORIES:PATH='${STAGING_INCDIR}' \ | ||
| 39 | ${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-DENABLE_GOBJECT_INTROSPECTION=ON', '-DENABLE_GOBJECT_INTROSPECTION=OFF', d)} \ | ||
| 40 | " | ||
| 41 | EXTRA_OECMAKE:append:class-native = " -DENABLE_CPP=OFF" | ||
| 42 | |||
| 43 | do_configure:append() { | ||
| 44 | # poppler macro uses pkg-config to check for g-ir runtimes. Something | ||
| 45 | # makes them point to /usr/bin. Align them to sysroot - that's where the | ||
| 46 | # gir-wrappers are: | ||
| 47 | sed -i 's: ${bindir}/g-ir: ${STAGING_BINDIR}/g-ir:' ${B}/build.ninja | ||
| 48 | } | ||
| 49 | |||
| 50 | PACKAGES =+ "libpoppler libpoppler-glib" | ||
| 51 | FILES:libpoppler = "${libdir}/libpoppler.so.*" | ||
| 52 | FILES:libpoppler-glib = "${libdir}/libpoppler-glib.so.*" | ||
| 53 | |||
| 54 | RDEPENDS:libpoppler = "poppler-data" | ||
| 55 | |||
| 56 | BBCLASSEXTEND = "native" | ||
