libharu: upgrade 2.3.0 -> 2.4.4

* Dropped patches because fixed in the new version.

Changelog:

* Add copy hpdf_namedict.h at install
* Added page boundary support.
* fixed glyph index to be 16 bit unsigned instead of signed
* Bug fixes
* Shared library has an SOVERSION now
* Fixed HPDF_FToA for small values
* Add static hpdf_version.h header
* hpdf_version.h included again
* File attachment issue resolved
* Renamed *_LIBZ defines to _*ZLIB, enables compression of PDF files again.
* Reinstated hpdf_version.h
* Fixed library name
* Set correct version number
* Add support for free-form triangle shading objects.
* Fix config constant to match use in hpdf_mmgr.c
* Improve small number writing in HPDF_FToA.
* Fix missing /CapHeight key in font definition
* Change HPDF_Page_CreateXObjectFromImage zoom parameter type to HPDF
* Fix another case of png files with background mask save uncompressed
* Avoid issue with libtiff duplicate symbols
* Reajust bit_depth of png image after striping depth from 16 to 8.
* Fixed typo in Japanese font name: Mincyo -> Mincho
* Fix various typos
* hpdf.h: add missing HPDF_Boolean typedef
* Moved to a CMake only build environment.
* Fix bad unicode in comment
* Fix various typos

Signed-off-by: alperak <alperyasinak1@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
alperak
2023-12-26 09:32:50 +03:00
committed by Khem Raj
parent bf4d7f6284
commit b9b9a9578b
4 changed files with 16 additions and 106 deletions
@@ -1,30 +0,0 @@
From 9341ac4f6ae38efe95dfd188105a9ea30941ccf6 Mon Sep 17 00:00:00 2001
From: Lei Maohui <leimaohui@cn.fujitsu.com>
Date: Wed, 18 Nov 2020 23:09:51 +0900
Subject: [PATCH] Install static lib into var-libdir rather than hardcod lib.
Lei Maohui <leimaohui@cn.fujitsu.com>
Upstream-Status: Pending
---
src/CMakeLists.txt | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 249916c..fb06ea3 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -75,8 +75,8 @@ if(LIBHPDF_STATIC)
target_link_libraries(${LIBHPDF_NAME_STATIC} ${ADDITIONAL_LIBRARIES})
install(
TARGETS ${LIBHPDF_NAME_STATIC}
- ARCHIVE DESTINATION lib
- LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
+ LIBRARY DESTINATION ${LIB_INSTALL_DIR}
RUNTIME DESTINATION bin
)
if(WIN32 AND NOT CYGWIN)
--
2.25.1
@@ -1,52 +0,0 @@
Backport from Fedora Project.
https://src.fedoraproject.org/rpms/libharu
Fix the install destination of some files.
Upstream-Status: Inappropriate
Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
diff -urp libharu-RELEASE_2_3_0/CMakeLists.txt libharu-RELEASE_2_3_0_cmake/CMakeLists.txt
--- libharu-RELEASE_2_3_0/CMakeLists.txt 2013-10-30 20:11:59.000000000 +0700
+++ libharu-RELEASE_2_3_0_cmake/CMakeLists.txt 2017-06-01 15:56:06.533552795 +0700
@@ -25,7 +25,7 @@ endif(MSVC)
# information about libharu
set(LIBHPDF_MAJOR 2)
-set(LIBHPDF_MINOR 2)
+set(LIBHPDF_MINOR 3)
set(LIBHPDF_PATCH 0)
set(LIBHPDF_VERSION ${LIBHPDF_MAJOR}.${LIBHPDF_MINOR}.${LIBHPDF_PATCH})
set(LIBHPDF_DESCRIPTION "libHaru is a free, cross platform, open source library for generating PDF files.")
@@ -210,9 +210,9 @@ set(
install(FILES ${haru_HDRS} DESTINATION include)
# install various files
-install(FILES README CHANGES INSTALL DESTINATION .)
+install(FILES README CHANGES INSTALL DESTINATION ${SHARE_INSTALL_PREFIX}/libharu)
if(NOT DEVPAK)
- install(DIRECTORY if DESTINATION .)
+ install(DIRECTORY if DESTINATION ${SHARE_INSTALL_PREFIX}/libharu)
endif(NOT DEVPAK)
if(DEVPAK)
install(FILES ${CMAKE_BINARY_DIR}/libharu.DevPackage DESTINATION .)
diff -urp libharu-RELEASE_2_3_0/src/CMakeLists.txt libharu-RELEASE_2_3_0_cmake/src/CMakeLists.txt
--- libharu-RELEASE_2_3_0/src/CMakeLists.txt 2013-10-30 20:11:59.000000000 +0700
+++ libharu-RELEASE_2_3_0_cmake/src/CMakeLists.txt 2017-06-01 16:08:45.425105746 +0700
@@ -90,11 +90,13 @@ if(LIBHPDF_SHARED)
target_link_libraries(${LIBHPDF_NAME} ${ADDITIONAL_LIBRARIES})
if(WIN32 AND NOT CYGWIN)
set_target_properties(${LIBHPDF_NAME} PROPERTIES DEFINE_SYMBOL HPDF_DLL_MAKE)
+ else(WIN32 AND NOT CYGWIN)
+ set_target_properties(${LIBHPDF_NAME} PROPERTIES SOVERSION ${LIBHPDF_VERSION})
endif(WIN32 AND NOT CYGWIN)
install(
TARGETS ${LIBHPDF_NAME}
- ARCHIVE DESTINATION lib
- LIBRARY DESTINATION lib
+ ARCHIVE DESTINATION ${LIB_INSTALL_DIR}
+ LIBRARY DESTINATION ${LIB_INSTALL_DIR}
RUNTIME DESTINATION bin
)
endif(LIBHPDF_SHARED)
@@ -1,24 +0,0 @@
SUMMARY = "free PDF library"
HOMEPAGE = "http://libharu.org"
DESCRIPTION = "libHaru is a library for generating PDF files. \
It is free, open source, written in ANSI C and cross platform. "
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://README;md5=3ee6bc1f64d9cc7907f44840c8e50cb1"
SRC_URI = "git://github.com/libharu/libharu.git;branch=2_3;protocol=https \
file://libharu-RELEASE_2_3_0_cmake.patch \
file://0001-Install-static-lib-into-var-libdir-rather-than-hardc.patch \
"
SRCREV = "4ae1d5f4c84459f130bf1b1ef4c5c330af8eca5d"
S = "${WORKDIR}/git"
inherit cmake
DEPENDS += "libpng zlib"
do_install:append() {
mkdir -p ${D}/${datadir}/libharu
mv ${D}/libharu ${D}/${datadir}
}
@@ -0,0 +1,16 @@
SUMMARY = "free PDF library"
HOMEPAGE = "http://libharu.org"
DESCRIPTION = "libHaru is a library for generating PDF files. \
It is free, open source, written in ANSI C and cross platform. "
LICENSE = "Zlib"
LIC_FILES_CHKSUM = "file://LICENSE;md5=924546dab2bef90e370d7c0c090ddcf0"
DEPENDS += "libpng zlib"
SRC_URI = "git://github.com/libharu/libharu.git;branch=master;protocol=https"
SRCREV = "0c598becaadaef8e3d12b883f9fc2864a118c12d"
S = "${WORKDIR}/git"
inherit cmake