From: Martin Jansa <martin.jansa@gmail.com>
To: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Cc: openembedded-core@lists.openembedded.org
Subject: Re: [PATCH 11/21] webkitgtk: add a new recipe for latest upstream version
Date: Thu, 30 Jul 2015 16:43:27 +0200 [thread overview]
Message-ID: <20150730144327.GL2457@jama> (raw)
In-Reply-To: <92e5275b2d09f7230def50f83e09e8189a28a09a.1438265949.git.alexander.kanavin@linux.intel.com>
[-- Attachment #1: Type: text/plain, Size: 3983 bytes --]
On Thu, Jul 30, 2015 at 05:27:34PM +0300, Alexander Kanavin wrote:
> Recipe for the obsolete webkit-gtk 1.8.3 is removed in a separate commit
Why is it renamed from webkit-gtk to webkitgtk?
That will break at least one PACKAGECONFIG:
meta-oe/recipes-graphics/gimp/gimp_2.8.14.bb:PACKAGECONFIG[helpbrowser]
= "--with-webkit, --without-webkit, webkit-gtk"
> Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
> ---
> meta/recipes-sato/webkit/webkitgtk_2.8.4.bb | 56 +++++++++++++++++++++++++++++
> 1 file changed, 56 insertions(+)
> create mode 100644 meta/recipes-sato/webkit/webkitgtk_2.8.4.bb
>
> diff --git a/meta/recipes-sato/webkit/webkitgtk_2.8.4.bb b/meta/recipes-sato/webkit/webkitgtk_2.8.4.bb
> new file mode 100644
> index 0000000..14b722e
> --- /dev/null
> +++ b/meta/recipes-sato/webkit/webkitgtk_2.8.4.bb
> @@ -0,0 +1,56 @@
> +SUMMARY = "WebKit web rendering engine for the GTK+ platform"
> +HOMEPAGE = "http://www.webkitgtk.org/"
> +BUGTRACKER = "http://bugs.webkit.org/"
> +
> +LICENSE = "BSD & LGPLv2+"
> +LIC_FILES_CHKSUM = "file://Source/JavaScriptCore/COPYING.LIB;md5=d0c6d6397a5d84286dda758da57bd691 \
> + file://Source/WebKit/LICENSE;md5=4646f90082c40bcf298c285f8bab0b12 \
> + file://Source/WebCore/LICENSE-APPLE;md5=4646f90082c40bcf298c285f8bab0b12 \
> + file://Source/WebCore/LICENSE-LGPL-2;md5=36357ffde2b64ae177b2494445b79d21 \
> + file://Source/WebCore/LICENSE-LGPL-2.1;md5=a778a33ef338abbaf8b8a7c36b6eec80 \
> + "
> +
> +SRC_URI = "\
> + http://www.webkitgtk.org/releases/${PN}-${PV}.tar.xz \
> + "
t> +SRC_URI[md5sum] = "50bde91beb882250e29dfd6837f56d97"
> +SRC_URI[sha256sum] = "30bd366bd970d4bac2f9ef5bff0fb935376bf91ea2aaa2a5183fe5fdbec20fbd"
> +
> +inherit cmake lib_package pkgconfig perlnative pythonnative
> +
> +DEPENDS = "zlib enchant libsoup-2.4 curl libxml2 cairo libxslt libxt libidn gnutls \
> + gtk+ gtk+3 gstreamer1.0 gstreamer1.0-plugins-base flex-native gperf-native sqlite3 \
> + pango icu bison-native gnome-common gawk intltool-native libwebp \
> + atk udev harfbuzz jpeg libpng pulseaudio librsvg libtheora libvorbis libxcomposite libxtst \
> + ruby-native libsecret libnotify gstreamer1.0-plugins-bad \
> + "
> +DEPENDS += " ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
> +
> +EXTRA_OECMAKE = " \
> + -DPORT=GTK \
> + -DCMAKE_BUILD_TYPE=Release \
> + -DENABLE_INTROSPECTION=False \
> + -DENABLE_MINIBROWSER=True \
> + ${@bb.utils.contains('DISTRO_FEATURES', 'opengl', '-DENABLE_WEBGL=True', '-DENABLE_WEBGL=False', d)} \
> + "
> +
> +# Javascript JIT is not supported on powerpc
> +# FIXME: This might be needed on powerpc64 as well, but can't be easily tested in poky.
> +EXTRA_OECMAKE_append_powerpc = " -DENABLE_JIT=False "
> +
> +# ARM JIT code does not build on ARMv5/6 anymore, apparently they test only on v7 onwards
> +EXTRA_OECMAKE_append_armv5 = " -DENABLE_JIT=False "
> +EXTRA_OECMAKE_append_armv6 = " -DENABLE_JIT=False "
> +
> +# binutils 2.25 has a bug on aarch64:
> +# https://sourceware.org/bugzilla/show_bug.cgi?id=18430
> +EXTRA_OECMAKE_append_aarch64 = " -DUSE_LD_GOLD=False "
> +
> +# JIT not supported on MIPS either
> +EXTRA_OECMAKE_append_mips = " -DENABLE_JIT=False "
> +EXTRA_OECMAKE_append_mips64 = " -DENABLE_JIT=False "
> +
> +FILES_${PN} += "${libdir}/webkit2gtk-4.0/injected-bundle/libwebkit2gtkinjectedbundle.so"
> +FILES_${PN}-dbg += "${libdir}/webkit2gtk-4.0/injected-bundle/.debug/libwebkit2gtkinjectedbundle.so"
> +FILES_${PN}-dbg += "${libdir}/webkitgtk/webkit2gtk-4.0/.debug/*"
> +
> --
> 2.1.4
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
--
Martin 'JaMa' Jansa jabber: Martin.Jansa@gmail.com
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 188 bytes --]
next prev parent reply other threads:[~2015-07-30 14:43 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-07-30 14:27 [PATCH 00/21] Update webkitgtk to latest stable upstream; replace midori with epiphany Alexander Kanavin
2015-07-30 14:27 ` [PATCH 01/21] classes/gnomebase: change tarball compression to xz Alexander Kanavin
2015-07-30 14:27 ` [PATCH 02/21] harfbuzz: enable icu feature Alexander Kanavin
2015-07-30 14:27 ` [PATCH 03/21] classes/cmake: add arch conversion routine Alexander Kanavin
2015-07-30 14:27 ` [PATCH 04/21] jpeg: update to version 9a Alexander Kanavin
2015-07-30 14:27 ` [PATCH 05/21] libnotify: update to version 0.7.6 Alexander Kanavin
2015-07-30 14:27 ` [PATCH 06/21] giflib: add a recipe from meta-oe Alexander Kanavin
2015-07-30 14:27 ` [PATCH 07/21] libyaml: " Alexander Kanavin
2015-07-30 14:27 ` [PATCH 08/21] ruby: add a recipe from meta-ruby Alexander Kanavin
2015-07-30 14:27 ` [PATCH 09/21] libsecret: add a recipe from meta-gnome Alexander Kanavin
2015-07-30 14:27 ` [PATCH 10/21] libwebp: add a recipe from meta-oe Alexander Kanavin
2015-07-30 14:27 ` [PATCH 11/21] webkitgtk: add a new recipe for latest upstream version Alexander Kanavin
2015-07-30 14:43 ` Martin Jansa [this message]
2015-07-30 15:30 ` Alexander Kanavin
2015-07-30 17:57 ` Paul Eggleton
2015-07-30 19:02 ` alexander.kanavin
2015-07-30 18:54 ` alexander.kanavin
2015-07-30 14:27 ` [PATCH 12/21] p11-kit: add a recipe from meta-oe Alexander Kanavin
2015-07-30 14:27 ` [PATCH 13/21] gcr: add a recipe from meta-gnome Alexander Kanavin
2015-07-30 14:27 ` [PATCH 14/21] iso-codes: add a recipe from meta-oe Alexander Kanavin
2015-07-30 14:27 ` [PATCH 15/21] libwnck3: add a recipe from meta-gnome Alexander Kanavin
2015-07-30 14:27 ` [PATCH 16/21] gnome-desktop3: " Alexander Kanavin
2015-07-30 14:27 ` [PATCH 17/21] glib: add a warning suppression patch to glib Alexander Kanavin
2015-07-30 14:27 ` [PATCH 18/21] gsettings-desktop-schemas: add a recipe from meta-gnome Alexander Kanavin
2015-07-30 14:27 ` [PATCH 19/21] epiphany: " Alexander Kanavin
2015-08-07 4:28 ` Randy MacLeod
2015-08-07 12:44 ` Alexander Kanavin
2015-08-11 23:49 ` Randy MacLeod
2015-08-12 1:45 ` Khem Raj
2015-07-30 14:27 ` [PATCH 20/21] webkit-gtk: remove the recipe for the obsolete version 1.8.3 Alexander Kanavin
2015-07-30 14:27 ` [PATCH 21/21] midori: remove the recipe and replace references to midori with epiphany Alexander Kanavin
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150730144327.GL2457@jama \
--to=martin.jansa@gmail.com \
--cc=alexander.kanavin@linux.intel.com \
--cc=openembedded-core@lists.openembedded.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox