* [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path.
@ 2012-02-04 18:41 Peter Tworek
2012-02-04 18:41 ` [PATCH 2/2 v2] webkit-gtk: Make webgl support configurable via DISTRO_FEATURES Peter Tworek
2012-02-08 4:07 ` [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Saul Wold
0 siblings, 2 replies; 3+ messages in thread
From: Peter Tworek @ 2012-02-04 18:41 UTC (permalink / raw)
To: openembedded-core
Signed-off-by: Peter Tworek <tworaz666@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
meta/recipes-sato/webkit/webkit-gtk_svn.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
index 9652953..d754a39 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
@@ -14,7 +14,7 @@ SRCREV_FORMAT = "source"
SRCREV = "101488"
PV = "1.7.2+svnr${SRCPV}"
-PR = "r0"
+PR = "r1"
SRC_URI = "\
svn://svn.webkit.org/repository/webkit/trunk/;module=Source;proto=http;name=source \
@@ -81,7 +81,7 @@ FILES_${PN}launcher = "${bindir}/GtkLauncher"
FILES_${PN}launcher-dbg = "${bindir}/.debug/GtkLauncher"
FILES_libjavascriptcore = "${libdir}/libjavascriptcoregtk-1.0.so.*"
FILES_${PN}-webinspector = "${datadir}/webkitgtk-*/webinspector/"
-FILES_${PN} += "${datadir}/webkit-*/resources/error.html \
+FILES_${PN} += "${datadir}/webkitgtk-*/resources/error.html \
${datadir}/webkitgtk-*/images \
${datadir}/glib-2.0/schemas"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2 v2] webkit-gtk: Make webgl support configurable via DISTRO_FEATURES.
2012-02-04 18:41 [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Peter Tworek
@ 2012-02-04 18:41 ` Peter Tworek
2012-02-08 4:07 ` [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Peter Tworek @ 2012-02-04 18:41 UTC (permalink / raw)
To: openembedded-core
* Add missing dependency on virtual/libgl.
* Make webgl configurable via DISTRO_FEATURES="opengl".
* Run tested on netbook pro.
Signed-off-by: Peter Tworek <tworaz666@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
---
meta/recipes-sato/webkit/webkit-gtk_svn.bb | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
index d754a39..e279ca3 100644
--- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
+++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
@@ -8,13 +8,14 @@ LIC_FILES_CHKSUM = "file://Source/WebCore/rendering/RenderApplet.h;endline=22;md
file://Source/JavaScriptCore/parser/Parser.h;endline=23;md5=2f3cff0ad0a9c486da5a376928973a90"
DEPENDS = "zlib enchant gnome-keyring libsoup-2.4 curl icu libxml2 cairo libxslt libxt libidn gnutls gtk+ gstreamer gst-plugins-base flex-native gperf-native perl-native-runtime sqlite3"
+DEPENDS += " ${@base_contains('DISTRO_FEATURES', 'opengl', 'virtual/libgl', '', d)}"
DEPENDS_darwin8 = "curl icu libxml2 cairo libxslt libidn gnutls gtk+ gstreamer flex-native gperf-native perl-native-runtime sqlite3"
SRCREV_FORMAT = "source"
SRCREV = "101488"
PV = "1.7.2+svnr${SRCPV}"
-PR = "r1"
+PR = "r2"
SRC_URI = "\
svn://svn.webkit.org/repository/webkit/trunk/;module=Source;proto=http;name=source \
@@ -41,6 +42,7 @@ EXTRA_OECONF = "\
--enable-image-resizer \
--enable-link-prefetch \
--with-gtk=2.0 \
+ ${@base_contains('DISTRO_FEATURES', 'opengl', '--enable-webgl', '--disable-webgl', d)} \
UNICODE_CFLAGS=-D_REENTRANT \
"
--
1.7.3.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path.
2012-02-04 18:41 [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Peter Tworek
2012-02-04 18:41 ` [PATCH 2/2 v2] webkit-gtk: Make webgl support configurable via DISTRO_FEATURES Peter Tworek
@ 2012-02-08 4:07 ` Saul Wold
1 sibling, 0 replies; 3+ messages in thread
From: Saul Wold @ 2012-02-08 4:07 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 02/04/2012 10:41 AM, Peter Tworek wrote:
> Signed-off-by: Peter Tworek<tworaz666@gmail.com>
> Reviewed-by: Paul Menzel<paulepanter@users.sourceforge.net>
> ---
> meta/recipes-sato/webkit/webkit-gtk_svn.bb | 4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-sato/webkit/webkit-gtk_svn.bb b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> index 9652953..d754a39 100644
> --- a/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> +++ b/meta/recipes-sato/webkit/webkit-gtk_svn.bb
> @@ -14,7 +14,7 @@ SRCREV_FORMAT = "source"
>
> SRCREV = "101488"
> PV = "1.7.2+svnr${SRCPV}"
> -PR = "r0"
> +PR = "r1"
>
> SRC_URI = "\
> svn://svn.webkit.org/repository/webkit/trunk/;module=Source;proto=http;name=source \
> @@ -81,7 +81,7 @@ FILES_${PN}launcher = "${bindir}/GtkLauncher"
> FILES_${PN}launcher-dbg = "${bindir}/.debug/GtkLauncher"
> FILES_libjavascriptcore = "${libdir}/libjavascriptcoregtk-1.0.so.*"
> FILES_${PN}-webinspector = "${datadir}/webkitgtk-*/webinspector/"
> -FILES_${PN} += "${datadir}/webkit-*/resources/error.html \
> +FILES_${PN} += "${datadir}/webkitgtk-*/resources/error.html \
> ${datadir}/webkitgtk-*/images \
> ${datadir}/glib-2.0/schemas"
>
Merged both of these patches into OE-core
Thanks
Sau!
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-02-08 4:15 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-04 18:41 [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Peter Tworek
2012-02-04 18:41 ` [PATCH 2/2 v2] webkit-gtk: Make webgl support configurable via DISTRO_FEATURES Peter Tworek
2012-02-08 4:07 ` [PATCH 1/2 v2] webkit-gtk: Fix error.html resource path Saul Wold
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox