aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@googlemail.com>2016-02-15 22:17:49 +0100
committerMartin Jansa <Martin.Jansa@gmail.com>2016-02-25 17:45:49 +0100
commit29c0360331fa286cabaf1ac4470abeea7eb3e14a (patch)
tree0f0fb87d4646898af8904ab3e03e6f0a1ff034ab /meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
parentae71c305b994d5b8c4548938ba545c6add4398ec (diff)
downloadmeta-openembedded-contrib-29c0360331fa286cabaf1ac4470abeea7eb3e14a.tar.gz
libsdl-ttf: update to 2.0.11
* Licence changed to Zlib [1] * patch does not apply anymore and does not seem to miss [1] https://www.libsdl.org/projects/SDL_ttf/ Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb')
-rw-r--r--meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb27
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
new file mode 100644
index 0000000000..0249abe24a
--- /dev/null
+++ b/meta-oe/recipes-support/libsdl-ttf/libsdl-ttf_2.0.11.bb
@@ -0,0 +1,27 @@
+SUMMARY = "Simple DirectMedia Layer truetype font library"
+SECTION = "libs"
+DEPENDS = "virtual/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[md5sum] = "61e29bd9da8d245bc2471d1b2ce591aa"
+SRC_URI[sha256sum] = "724cd895ecf4da319a3ef164892b72078bd92632a5d812111261cde248ebcdb7"
+
+S = "${WORKDIR}/SDL_ttf-${PV}"
+
+inherit autotools
+
+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
+}