mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
fc78d37ff0
Please see https://git.yoctoproject.org/poky/commit/?id=4dd321f8b83afecd962393101b2a6861275b5265 for what changes are needed, and sed commands that can be used to make them en masse. I've verified that bitbake -c patch world works with these, but did not run a world build; the majority of recipes shouldn't need further fixups, but if there are some that still fall out, they can be fixed in followups. Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
29 lines
813 B
BlitzBasic
29 lines
813 B
BlitzBasic
SUMMARY = "Simple DirectMedia Layer truetype font library"
|
|
SECTION = "libs"
|
|
DEPENDS = "libsdl freetype"
|
|
LICENSE = "Zlib"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=22800d1b3701377aae0b61ee36f5c303"
|
|
|
|
SRC_URI = "http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-${PV}.tar.gz \
|
|
file://use.pkg-config.for.freetype2.patch \
|
|
"
|
|
SRC_URI[sha256sum] = "724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248ebcdb7"
|
|
|
|
S = "${UNPACKDIR}/SDL_ttf-${PV}"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
LDFLAGS += "-lm"
|
|
|
|
do_configure:prepend() {
|
|
# make autoreconf happy
|
|
touch ${S}/NEWS ${S}/AUTHORS ${S}/ChangeLog
|
|
|
|
# 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
|
|
}
|