summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2018-08-31 14:41:36 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-09-05 18:00:25 +0100
commitea02ec5e270c6bd06fff7d2c5b5cf4a67729b16f (patch)
treec235428800f580bfe13145f6a2506f56b7ebb2f9 /meta/recipes-graphics
parent873b3cf4aee6ac69b50ed93523c175334dbba23f (diff)
downloadpoky-ea02ec5e270c6bd06fff7d2c5b5cf4a67729b16f.tar.gz
pango: upgrade
(From OE-Core rev: 419e63fe1c69eef196f0e7c39ab1fc5b85692bb2) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-graphics')
-rw-r--r--meta/recipes-graphics/pango/pango/0001-Drop-introspection-macros-from-acinclude.m4.patch120
-rw-r--r--meta/recipes-graphics/pango/pango_1.42.4.bb (renamed from meta/recipes-graphics/pango/pango_1.40.14.bb)11
2 files changed, 4 insertions, 127 deletions
diff --git a/meta/recipes-graphics/pango/pango/0001-Drop-introspection-macros-from-acinclude.m4.patch b/meta/recipes-graphics/pango/pango/0001-Drop-introspection-macros-from-acinclude.m4.patch
deleted file mode 100644
index 9e1626e9a0..0000000000
--- a/meta/recipes-graphics/pango/pango/0001-Drop-introspection-macros-from-acinclude.m4.patch
+++ /dev/null
@@ -1,120 +0,0 @@
1From 867a512eddbeb1899d3e7096df3da1dd0ce3e7b7 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex.kanavin@gmail.com>
3Date: Fri, 23 Oct 2015 14:06:17 +0300
4Subject: [PATCH] Drop introspection macros from acinclude.m4
5
6They take precendence over our customized macros, and so
7introspection doesn't work correctly.
8
9Upstream-Status: Backport [upstream 5ccfe0]
10Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
11---
12 acinclude.m4 | 96 ------------------------------------------------------------
13 1 file changed, 96 deletions(-)
14
15diff --git a/acinclude.m4 b/acinclude.m4
16index 8899c7c..48fd5d8 100644
17--- a/acinclude.m4
18+++ b/acinclude.m4
19@@ -55,99 +55,3 @@ AC_DEFUN([JH_CHECK_XML_CATALOG],
20 ])
21
22
23-dnl REMOVE THIS WHEN introspection.m4 is widely available
24-dnl
25-dnl -*- mode: autoconf -*-
26-dnl Copyright 2009 Johan Dahlin
27-dnl
28-dnl This file is free software; the author(s) gives unlimited
29-dnl permission to copy and/or distribute it, with or without
30-dnl modifications, as long as this notice is preserved.
31-dnl
32-
33-# serial 1
34-
35-m4_define([_GOBJECT_INTROSPECTION_CHECK_INTERNAL],
36-[
37- AC_BEFORE([AC_PROG_LIBTOOL],[$0])dnl setup libtool first
38- AC_BEFORE([AM_PROG_LIBTOOL],[$0])dnl setup libtool first
39- AC_BEFORE([LT_INIT],[$0])dnl setup libtool first
40-
41- dnl enable/disable introspection
42- m4_if([$2], [require],
43- [dnl
44- enable_introspection=yes
45- ],[dnl
46- AC_ARG_ENABLE(introspection,
47- AS_HELP_STRING([--enable-introspection[=@<:@no/auto/yes@:>@]],
48- [Enable introspection for this build]),,
49- [enable_introspection=auto])
50- ])dnl
51-
52- AC_MSG_CHECKING([for gobject-introspection])
53-
54- dnl presence/version checking
55- AS_CASE([$enable_introspection],
56- [no], [dnl
57- found_introspection="no (disabled, use --enable-introspection to enable)"
58- ],dnl
59- [yes],[dnl
60- PKG_CHECK_EXISTS([gobject-introspection-1.0],,
61- AC_MSG_ERROR([gobject-introspection-1.0 is not installed]))
62- PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1],
63- found_introspection=yes,
64- AC_MSG_ERROR([You need to have gobject-introspection >= $1 installed to build AC_PACKAGE_NAME]))
65- ],dnl
66- [auto],[dnl
67- PKG_CHECK_EXISTS([gobject-introspection-1.0 >= $1], found_introspection=yes, found_introspection=no)
68- ],dnl
69- [dnl
70- AC_MSG_ERROR([invalid argument passed to --enable-introspection, should be one of @<:@no/auto/yes@:>@])
71- ])dnl
72-
73- AC_MSG_RESULT([$found_introspection])
74-
75- INTROSPECTION_SCANNER=
76- INTROSPECTION_COMPILER=
77- INTROSPECTION_GENERATE=
78- INTROSPECTION_GIRDIR=
79- INTROSPECTION_TYPELIBDIR=
80- if test "x$found_introspection" = "xyes"; then
81- INTROSPECTION_SCANNER=`$PKG_CONFIG --variable=g_ir_scanner gobject-introspection-1.0`
82- INTROSPECTION_COMPILER=`$PKG_CONFIG --variable=g_ir_compiler gobject-introspection-1.0`
83- INTROSPECTION_GENERATE=`$PKG_CONFIG --variable=g_ir_generate gobject-introspection-1.0`
84- INTROSPECTION_GIRDIR=`$PKG_CONFIG --variable=girdir gobject-introspection-1.0`
85- INTROSPECTION_TYPELIBDIR="$($PKG_CONFIG --variable=typelibdir gobject-introspection-1.0)"
86- INTROSPECTION_CFLAGS=`$PKG_CONFIG --cflags gobject-introspection-1.0`
87- INTROSPECTION_LIBS=`$PKG_CONFIG --libs gobject-introspection-1.0`
88- INTROSPECTION_MAKEFILE=`$PKG_CONFIG --variable=datadir gobject-introspection-1.0`/gobject-introspection-1.0/Makefile.introspection
89- fi
90- AC_SUBST(INTROSPECTION_SCANNER)
91- AC_SUBST(INTROSPECTION_COMPILER)
92- AC_SUBST(INTROSPECTION_GENERATE)
93- AC_SUBST(INTROSPECTION_GIRDIR)
94- AC_SUBST(INTROSPECTION_TYPELIBDIR)
95- AC_SUBST(INTROSPECTION_CFLAGS)
96- AC_SUBST(INTROSPECTION_LIBS)
97- AC_SUBST(INTROSPECTION_MAKEFILE)
98-
99- AM_CONDITIONAL(HAVE_INTROSPECTION, test "x$found_introspection" = "xyes")
100-])
101-
102-
103-dnl Usage:
104-dnl GOBJECT_INTROSPECTION_CHECK([minimum-g-i-version])
105-
106-AC_DEFUN([GOBJECT_INTROSPECTION_CHECK],
107-[
108- _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1])
109-])
110-
111-dnl Usage:
112-dnl GOBJECT_INTROSPECTION_REQUIRE([minimum-g-i-version])
113-
114-
115-AC_DEFUN([GOBJECT_INTROSPECTION_REQUIRE],
116-[
117- _GOBJECT_INTROSPECTION_CHECK_INTERNAL([$1], [require])
118-])
119--
1202.1.4
diff --git a/meta/recipes-graphics/pango/pango_1.40.14.bb b/meta/recipes-graphics/pango/pango_1.42.4.bb
index 3bd9c64716..e73fd28dfd 100644
--- a/meta/recipes-graphics/pango/pango_1.40.14.bb
+++ b/meta/recipes-graphics/pango/pango_1.42.4.bb
@@ -14,20 +14,17 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
14inherit gnomebase gtk-doc ptest-gnome upstream-version-is-even gobject-introspection 14inherit gnomebase gtk-doc ptest-gnome upstream-version-is-even gobject-introspection
15 15
16SRC_URI += "file://run-ptest \ 16SRC_URI += "file://run-ptest \
17 file://0001-Drop-introspection-macros-from-acinclude.m4.patch \
18 file://0001-Enforce-recreation-of-docs-pango.types-it-is-build-c.patch \ 17 file://0001-Enforce-recreation-of-docs-pango.types-it-is-build-c.patch \
19" 18"
20SRC_URI[archive.md5sum] = "18d7eb8d52e7e445e733c109ddaa7b78" 19SRC_URI[archive.md5sum] = "deb171a31a3ad76342d5195a1b5bbc7c"
21SRC_URI[archive.sha256sum] = "90af1beaa7bf9e4c52db29ec251ec4fd0a8f2cc185d521ad1f88d01b3a6a17e3" 20SRC_URI[archive.sha256sum] = "1d2b74cd63e8bd41961f2f8d952355aa0f9be6002b52c8aa7699d9f5da597c9d"
22 21
23DEPENDS = "glib-2.0 glib-2.0-native fontconfig freetype virtual/libiconv cairo harfbuzz" 22DEPENDS = "glib-2.0 glib-2.0-native fontconfig freetype virtual/libiconv cairo harfbuzz fribidi"
24 23
25PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}" 24PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'x11', d)}"
26PACKAGECONFIG[x11] = "--with-xft,--without-xft,virtual/libx11 libxft" 25PACKAGECONFIG[x11] = "--with-xft,--without-xft,virtual/libx11 libxft"
27 26
28EXTRA_OECONF = " \ 27EXTRA_OECONF = "--disable-debug"
29 --disable-debug \
30 "
31 28
32LEAD_SONAME = "libpango-1.0*" 29LEAD_SONAME = "libpango-1.0*"
33LIBV = "1.8.0" 30LIBV = "1.8.0"