diff options
Diffstat (limited to 'meta/recipes-sato/webkit/webkitgtk_2.36.4.bb')
-rw-r--r-- | meta/recipes-sato/webkit/webkitgtk_2.36.4.bb | 167 |
1 files changed, 167 insertions, 0 deletions
diff --git a/meta/recipes-sato/webkit/webkitgtk_2.36.4.bb b/meta/recipes-sato/webkit/webkitgtk_2.36.4.bb new file mode 100644 index 0000000000..df4ff63121 --- /dev/null +++ b/meta/recipes-sato/webkit/webkitgtk_2.36.4.bb | |||
@@ -0,0 +1,167 @@ | |||
1 | SUMMARY = "WebKit web rendering engine for the GTK+ platform" | ||
2 | HOMEPAGE = "https://www.webkitgtk.org/" | ||
3 | BUGTRACKER = "https://bugs.webkit.org/" | ||
4 | |||
5 | LICENSE = "BSD-2-Clause & LGPL-2.0-or-later" | ||
6 | LIC_FILES_CHKSUM = "file://Source/JavaScriptCore/COPYING.LIB;md5=d0c6d6397a5d84286dda758da57bd691 \ | ||
7 | file://Source/WebCore/LICENSE-APPLE;md5=4646f90082c40bcf298c285f8bab0b12 \ | ||
8 | file://Source/WebCore/LICENSE-LGPL-2;md5=36357ffde2b64ae177b2494445b79d21 \ | ||
9 | file://Source/WebCore/LICENSE-LGPL-2.1;md5=a778a33ef338abbaf8b8a7c36b6eec80 \ | ||
10 | " | ||
11 | |||
12 | SRC_URI = "https://www.webkitgtk.org/releases/${BPN}-${PV}.tar.xz \ | ||
13 | file://0001-FindGObjectIntrospection.cmake-prefix-variables-obta.patch \ | ||
14 | file://0001-Tweak-gtkdoc-settings-so-that-gtkdoc-generation-work.patch \ | ||
15 | file://0001-Fix-build-without-opengl-or-es.patch \ | ||
16 | file://reproducibility.patch \ | ||
17 | file://0001-When-building-introspection-files-do-not-quote-CFLAG.patch \ | ||
18 | " | ||
19 | |||
20 | SRC_URI[sha256sum] = "b6bebe1f85a479d968c19e44a4704622ef8cef61636ad1b2406b77d16ae2e2a8" | ||
21 | |||
22 | inherit cmake pkgconfig gobject-introspection perlnative features_check upstream-version-is-even gtk-doc | ||
23 | |||
24 | ANY_OF_DISTRO_FEATURES = "${GTK3DISTROFEATURES}" | ||
25 | REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'opengl', '', d)}" | ||
26 | |||
27 | CVE_PRODUCT = "webkitgtk webkitgtk\+" | ||
28 | |||
29 | DEPENDS = " \ | ||
30 | ruby-native \ | ||
31 | gperf-native \ | ||
32 | cairo \ | ||
33 | harfbuzz \ | ||
34 | jpeg \ | ||
35 | atk \ | ||
36 | libwebp \ | ||
37 | gtk+3 \ | ||
38 | libxslt \ | ||
39 | libtasn1 \ | ||
40 | libnotify \ | ||
41 | gstreamer1.0 \ | ||
42 | gstreamer1.0-plugins-base \ | ||
43 | " | ||
44 | |||
45 | PACKAGECONFIG_SOUP ?= "soup2" | ||
46 | PACKAGECONFIG ??= "${@bb.utils.filter('DISTRO_FEATURES', 'systemd wayland x11', d)} \ | ||
47 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11 opengl', 'webgl opengl', '', d)} \ | ||
48 | ${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', 'webgl gles2', d)} \ | ||
49 | ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'opengl-or-es', '', d)} \ | ||
50 | enchant \ | ||
51 | libsecret \ | ||
52 | ${PACKAGECONFIG_SOUP} \ | ||
53 | " | ||
54 | |||
55 | PACKAGECONFIG[wayland] = "-DENABLE_WAYLAND_TARGET=ON,-DENABLE_WAYLAND_TARGET=OFF,wayland libwpe wpebackend-fdo wayland-native" | ||
56 | PACKAGECONFIG[angle] = "-DUSE_ANGLE_WEBGL=ON,-DUSE_ANGLE_WEBGL=OFF" | ||
57 | PACKAGECONFIG[x11] = "-DENABLE_X11_TARGET=ON,-DENABLE_X11_TARGET=OFF,virtual/libx11 libxcomposite libxdamage libxrender libxt" | ||
58 | PACKAGECONFIG[geoclue] = "-DENABLE_GEOLOCATION=ON,-DENABLE_GEOLOCATION=OFF,geoclue" | ||
59 | PACKAGECONFIG[enchant] = "-DENABLE_SPELLCHECK=ON,-DENABLE_SPELLCHECK=OFF,enchant2" | ||
60 | PACKAGECONFIG[gles2] = "-DENABLE_GLES2=ON,-DENABLE_GLES2=OFF,virtual/libgles2" | ||
61 | PACKAGECONFIG[webgl] = "-DENABLE_WEBGL=ON,-DENABLE_WEBGL=OFF,virtual/egl" | ||
62 | PACKAGECONFIG[opengl] = "-DENABLE_GRAPHICS_CONTEXT_GL=ON,-DENABLE_GRAPHICS_CONTEXT_GL=OFF,virtual/egl" | ||
63 | PACKAGECONFIG[opengl-or-es] = "-DUSE_OPENGL_OR_ES=ON,-DUSE_OPENGL_OR_ES=OFF" | ||
64 | PACKAGECONFIG[libsecret] = "-DUSE_LIBSECRET=ON,-DUSE_LIBSECRET=OFF,libsecret" | ||
65 | PACKAGECONFIG[libhyphen] = "-DUSE_LIBHYPHEN=ON,-DUSE_LIBHYPHEN=OFF,libhyphen" | ||
66 | PACKAGECONFIG[woff2] = "-DUSE_WOFF2=ON,-DUSE_WOFF2=OFF,woff2" | ||
67 | PACKAGECONFIG[openjpeg] = "-DUSE_OPENJPEG=ON,-DUSE_OPENJPEG=OFF,openjpeg" | ||
68 | PACKAGECONFIG[systemd] = "-DUSE_SYSTEMD=ON,-DUSE_SYSTEMD=off,systemd" | ||
69 | PACKAGECONFIG[reduce-size] = "-DCMAKE_BUILD_TYPE=MinSizeRel,-DCMAKE_BUILD_TYPE=Release,," | ||
70 | PACKAGECONFIG[lcms] = "-DUSE_LCMS=ON,-DUSE_LCMS=OFF,lcms" | ||
71 | PACKAGECONFIG[soup2] = "-DUSE_SOUP2=ON,-DUSE_SOUP2=OFF,libsoup-2.4,,,soup3" | ||
72 | PACKAGECONFIG[soup3] = ",,libsoup,,,soup2" | ||
73 | PACKAGECONFIG[journald] = "-DENABLE_JOURNALD_LOG=ON,-DENABLE_JOURNALD_LOG=OFF,systemd" | ||
74 | |||
75 | # webkitgtk is full of /usr/bin/env python, particular for generating docs | ||
76 | do_configure[postfuncs] += "setup_python_link" | ||
77 | setup_python_link() { | ||
78 | if [ ! -e ${STAGING_BINDIR_NATIVE}/python ]; then | ||
79 | ln -s `which python3` ${STAGING_BINDIR_NATIVE}/python | ||
80 | fi | ||
81 | } | ||
82 | |||
83 | EXTRA_OECMAKE = " \ | ||
84 | -DPORT=GTK \ | ||
85 | ${@bb.utils.contains('GI_DATA_ENABLED', 'True', '-DENABLE_INTROSPECTION=ON', '-DENABLE_INTROSPECTION=OFF', d)} \ | ||
86 | ${@bb.utils.contains('GTKDOC_ENABLED', 'True', '-DENABLE_GTKDOC=ON', '-DENABLE_GTKDOC=OFF', d)} \ | ||
87 | -DENABLE_MINIBROWSER=ON \ | ||
88 | -DPYTHON_EXECUTABLE=`which python3` \ | ||
89 | -DENABLE_BUBBLEWRAP_SANDBOX=OFF \ | ||
90 | -DENABLE_GAMEPAD=OFF \ | ||
91 | " | ||
92 | |||
93 | # Javascript JIT is not supported on ARC | ||
94 | EXTRA_OECMAKE:append:arc = " -DENABLE_JIT=OFF " | ||
95 | # By default 25-bit "medium" calls are used on ARC | ||
96 | # which is not enough for binaries larger than 32 MiB | ||
97 | CFLAGS:append:arc = " -mlong-calls" | ||
98 | CXXFLAGS:append:arc = " -mlong-calls" | ||
99 | |||
100 | # Needed for non-mesa graphics stacks when x11 is disabled | ||
101 | CXXFLAGS += "${@bb.utils.contains('DISTRO_FEATURES', 'x11', '', '-DEGL_NO_X11=1', d)}" | ||
102 | |||
103 | # Javascript JIT is not supported on powerpc | ||
104 | EXTRA_OECMAKE:append:powerpc = " -DENABLE_JIT=OFF " | ||
105 | EXTRA_OECMAKE:append:powerpc64 = " -DENABLE_JIT=OFF " | ||
106 | |||
107 | # ARM JIT code does not build on ARMv4/5/6 anymore | ||
108 | EXTRA_OECMAKE:append:armv5 = " -DENABLE_JIT=OFF " | ||
109 | EXTRA_OECMAKE:append:armv6 = " -DENABLE_JIT=OFF " | ||
110 | EXTRA_OECMAKE:append:armv4 = " -DENABLE_JIT=OFF " | ||
111 | |||
112 | EXTRA_OECMAKE:append:mipsarch = " -DUSE_LD_GOLD=OFF " | ||
113 | EXTRA_OECMAKE:append:powerpc = " -DUSE_LD_GOLD=OFF " | ||
114 | |||
115 | # JIT and gold linker does not work on RISCV | ||
116 | EXTRA_OECMAKE:append:riscv32 = " -DUSE_LD_GOLD=OFF -DENABLE_JIT=OFF" | ||
117 | EXTRA_OECMAKE:append:riscv64 = " -DUSE_LD_GOLD=OFF -DENABLE_JIT=OFF" | ||
118 | |||
119 | # JIT not supported on MIPS either | ||
120 | EXTRA_OECMAKE:append:mipsarch = " -DENABLE_JIT=OFF -DENABLE_C_LOOP=ON " | ||
121 | |||
122 | # JIT not supported on X32 | ||
123 | # An attempt was made to upstream JIT support for x32 in | ||
124 | # https://bugs.webkit.org/show_bug.cgi?id=100450, but this was closed as | ||
125 | # unresolved due to limited X32 adoption. | ||
126 | EXTRA_OECMAKE:append:x86-x32 = " -DENABLE_JIT=OFF " | ||
127 | |||
128 | SECURITY_CFLAGS:remove:aarch64 = "-fpie" | ||
129 | SECURITY_CFLAGS:append:aarch64 = " -fPIE" | ||
130 | |||
131 | FILES:${PN} += "${libdir}/webkit2gtk-4.*/injected-bundle/libwebkit2gtkinjectedbundle.so" | ||
132 | |||
133 | RRECOMMENDS:${PN} += "ca-certificates shared-mime-info" | ||
134 | |||
135 | # http://errors.yoctoproject.org/Errors/Details/20370/ | ||
136 | ARM_INSTRUCTION_SET:armv4 = "arm" | ||
137 | ARM_INSTRUCTION_SET:armv5 = "arm" | ||
138 | ARM_INSTRUCTION_SET:armv6 = "arm" | ||
139 | |||
140 | # https://bugzilla.yoctoproject.org/show_bug.cgi?id=9474 | ||
141 | # https://bugs.webkit.org/show_bug.cgi?id=159880 | ||
142 | # JSC JIT can build on ARMv7 with -marm, but doesn't work on runtime. | ||
143 | # Upstream only tests regularly the JSC JIT on ARMv7 with Thumb2 (-mthumb). | ||
144 | ARM_INSTRUCTION_SET:armv7a = "thumb" | ||
145 | ARM_INSTRUCTION_SET:armv7r = "thumb" | ||
146 | ARM_INSTRUCTION_SET:armv7ve = "thumb" | ||
147 | |||
148 | # introspection inside qemu-arm hangs forever on musl/arm builds | ||
149 | # therefore disable GI_DATA | ||
150 | GI_DATA_ENABLED:libc-musl:armv7a = "False" | ||
151 | GI_DATA_ENABLED:libc-musl:armv7ve = "False" | ||
152 | |||
153 | # Can't be built with ccache | ||
154 | CCACHE_DISABLE = "1" | ||
155 | |||
156 | PACKAGE_PREPROCESS_FUNCS += "src_package_preprocess" | ||
157 | src_package_preprocess () { | ||
158 | # Trim build paths from comments in generated sources to ensure reproducibility | ||
159 | sed -i -e "s,${WORKDIR},,g" \ | ||
160 | ${B}/JavaScriptCore/DerivedSources/*.h \ | ||
161 | ${B}/JavaScriptCore/DerivedSources/yarr/*.h \ | ||
162 | ${B}/JavaScriptCore/PrivateHeaders/JavaScriptCore/*.h \ | ||
163 | ${B}/WebKit2Gtk/DerivedSources/webkit2/*.cpp \ | ||
164 | ${B}/WebKit2Gtk/DerivedSources/webkit2/*.h | ||
165 | |||
166 | } | ||
167 | |||