mirror of
https://github.com/thead-yocto-mirror/meta-openembedded
synced 2026-09-16 12:12:16 +02:00
Changelog:
* Added support for building with CMake
* Added TTF_GetFontWrappedAlign() and TTF_SetFontWrappedAlign() to set alignment on wrapped text
* Added functions to render using FreeType LCD algorithm:
TTF_RenderText_LCD()
TTF_RenderUTF8_LCD()
TTF_RenderUNICODE_LCD()
TTF_RenderText_LCD_Wrapped()
TTF_RenderUTF8_LCD_Wrapped()
TTF_RenderUNICODE_LCD_Wrapped()
TTF_RenderGlyph_LCD()
TTF_RenderGlyph32_LCD()
* Added TTF_SetFontDirection() and TTF_SetFontScriptName() for additional control over fonts using HarfBuzz
* Updated to FreeType version 2.12.1 and HarfBuzz version 2.9.1, fixing CVE-2018-25032
* Fixed crash when loading fonts at certain sizes on Windows
* Fix memory corruption loading malformed TTF files (CVE-2022-27470)
Signed-off-by: Wolfgang Meyer <Wolfgang.Meyer@gossenmetrawatt.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
33 lines
1.1 KiB
BlitzBasic
33 lines
1.1 KiB
BlitzBasic
SUMMARY = "Simple DirectMedia Layer truetype font library"
|
|
SECTION = "libs"
|
|
DEPENDS = "libsdl2 freetype virtual/egl"
|
|
LICENSE = "Zlib"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=771dca8728b18d39b130e19b36514371"
|
|
|
|
SRC_URI = " \
|
|
git://github.com/libsdl-org/SDL_ttf.git;branch=main;protocol=https \
|
|
git://github.com/libsdl-org/freetype.git;branch=VER-2-12-1-SDL;destsuffix=git/external/freetype;name=freetype;protocol=https \
|
|
git://github.com/libsdl-org/harfbuzz.git;branch=2.9.1-SDL;destsuffix=git/external/harfbuzz;name=harfbuzz;protocol=https \
|
|
file://automake_foreign.patch \
|
|
"
|
|
SRCREV = "f5e4828ffc9d3a84f00011fede4446aecb4a685f"
|
|
SRCREV_freetype = "6fc77cee03e078e97afcee0c0e06a2d3274b9a29"
|
|
SRCREV_harfbuzz = "6022fe2f68d028ee178284f297b3902ffdf65b03"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools pkgconfig features_check
|
|
|
|
# links to libGL.so
|
|
REQUIRED_DISTRO_FEATURES += "opengl"
|
|
|
|
do_configure:prepend() {
|
|
# Removing these files fixes a libtool version mismatch.
|
|
MACROS="libtool.m4 lt~obsolete.m4 ltoptions.m4 ltsugar.m4 ltversion.m4"
|
|
|
|
for i in ${MACROS}; do
|
|
rm -f ${S}/acinclude/$i
|
|
done
|
|
}
|
|
ASNEEDED = ""
|