All of lore.kernel.org
 help / color / mirror / Atom feed
* [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example
@ 2017-06-05 19:30 Eric Ruei
  2017-06-05 19:30 ` [morty/master][PATCH 2/2] packagegroup-arago-tisdk-qte: add qtwebbrowser-example to the list and sort it Eric Ruei
  2017-06-05 21:59 ` [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Denys Dmytriyenko
  0 siblings, 2 replies; 5+ messages in thread
From: Eric Ruei @ 2017-06-05 19:30 UTC (permalink / raw)
  To: meta-arago

- This is a touch-friendly web broswer based on qtwebengine and QML

Signed-off-by: Eric Ruei <e-ruei1@ti.com>
---
 ...0001-qtwebbrowser-disable-FullScreen-mode.patch | 28 ++++++++++++++++++
 .../recipes-qt/qt5/qtwebbrowser-example_1.0.bb     | 33 ++++++++++++++++++++++
 2 files changed, 61 insertions(+)
 create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
 create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb

diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
new file mode 100644
index 0000000..9cac96a
--- /dev/null
+++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
@@ -0,0 +1,28 @@
+From 268cf8dec9486fd875ab7fae241273e7b5b2a143 Mon Sep 17 00:00:00 2001
+From: Eric Ruei <e-ruei1@ti.com>
+Date: Fri, 2 Jun 2017 15:29:01 -0400
+Subject: [PATCH] qtwebbrowser: disable FullScreen mode
+
+We need to disable full-screen mode because there is no way to exit in that mode
+
+Signed-off-by: Eric Ruei <e-ruei1@ti.com>
+---
+ src/main.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/main.cpp b/src/main.cpp
+index 2181f15..5f146b6 100644
+--- a/src/main.cpp
++++ b/src/main.cpp
+@@ -101,7 +101,7 @@ int main(int argc, char **argv)
+     if (view.size().isEmpty())
+         view.setGeometry(0, 0, 800, 600);
+ #else
+-    view.showFullScreen();
++    view.show();
+ #endif
+ 
+     app.exec();
+-- 
+1.9.1
+
diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
new file mode 100644
index 0000000..a063207
--- /dev/null
+++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
@@ -0,0 +1,33 @@
+SUMMARY = "Qt Touch-Friendly WebBroswer"
+HOMEPAGE = "http://blog.qt.io/blog/2016/07/18/qt-webbrowser-1-0/"
+SECTION = "multimedia"
+LICENSE = "GPL-3.0 & GFDL-1.3"
+LIC_FILES_CHKSUM = " \
+    file://LICENSE.GPLv3;md5=a40e2bb02b1ac431f461afd03ff9d1d6 \
+    file://LICENSE.FDL;md5=6d9f2a9af4c8b8c3c769f6cc1b6aaf7e \
+"
+DEPENDS += "qtwebengine"
+
+PR = "r1"
+
+BRANCH = "dev"
+SRCREV = "023733af5523a5ad84359926224fa106001215f4"
+
+SRC_URI = "git://code.qt.io/qt-apps/qtwebbrowser.git;protocol=git;branch=${BRANCH} \
+    file://0001-qtwebbrowser-disable-FullScreen-mode.patch \
+"
+
+S = "${WORKDIR}/git"
+
+inherit qt-provider
+
+# Install qtwebbrowser under /usr/share/qt5/examples/webengine
+do_install() {
+    install -d ${D}${datadir}/qt5/examples/webengine/webbrowser/src
+    install -m 0755 src/qtwebbrowser ${D}${datadir}/qt5/examples/webengine/webbrowser/qtwebbrowser
+    cp -r ${S}/* ${D}${datadir}/qt5/examples/webengine/webbrowser/.
+}
+
+FILES_${PN} +=  " \
+/usr/share/qt5/examples/webengine/webbrowser/* \
+"
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [morty/master][PATCH 2/2] packagegroup-arago-tisdk-qte: add qtwebbrowser-example to the list and sort it
  2017-06-05 19:30 [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Eric Ruei
@ 2017-06-05 19:30 ` Eric Ruei
  2017-06-05 21:59 ` [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Denys Dmytriyenko
  1 sibling, 0 replies; 5+ messages in thread
From: Eric Ruei @ 2017-06-05 19:30 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Eric Ruei <e-ruei1@ti.com>
---
 .../recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb           | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb
index f2f87be..d7b8f0b 100644
--- a/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb
+++ b/meta-arago-distro/recipes-core/packagegroups/packagegroup-arago-tisdk-qte.bb
@@ -24,6 +24,7 @@ QT5_DEMOS = "\
     qtscript-examples \
     qtsvg-examples \
     ${@bb.utils.contains('DISTRO_FEATURES', 'wayland', 'qtwayland-examples', '', d)} \
+    qtwebbrowser-example \
     qtwebengine-examples \
     qtwebkit-examples-examples \
 "
-- 
1.9.1



^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example
  2017-06-05 19:30 [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Eric Ruei
  2017-06-05 19:30 ` [morty/master][PATCH 2/2] packagegroup-arago-tisdk-qte: add qtwebbrowser-example to the list and sort it Eric Ruei
@ 2017-06-05 21:59 ` Denys Dmytriyenko
  2017-06-05 22:08   ` Ruei, Eric
  1 sibling, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2017-06-05 21:59 UTC (permalink / raw)
  To: Eric Ruei; +Cc: meta-arago

Eric,

Is it a standalone app? Why did you call it qtwebbrowser-example?

Also, would it make sense to keep the main recipe in meta-arago-extra and 
apply the fullscreen patch in meta-arago-distro? BTW, the patch is missing 
Upstream-Status field.

It seems you are copying the sources to the target as well - is it expected? 
Also, when using "cp" to copy files, please use below or similar:
cp -R --no-dereference --preserve=mode,links

-- 
Denys


On Mon, Jun 05, 2017 at 03:30:13PM -0400, Eric Ruei wrote:
> - This is a touch-friendly web broswer based on qtwebengine and QML
> 
> Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> ---
>  ...0001-qtwebbrowser-disable-FullScreen-mode.patch | 28 ++++++++++++++++++
>  .../recipes-qt/qt5/qtwebbrowser-example_1.0.bb     | 33 ++++++++++++++++++++++
>  2 files changed, 61 insertions(+)
>  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
>  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> 
> diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> new file mode 100644
> index 0000000..9cac96a
> --- /dev/null
> +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> @@ -0,0 +1,28 @@
> +From 268cf8dec9486fd875ab7fae241273e7b5b2a143 Mon Sep 17 00:00:00 2001
> +From: Eric Ruei <e-ruei1@ti.com>
> +Date: Fri, 2 Jun 2017 15:29:01 -0400
> +Subject: [PATCH] qtwebbrowser: disable FullScreen mode
> +
> +We need to disable full-screen mode because there is no way to exit in that mode
> +
> +Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> +---
> + src/main.cpp | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/main.cpp b/src/main.cpp
> +index 2181f15..5f146b6 100644
> +--- a/src/main.cpp
> ++++ b/src/main.cpp
> +@@ -101,7 +101,7 @@ int main(int argc, char **argv)
> +     if (view.size().isEmpty())
> +         view.setGeometry(0, 0, 800, 600);
> + #else
> +-    view.showFullScreen();
> ++    view.show();
> + #endif
> + 
> +     app.exec();
> +-- 
> +1.9.1
> +
> diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> new file mode 100644
> index 0000000..a063207
> --- /dev/null
> +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> @@ -0,0 +1,33 @@
> +SUMMARY = "Qt Touch-Friendly WebBroswer"
> +HOMEPAGE = "http://blog.qt.io/blog/2016/07/18/qt-webbrowser-1-0/"
> +SECTION = "multimedia"
> +LICENSE = "GPL-3.0 & GFDL-1.3"
> +LIC_FILES_CHKSUM = " \
> +    file://LICENSE.GPLv3;md5=a40e2bb02b1ac431f461afd03ff9d1d6 \
> +    file://LICENSE.FDL;md5=6d9f2a9af4c8b8c3c769f6cc1b6aaf7e \
> +"
> +DEPENDS += "qtwebengine"
> +
> +PR = "r1"
> +
> +BRANCH = "dev"
> +SRCREV = "023733af5523a5ad84359926224fa106001215f4"
> +
> +SRC_URI = "git://code.qt.io/qt-apps/qtwebbrowser.git;protocol=git;branch=${BRANCH} \
> +    file://0001-qtwebbrowser-disable-FullScreen-mode.patch \
> +"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit qt-provider
> +
> +# Install qtwebbrowser under /usr/share/qt5/examples/webengine
> +do_install() {
> +    install -d ${D}${datadir}/qt5/examples/webengine/webbrowser/src
> +    install -m 0755 src/qtwebbrowser ${D}${datadir}/qt5/examples/webengine/webbrowser/qtwebbrowser
> +    cp -r ${S}/* ${D}${datadir}/qt5/examples/webengine/webbrowser/.
> +}
> +
> +FILES_${PN} +=  " \
> +/usr/share/qt5/examples/webengine/webbrowser/* \
> +"
> -- 
> 1.9.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example
  2017-06-05 21:59 ` [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Denys Dmytriyenko
@ 2017-06-05 22:08   ` Ruei, Eric
  2017-06-05 22:13     ` Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Ruei, Eric @ 2017-06-05 22:08 UTC (permalink / raw)
  To: Dmytriyenko, Denys; +Cc: meta-arago

Hi, Denys:

Please see my answers in-line below:

Best regards,

Eric


-----Original Message-----
From: Dmytriyenko, Denys 
Sent: Monday, June 05, 2017 5:59 PM
To: Ruei, Eric
Cc: meta-arago@arago-project.org
Subject: Re: [meta-arago] [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example

Eric,

Is it a standalone app? Why did you call it qtwebbrowser-example?
[ER] Yes, it is a standalone QT app.
         I call it qtwebbrowser-example to indicate that it is a QT demo example, not a QT module such as qtwebengine.
         What name do you suggest?

Also, would it make sense to keep the main recipe in meta-arago-extra and apply the fullscreen patch in meta-arago-distro? BTW, the patch is missing Upstream-Status field.
[ER] Yes, I can do that.

It seems you are copying the sources to the target as well - is it expected?
[ER] Yes, we would like the source code to be available just like some other QT demo programs.
 
Also, when using "cp" to copy files, please use below or similar:
cp -R --no-dereference --preserve=mode,links
[ER] Yes, I will follow your reference.

--
Denys


On Mon, Jun 05, 2017 at 03:30:13PM -0400, Eric Ruei wrote:
> - This is a touch-friendly web broswer based on qtwebengine and QML
> 
> Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> ---
>  ...0001-qtwebbrowser-disable-FullScreen-mode.patch | 28 ++++++++++++++++++
>  .../recipes-qt/qt5/qtwebbrowser-example_1.0.bb     | 33 ++++++++++++++++++++++
>  2 files changed, 61 insertions(+)
>  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
>  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> 
> diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> new file mode 100644
> index 0000000..9cac96a
> --- /dev/null
> +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> @@ -0,0 +1,28 @@
> +From 268cf8dec9486fd875ab7fae241273e7b5b2a143 Mon Sep 17 00:00:00 2001
> +From: Eric Ruei <e-ruei1@ti.com>
> +Date: Fri, 2 Jun 2017 15:29:01 -0400
> +Subject: [PATCH] qtwebbrowser: disable FullScreen mode
> +
> +We need to disable full-screen mode because there is no way to exit in that mode
> +
> +Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> +---
> + src/main.cpp | 2 +-
> + 1 file changed, 1 insertion(+), 1 deletion(-)
> +
> +diff --git a/src/main.cpp b/src/main.cpp
> +index 2181f15..5f146b6 100644
> +--- a/src/main.cpp
> ++++ b/src/main.cpp
> +@@ -101,7 +101,7 @@ int main(int argc, char **argv)
> +     if (view.size().isEmpty())
> +         view.setGeometry(0, 0, 800, 600);
> + #else
> +-    view.showFullScreen();
> ++    view.show();
> + #endif
> + 
> +     app.exec();
> +-- 
> +1.9.1
> +
> diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> new file mode 100644
> index 0000000..a063207
> --- /dev/null
> +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> @@ -0,0 +1,33 @@
> +SUMMARY = "Qt Touch-Friendly WebBroswer"
> +HOMEPAGE = "http://blog.qt.io/blog/2016/07/18/qt-webbrowser-1-0/"
> +SECTION = "multimedia"
> +LICENSE = "GPL-3.0 & GFDL-1.3"
> +LIC_FILES_CHKSUM = " \
> +    file://LICENSE.GPLv3;md5=a40e2bb02b1ac431f461afd03ff9d1d6 \
> +    file://LICENSE.FDL;md5=6d9f2a9af4c8b8c3c769f6cc1b6aaf7e \
> +"
> +DEPENDS += "qtwebengine"
> +
> +PR = "r1"
> +
> +BRANCH = "dev"
> +SRCREV = "023733af5523a5ad84359926224fa106001215f4"
> +
> +SRC_URI = "git://code.qt.io/qt-apps/qtwebbrowser.git;protocol=git;branch=${BRANCH} \
> +    file://0001-qtwebbrowser-disable-FullScreen-mode.patch \
> +"
> +
> +S = "${WORKDIR}/git"
> +
> +inherit qt-provider
> +
> +# Install qtwebbrowser under /usr/share/qt5/examples/webengine
> +do_install() {
> +    install -d ${D}${datadir}/qt5/examples/webengine/webbrowser/src
> +    install -m 0755 src/qtwebbrowser ${D}${datadir}/qt5/examples/webengine/webbrowser/qtwebbrowser
> +    cp -r ${S}/* ${D}${datadir}/qt5/examples/webengine/webbrowser/.
> +}
> +
> +FILES_${PN} +=  " \
> +/usr/share/qt5/examples/webengine/webbrowser/* \
> +"
> -- 
> 1.9.1
> 
> _______________________________________________
> meta-arago mailing list
> meta-arago@arago-project.org
> http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example
  2017-06-05 22:08   ` Ruei, Eric
@ 2017-06-05 22:13     ` Denys Dmytriyenko
  0 siblings, 0 replies; 5+ messages in thread
From: Denys Dmytriyenko @ 2017-06-05 22:13 UTC (permalink / raw)
  To: Ruei, Eric; +Cc: meta-arago

On Mon, Jun 05, 2017 at 06:08:24PM -0400, Ruei, Eric wrote:
> Hi, Denys:
> 
> Please see my answers in-line below:
> 
> Best regards,
> 
> Eric
> 
> 
> -----Original Message-----
> From: Dmytriyenko, Denys 
> Sent: Monday, June 05, 2017 5:59 PM
> To: Ruei, Eric
> Cc: meta-arago@arago-project.org
> Subject: Re: [meta-arago] [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example
> 
> Eric,
> 
> Is it a standalone app? Why did you call it qtwebbrowser-example?
> [ER] Yes, it is a standalone QT app.
>          I call it qtwebbrowser-example to indicate that it is a QT demo example, not a QT module such as qtwebengine.
>          What name do you suggest?

It is always recommended to keep the original name of the source, which seems 
to be "qtwebbrowser":

http://code.qt.io/cgit/qt-apps/qtwebbrowser.git/


> Also, would it make sense to keep the main recipe in meta-arago-extra and 
> apply the fullscreen patch in meta-arago-distro? BTW, the patch is missing 
> Upstream-Status field.
> [ER] Yes, I can do that.
> 
> It seems you are copying the sources to the target as well - is it expected?
> [ER] Yes, we would like the source code to be available just like some other QT demo programs.

Well, I don't believe this is really an example, but rather a standalone 
application. Even though, it may be possible to package the source code - then 
you'd want to install the binary into bindir, package it into the main package 
and package sources into something like ${PN}-example or such.


> Also, when using "cp" to copy files, please use below or similar:
> cp -R --no-dereference --preserve=mode,links
> [ER] Yes, I will follow your reference.
> 
> --
> Denys
> 
> 
> On Mon, Jun 05, 2017 at 03:30:13PM -0400, Eric Ruei wrote:
> > - This is a touch-friendly web broswer based on qtwebengine and QML
> > 
> > Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> > ---
> >  ...0001-qtwebbrowser-disable-FullScreen-mode.patch | 28 ++++++++++++++++++
> >  .../recipes-qt/qt5/qtwebbrowser-example_1.0.bb     | 33 ++++++++++++++++++++++
> >  2 files changed, 61 insertions(+)
> >  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> >  create mode 100644 meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> > 
> > diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> > new file mode 100644
> > index 0000000..9cac96a
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example/0001-qtwebbrowser-disable-FullScreen-mode.patch
> > @@ -0,0 +1,28 @@
> > +From 268cf8dec9486fd875ab7fae241273e7b5b2a143 Mon Sep 17 00:00:00 2001
> > +From: Eric Ruei <e-ruei1@ti.com>
> > +Date: Fri, 2 Jun 2017 15:29:01 -0400
> > +Subject: [PATCH] qtwebbrowser: disable FullScreen mode
> > +
> > +We need to disable full-screen mode because there is no way to exit in that mode
> > +
> > +Signed-off-by: Eric Ruei <e-ruei1@ti.com>
> > +---
> > + src/main.cpp | 2 +-
> > + 1 file changed, 1 insertion(+), 1 deletion(-)
> > +
> > +diff --git a/src/main.cpp b/src/main.cpp
> > +index 2181f15..5f146b6 100644
> > +--- a/src/main.cpp
> > ++++ b/src/main.cpp
> > +@@ -101,7 +101,7 @@ int main(int argc, char **argv)
> > +     if (view.size().isEmpty())
> > +         view.setGeometry(0, 0, 800, 600);
> > + #else
> > +-    view.showFullScreen();
> > ++    view.show();
> > + #endif
> > + 
> > +     app.exec();
> > +-- 
> > +1.9.1
> > +
> > diff --git a/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> > new file mode 100644
> > index 0000000..a063207
> > --- /dev/null
> > +++ b/meta-arago-distro/recipes-qt/qt5/qtwebbrowser-example_1.0.bb
> > @@ -0,0 +1,33 @@
> > +SUMMARY = "Qt Touch-Friendly WebBroswer"
> > +HOMEPAGE = "http://blog.qt.io/blog/2016/07/18/qt-webbrowser-1-0/"
> > +SECTION = "multimedia"
> > +LICENSE = "GPL-3.0 & GFDL-1.3"
> > +LIC_FILES_CHKSUM = " \
> > +    file://LICENSE.GPLv3;md5=a40e2bb02b1ac431f461afd03ff9d1d6 \
> > +    file://LICENSE.FDL;md5=6d9f2a9af4c8b8c3c769f6cc1b6aaf7e \
> > +"
> > +DEPENDS += "qtwebengine"
> > +
> > +PR = "r1"
> > +
> > +BRANCH = "dev"
> > +SRCREV = "023733af5523a5ad84359926224fa106001215f4"
> > +
> > +SRC_URI = "git://code.qt.io/qt-apps/qtwebbrowser.git;protocol=git;branch=${BRANCH} \
> > +    file://0001-qtwebbrowser-disable-FullScreen-mode.patch \
> > +"
> > +
> > +S = "${WORKDIR}/git"
> > +
> > +inherit qt-provider
> > +
> > +# Install qtwebbrowser under /usr/share/qt5/examples/webengine
> > +do_install() {
> > +    install -d ${D}${datadir}/qt5/examples/webengine/webbrowser/src
> > +    install -m 0755 src/qtwebbrowser ${D}${datadir}/qt5/examples/webengine/webbrowser/qtwebbrowser
> > +    cp -r ${S}/* ${D}${datadir}/qt5/examples/webengine/webbrowser/.
> > +}
> > +
> > +FILES_${PN} +=  " \
> > +/usr/share/qt5/examples/webengine/webbrowser/* \
> > +"
> > -- 
> > 1.9.1
> > 
> > _______________________________________________
> > meta-arago mailing list
> > meta-arago@arago-project.org
> > http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-06-05 22:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-05 19:30 [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Eric Ruei
2017-06-05 19:30 ` [morty/master][PATCH 2/2] packagegroup-arago-tisdk-qte: add qtwebbrowser-example to the list and sort it Eric Ruei
2017-06-05 21:59 ` [morty/master][PATCH 1/2] qtwebbrowser-example: add QT web browser example Denys Dmytriyenko
2017-06-05 22:08   ` Ruei, Eric
2017-06-05 22:13     ` Denys Dmytriyenko

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.