* [PATCH 1/2] add qt4-x11-base and demo images
@ 2010-11-26 10:22 Eric Bénard
2010-11-26 10:22 ` [PATCH 2/2] qt-demo-init: correctly handle qtdemo for qt4-x11 Eric Bénard
2010-11-26 11:19 ` [PATCH 1/2] add qt4-x11-base and demo images Koen Kooi
0 siblings, 2 replies; 8+ messages in thread
From: Eric Bénard @ 2010-11-26 10:22 UTC (permalink / raw)
To: openembedded-devel
these are images integrating qt4-x11-free librarie and its demo
applications running using Xorg.
Signed-off-by: Eric Bénard <eric@eukrea.com>
---
recipes/images/qt4-x11-base-image.bb | 59 ++++++++++++++++++++++++++++++++++
recipes/images/qt4-x11-demo-image.bb | 7 ++++
2 files changed, 66 insertions(+), 0 deletions(-)
create mode 100644 recipes/images/qt4-x11-base-image.bb
create mode 100644 recipes/images/qt4-x11-demo-image.bb
diff --git a/recipes/images/qt4-x11-base-image.bb b/recipes/images/qt4-x11-base-image.bb
new file mode 100644
index 0000000..d559c96
--- /dev/null
+++ b/recipes/images/qt4-x11-base-image.bb
@@ -0,0 +1,59 @@
+require micro-base-image.bb
+
+TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
+
+XSERVER ?= "xserver-xorg \
+ xf86-input-evdev \
+ xf86-input-tslib \
+ xf86-video-fbdev "
+
+RDEPENDS_append += " \
+ qt4-x11-free \
+ "
+
+QT_INSTALL = " \
+ libqt3support4 \
+ libqtclucene4 \
+ libqtcore4 \
+ libqtdbus4 \
+ libqtgui4 \
+ libqthelp4 \
+ libqtmultimedia4 \
+ libqtnetwork4 \
+ libqtscript4 \
+ libqtscripttools4 \
+ libqtsql4 \
+ libqtsvg4 \
+ libqttest4 \
+ libqtwebkit4 \
+ libqtxml4 \
+ libqtxmlpatterns4 \
+ qt4-fonts \
+ qt4-plugin-iconengine-svgicon \
+ qt4-plugin-imageformat-gif \
+ qt4-plugin-imageformat-ico \
+ qt4-plugin-imageformat-jpeg \
+ qt4-plugin-imageformat-mng \
+ qt4-plugin-imageformat-svg \
+ qt4-plugin-imageformat-tiff \
+ qt4-plugin-phonon-backend-gstreamer \
+ qt4-plugin-script-dbus \
+ qt4-plugin-sqldriver-sqlite2 \
+ qt4-plugin-sqldriver-sqlite \
+"
+
+IMAGE_INSTALL += "\
+ initscripts \
+ kernel-modules \
+ gdbserver \
+ strace \
+ module-init-tools \
+ ${QT_INSTALL} \
+ ${TOUCH} \
+ qwt \
+ pointercal \
+ ${XSERVER} \
+ ttf-liberation-sans ttf-liberation-serif ttf-liberation-mono \
+ xauth xhost xset xrandr \
+"
+
diff --git a/recipes/images/qt4-x11-demo-image.bb b/recipes/images/qt4-x11-demo-image.bb
new file mode 100644
index 0000000..8d14dc1
--- /dev/null
+++ b/recipes/images/qt4-x11-demo-image.bb
@@ -0,0 +1,7 @@
+require qt4-x11-base-image.bb
+
+IMAGE_INSTALL += "\
+ qt4-demos qt4-examples qt-demo-init \
+ qt4-assistant \
+ qwt-examples \
+"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/2] qt-demo-init: correctly handle qtdemo for qt4-x11
2010-11-26 10:22 [PATCH 1/2] add qt4-x11-base and demo images Eric Bénard
@ 2010-11-26 10:22 ` Eric Bénard
2010-11-26 11:19 ` [PATCH 1/2] add qt4-x11-base and demo images Koen Kooi
1 sibling, 0 replies; 8+ messages in thread
From: Eric Bénard @ 2010-11-26 10:22 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Eric Bénard <eric@eukrea.com>
---
recipes/qt4/qt-demo-init/qtdemo-init | 21 ++++++++++++++++++---
recipes/qt4/qt-demo-init_0.1.bb | 2 +-
2 files changed, 19 insertions(+), 4 deletions(-)
diff --git a/recipes/qt4/qt-demo-init/qtdemo-init b/recipes/qt4/qt-demo-init/qtdemo-init
index 8eb8771..ee84be2 100644
--- a/recipes/qt4/qt-demo-init/qtdemo-init
+++ b/recipes/qt4/qt-demo-init/qtdemo-init
@@ -3,7 +3,7 @@
set -e
if [ -f /usr/bin/qtdemo ]; then
- QTDEMO=qtdemo
+ QTDEMO="qtdemo > /var/log/Xsession.log 2>&1"
else
QTDEMO="qtdemoE -qws"
fi
@@ -18,14 +18,29 @@ case "$1" in
if [ ! -f /etc/pointercal ]; then
/usr/bin/ts_calibrate
fi
- QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
+ if [ $QTDEMO == qtdemo ]; then
+ Xorg &
+ export DISPLAY=:0
+ $QTDEMO &
+ else
+ QWS_MOUSE_PROTO=tslib:$TSLIB_TSDEVICE $QTDEMO &
+ fi
else
+ if [ $QTDEMO == qtdemo ]; then
+ Xorg &
+ export DISPLAY=:0
+ fi
$QTDEMO &
fi
;;
stop)
echo "Stopping qtdemo"
- killall qtdemoE
+ if [ $QTDEMO == qtdemo ]; then
+ killall Xorg
+ killall qtdemo
+ else
+ killall qtdemoE
+ fi
;;
restart)
$0 stop
diff --git a/recipes/qt4/qt-demo-init_0.1.bb b/recipes/qt4/qt-demo-init_0.1.bb
index 223ea7e..89eec6c 100644
--- a/recipes/qt4/qt-demo-init_0.1.bb
+++ b/recipes/qt4/qt-demo-init_0.1.bb
@@ -1,7 +1,7 @@
DESCRIPTION = "Init script for qtdemo"
LICENSE = "MIT"
SRC_URI = "file://qtdemo-init"
-PR = "r0"
+PR = "r1"
PACKAGE_ARCH = "all"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 1/2] add qt4-x11-base and demo images
2010-11-26 10:22 [PATCH 1/2] add qt4-x11-base and demo images Eric Bénard
2010-11-26 10:22 ` [PATCH 2/2] qt-demo-init: correctly handle qtdemo for qt4-x11 Eric Bénard
@ 2010-11-26 11:19 ` Koen Kooi
2010-11-28 14:00 ` [PATCH] add task-qt4-x11 and qt4-x11 base & " Eric Bénard
1 sibling, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2010-11-26 11:19 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Could you please put those in a task so they can be reused in other images?
On 26-11-10 11:22, Eric Bénard wrote:
> these are images integrating qt4-x11-free librarie and its demo
> applications running using Xorg.
>
> Signed-off-by: Eric Bénard <eric@eukrea.com>
> ---
> recipes/images/qt4-x11-base-image.bb | 59 ++++++++++++++++++++++++++++++++++
> recipes/images/qt4-x11-demo-image.bb | 7 ++++
> 2 files changed, 66 insertions(+), 0 deletions(-)
> create mode 100644 recipes/images/qt4-x11-base-image.bb
> create mode 100644 recipes/images/qt4-x11-demo-image.bb
>
> diff --git a/recipes/images/qt4-x11-base-image.bb b/recipes/images/qt4-x11-base-image.bb
> new file mode 100644
> index 0000000..d559c96
> --- /dev/null
> +++ b/recipes/images/qt4-x11-base-image.bb
> @@ -0,0 +1,59 @@
> +require micro-base-image.bb
> +
> +TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
> +
> +XSERVER ?= "xserver-xorg \
> + xf86-input-evdev \
> + xf86-input-tslib \
> + xf86-video-fbdev "
> +
> +RDEPENDS_append += " \
> + qt4-x11-free \
> + "
> +
> +QT_INSTALL = " \
> + libqt3support4 \
> + libqtclucene4 \
> + libqtcore4 \
> + libqtdbus4 \
> + libqtgui4 \
> + libqthelp4 \
> + libqtmultimedia4 \
> + libqtnetwork4 \
> + libqtscript4 \
> + libqtscripttools4 \
> + libqtsql4 \
> + libqtsvg4 \
> + libqttest4 \
> + libqtwebkit4 \
> + libqtxml4 \
> + libqtxmlpatterns4 \
> + qt4-fonts \
> + qt4-plugin-iconengine-svgicon \
> + qt4-plugin-imageformat-gif \
> + qt4-plugin-imageformat-ico \
> + qt4-plugin-imageformat-jpeg \
> + qt4-plugin-imageformat-mng \
> + qt4-plugin-imageformat-svg \
> + qt4-plugin-imageformat-tiff \
> + qt4-plugin-phonon-backend-gstreamer \
> + qt4-plugin-script-dbus \
> + qt4-plugin-sqldriver-sqlite2 \
> + qt4-plugin-sqldriver-sqlite \
> +"
> +
> +IMAGE_INSTALL += "\
> + initscripts \
> + kernel-modules \
> + gdbserver \
> + strace \
> + module-init-tools \
> + ${QT_INSTALL} \
> + ${TOUCH} \
> + qwt \
> + pointercal \
> + ${XSERVER} \
> + ttf-liberation-sans ttf-liberation-serif ttf-liberation-mono \
> + xauth xhost xset xrandr \
> +"
> +
> diff --git a/recipes/images/qt4-x11-demo-image.bb b/recipes/images/qt4-x11-demo-image.bb
> new file mode 100644
> index 0000000..8d14dc1
> --- /dev/null
> +++ b/recipes/images/qt4-x11-demo-image.bb
> @@ -0,0 +1,7 @@
> +require qt4-x11-base-image.bb
> +
> +IMAGE_INSTALL += "\
> + qt4-demos qt4-examples qt-demo-init \
> + qt4-assistant \
> + qwt-examples \
> +"
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFM75fBMkyGM64RGpERAtC8AJsGzlOp2CYEyO/RnjX1iOShBpD2OACgiILB
4HT1IOg9RJeJzsxa7tvfRYY=
=AvOj
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH] add task-qt4-x11 and qt4-x11 base & demo images
2010-11-26 11:19 ` [PATCH 1/2] add qt4-x11-base and demo images Koen Kooi
@ 2010-11-28 14:00 ` Eric Bénard
2010-11-29 10:01 ` Koen Kooi
0 siblings, 1 reply; 8+ messages in thread
From: Eric Bénard @ 2010-11-28 14:00 UTC (permalink / raw)
To: openembedded-devel
these are images integrating qt4-x11-free librarie and its demo
applications running using Xorg.
Signed-off-by: Eric Bénard <eric@eukrea.com>
---
recipes/images/qt4-x11-base-image.bb | 30 ++++++++++++++++++++++
recipes/images/qt4-x11-demo-image.bb | 7 +++++
recipes/tasks/task-qt4-x11.bb | 46 ++++++++++++++++++++++++++++++++++
3 files changed, 83 insertions(+), 0 deletions(-)
create mode 100644 recipes/images/qt4-x11-base-image.bb
create mode 100644 recipes/images/qt4-x11-demo-image.bb
create mode 100644 recipes/tasks/task-qt4-x11.bb
diff --git a/recipes/images/qt4-x11-base-image.bb b/recipes/images/qt4-x11-base-image.bb
new file mode 100644
index 0000000..83a1d34
--- /dev/null
+++ b/recipes/images/qt4-x11-base-image.bb
@@ -0,0 +1,30 @@
+require micro-base-image.bb
+
+TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
+
+XSERVER ?= "xserver-xorg \
+ xf86-input-evdev \
+ xf86-input-tslib \
+ xf86-video-fbdev "
+
+DEPENDS += "task-qt4-x11"
+
+RDEPENDS_${PN} += " \
+ task-qt4-x11-base \
+ task-qt4-x11-qwt \
+ "
+
+IMAGE_INSTALL += "\
+ initscripts \
+ kernel-modules \
+ gdbserver \
+ strace \
+ module-init-tools \
+ task-qt4-x11-base \
+ task-qt4-x11-qwt \
+ ${TOUCH} \
+ pointercal \
+ ${XSERVER} \
+ ttf-liberation-sans ttf-liberation-serif ttf-liberation-mono \
+ xauth xhost xset xrandr \
+"
diff --git a/recipes/images/qt4-x11-demo-image.bb b/recipes/images/qt4-x11-demo-image.bb
new file mode 100644
index 0000000..8d14dc1
--- /dev/null
+++ b/recipes/images/qt4-x11-demo-image.bb
@@ -0,0 +1,7 @@
+require qt4-x11-base-image.bb
+
+IMAGE_INSTALL += "\
+ qt4-demos qt4-examples qt-demo-init \
+ qt4-assistant \
+ qwt-examples \
+"
diff --git a/recipes/tasks/task-qt4-x11.bb b/recipes/tasks/task-qt4-x11.bb
new file mode 100644
index 0000000..e2e1fe2
--- /dev/null
+++ b/recipes/tasks/task-qt4-x11.bb
@@ -0,0 +1,46 @@
+DESCRIPTION = "QT4-X11 base Image Feed"
+PR = "r0"
+LICENSE = "MIT"
+
+inherit task
+
+PACKAGES += " \
+ ${PN}-base \
+ ${PN}-qwt \
+"
+
+RDEPENDS_${PN}-base = " \
+ qt4-x11-free \
+ libqt3support4 \
+ libqtclucene4 \
+ libqtcore4 \
+ libqtdbus4 \
+ libqtgui4 \
+ libqthelp4 \
+ libqtmultimedia4 \
+ libqtnetwork4 \
+ libqtscript4 \
+ libqtscripttools4 \
+ libqtsql4 \
+ libqtsvg4 \
+ libqttest4 \
+ libqtwebkit4 \
+ libqtxml4 \
+ libqtxmlpatterns4 \
+ qt4-fonts \
+ qt4-plugin-iconengine-svgicon \
+ qt4-plugin-imageformat-gif \
+ qt4-plugin-imageformat-ico \
+ qt4-plugin-imageformat-jpeg \
+ qt4-plugin-imageformat-mng \
+ qt4-plugin-imageformat-svg \
+ qt4-plugin-imageformat-tiff \
+ qt4-plugin-phonon-backend-gstreamer \
+ qt4-plugin-script-dbus \
+ qt4-plugin-sqldriver-sqlite2 \
+ qt4-plugin-sqldriver-sqlite \
+"
+
+RDEPENDS_${PN}-qwt = "\
+ qwt \
+"
\ No newline at end of file
--
1.6.3.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH] add task-qt4-x11 and qt4-x11 base & demo images
2010-11-28 14:00 ` [PATCH] add task-qt4-x11 and qt4-x11 base & " Eric Bénard
@ 2010-11-29 10:01 ` Koen Kooi
2010-11-29 21:25 ` Khem Raj
0 siblings, 1 reply; 8+ messages in thread
From: Koen Kooi @ 2010-11-29 10:01 UTC (permalink / raw)
To: openembedded-devel
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 28-11-10 15:00, Eric Bénard wrote:
> these are images integrating qt4-x11-free librarie and its demo
> applications running using Xorg.
>
> Signed-off-by: Eric Bénard <eric@eukrea.com>
Looks good enough to me:
Acked-by: Koen Kooi <k-kooi@ti.com>
> ---
> recipes/images/qt4-x11-base-image.bb | 30 ++++++++++++++++++++++
> recipes/images/qt4-x11-demo-image.bb | 7 +++++
> recipes/tasks/task-qt4-x11.bb | 46 ++++++++++++++++++++++++++++++++++
> 3 files changed, 83 insertions(+), 0 deletions(-)
> create mode 100644 recipes/images/qt4-x11-base-image.bb
> create mode 100644 recipes/images/qt4-x11-demo-image.bb
> create mode 100644 recipes/tasks/task-qt4-x11.bb
>
> diff --git a/recipes/images/qt4-x11-base-image.bb b/recipes/images/qt4-x11-base-image.bb
> new file mode 100644
> index 0000000..83a1d34
> --- /dev/null
> +++ b/recipes/images/qt4-x11-base-image.bb
> @@ -0,0 +1,30 @@
> +require micro-base-image.bb
> +
> +TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
> +
> +XSERVER ?= "xserver-xorg \
> + xf86-input-evdev \
> + xf86-input-tslib \
> + xf86-video-fbdev "
> +
> +DEPENDS += "task-qt4-x11"
> +
> +RDEPENDS_${PN} += " \
> + task-qt4-x11-base \
> + task-qt4-x11-qwt \
> + "
> +
> +IMAGE_INSTALL += "\
> + initscripts \
> + kernel-modules \
> + gdbserver \
> + strace \
> + module-init-tools \
> + task-qt4-x11-base \
> + task-qt4-x11-qwt \
> + ${TOUCH} \
> + pointercal \
> + ${XSERVER} \
> + ttf-liberation-sans ttf-liberation-serif ttf-liberation-mono \
> + xauth xhost xset xrandr \
> +"
> diff --git a/recipes/images/qt4-x11-demo-image.bb b/recipes/images/qt4-x11-demo-image.bb
> new file mode 100644
> index 0000000..8d14dc1
> --- /dev/null
> +++ b/recipes/images/qt4-x11-demo-image.bb
> @@ -0,0 +1,7 @@
> +require qt4-x11-base-image.bb
> +
> +IMAGE_INSTALL += "\
> + qt4-demos qt4-examples qt-demo-init \
> + qt4-assistant \
> + qwt-examples \
> +"
> diff --git a/recipes/tasks/task-qt4-x11.bb b/recipes/tasks/task-qt4-x11.bb
> new file mode 100644
> index 0000000..e2e1fe2
> --- /dev/null
> +++ b/recipes/tasks/task-qt4-x11.bb
> @@ -0,0 +1,46 @@
> +DESCRIPTION = "QT4-X11 base Image Feed"
> +PR = "r0"
> +LICENSE = "MIT"
> +
> +inherit task
> +
> +PACKAGES += " \
> + ${PN}-base \
> + ${PN}-qwt \
> +"
> +
> +RDEPENDS_${PN}-base = " \
> + qt4-x11-free \
> + libqt3support4 \
> + libqtclucene4 \
> + libqtcore4 \
> + libqtdbus4 \
> + libqtgui4 \
> + libqthelp4 \
> + libqtmultimedia4 \
> + libqtnetwork4 \
> + libqtscript4 \
> + libqtscripttools4 \
> + libqtsql4 \
> + libqtsvg4 \
> + libqttest4 \
> + libqtwebkit4 \
> + libqtxml4 \
> + libqtxmlpatterns4 \
> + qt4-fonts \
> + qt4-plugin-iconengine-svgicon \
> + qt4-plugin-imageformat-gif \
> + qt4-plugin-imageformat-ico \
> + qt4-plugin-imageformat-jpeg \
> + qt4-plugin-imageformat-mng \
> + qt4-plugin-imageformat-svg \
> + qt4-plugin-imageformat-tiff \
> + qt4-plugin-phonon-backend-gstreamer \
> + qt4-plugin-script-dbus \
> + qt4-plugin-sqldriver-sqlite2 \
> + qt4-plugin-sqldriver-sqlite \
> +"
> +
> +RDEPENDS_${PN}-qwt = "\
> + qwt \
> +"
> \ No newline at end of file
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.5 (Darwin)
iD8DBQFM83niMkyGM64RGpERAiqVAJ9R8Dp0IXMR2TTKtm0VNTL9hSBEuACfeqoU
tXLGZiFGQrGlGyqcUodOWrU=
=nbCV
-----END PGP SIGNATURE-----
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] add task-qt4-x11 and qt4-x11 base & demo images
2010-11-29 10:01 ` Koen Kooi
@ 2010-11-29 21:25 ` Khem Raj
2010-11-30 6:31 ` Eric Bénard
0 siblings, 1 reply; 8+ messages in thread
From: Khem Raj @ 2010-11-29 21:25 UTC (permalink / raw)
To: openembedded-devel
On Mon, Nov 29, 2010 at 2:01 AM, Koen Kooi <k.kooi@student.utwente.nl> wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 28-11-10 15:00, Eric Bénard wrote:
>> these are images integrating qt4-x11-free librarie and its demo
>> applications running using Xorg.
>>
>> Signed-off-by: Eric Bénard <eric@eukrea.com>
>
> Looks good enough to me:
>
> Acked-by: Koen Kooi <k-kooi@ti.com>
Ditto.
Acked-by: Khem Raj <raj.khem@gmail.com>
>
>> ---
>> recipes/images/qt4-x11-base-image.bb | 30 ++++++++++++++++++++++
>> recipes/images/qt4-x11-demo-image.bb | 7 +++++
>> recipes/tasks/task-qt4-x11.bb | 46 ++++++++++++++++++++++++++++++++++
>> 3 files changed, 83 insertions(+), 0 deletions(-)
>> create mode 100644 recipes/images/qt4-x11-base-image.bb
>> create mode 100644 recipes/images/qt4-x11-demo-image.bb
>> create mode 100644 recipes/tasks/task-qt4-x11.bb
>>
>> diff --git a/recipes/images/qt4-x11-base-image.bb b/recipes/images/qt4-x11-base-image.bb
>> new file mode 100644
>> index 0000000..83a1d34
>> --- /dev/null
>> +++ b/recipes/images/qt4-x11-base-image.bb
>> @@ -0,0 +1,30 @@
>> +require micro-base-image.bb
>> +
>> +TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
>> +
>> +XSERVER ?= "xserver-xorg \
>> + xf86-input-evdev \
>> + xf86-input-tslib \
>> + xf86-video-fbdev "
>> +
>> +DEPENDS += "task-qt4-x11"
>> +
>> +RDEPENDS_${PN} += " \
>> + task-qt4-x11-base \
>> + task-qt4-x11-qwt \
>> + "
>> +
>> +IMAGE_INSTALL += "\
>> + initscripts \
>> + kernel-modules \
>> + gdbserver \
>> + strace \
>> + module-init-tools \
>> + task-qt4-x11-base \
>> + task-qt4-x11-qwt \
>> + ${TOUCH} \
>> + pointercal \
>> + ${XSERVER} \
>> + ttf-liberation-sans ttf-liberation-serif ttf-liberation-mono \
>> + xauth xhost xset xrandr \
>> +"
>> diff --git a/recipes/images/qt4-x11-demo-image.bb b/recipes/images/qt4-x11-demo-image.bb
>> new file mode 100644
>> index 0000000..8d14dc1
>> --- /dev/null
>> +++ b/recipes/images/qt4-x11-demo-image.bb
>> @@ -0,0 +1,7 @@
>> +require qt4-x11-base-image.bb
>> +
>> +IMAGE_INSTALL += "\
>> + qt4-demos qt4-examples qt-demo-init \
>> + qt4-assistant \
>> + qwt-examples \
>> +"
>> diff --git a/recipes/tasks/task-qt4-x11.bb b/recipes/tasks/task-qt4-x11.bb
>> new file mode 100644
>> index 0000000..e2e1fe2
>> --- /dev/null
>> +++ b/recipes/tasks/task-qt4-x11.bb
>> @@ -0,0 +1,46 @@
>> +DESCRIPTION = "QT4-X11 base Image Feed"
>> +PR = "r0"
>> +LICENSE = "MIT"
>> +
>> +inherit task
>> +
>> +PACKAGES += " \
>> + ${PN}-base \
>> + ${PN}-qwt \
>> +"
>> +
>> +RDEPENDS_${PN}-base = " \
>> + qt4-x11-free \
>> + libqt3support4 \
>> + libqtclucene4 \
>> + libqtcore4 \
>> + libqtdbus4 \
>> + libqtgui4 \
>> + libqthelp4 \
>> + libqtmultimedia4 \
>> + libqtnetwork4 \
>> + libqtscript4 \
>> + libqtscripttools4 \
>> + libqtsql4 \
>> + libqtsvg4 \
>> + libqttest4 \
>> + libqtwebkit4 \
>> + libqtxml4 \
>> + libqtxmlpatterns4 \
>> + qt4-fonts \
>> + qt4-plugin-iconengine-svgicon \
>> + qt4-plugin-imageformat-gif \
>> + qt4-plugin-imageformat-ico \
>> + qt4-plugin-imageformat-jpeg \
>> + qt4-plugin-imageformat-mng \
>> + qt4-plugin-imageformat-svg \
>> + qt4-plugin-imageformat-tiff \
>> + qt4-plugin-phonon-backend-gstreamer \
>> + qt4-plugin-script-dbus \
>> + qt4-plugin-sqldriver-sqlite2 \
>> + qt4-plugin-sqldriver-sqlite \
>> +"
>> +
>> +RDEPENDS_${PN}-qwt = "\
>> + qwt \
>> +"
>> \ No newline at end of file
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.4.5 (Darwin)
>
> iD8DBQFM83niMkyGM64RGpERAiqVAJ9R8Dp0IXMR2TTKtm0VNTL9hSBEuACfeqoU
> tXLGZiFGQrGlGyqcUodOWrU=
> =nbCV
> -----END PGP SIGNATURE-----
>
>
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] add task-qt4-x11 and qt4-x11 base & demo images
2010-11-29 21:25 ` Khem Raj
@ 2010-11-30 6:31 ` Eric Bénard
2010-11-30 18:06 ` Khem Raj
0 siblings, 1 reply; 8+ messages in thread
From: Eric Bénard @ 2010-11-30 6:31 UTC (permalink / raw)
To: openembedded-devel
Hi Khem,
On 29/11/2010 22:25, Khem Raj wrote:
> On Mon, Nov 29, 2010 at 2:01 AM, Koen Kooi<k.kooi@student.utwente.nl> wrote:
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> On 28-11-10 15:00, Eric Bénard wrote:
>>> these are images integrating qt4-x11-free librarie and its demo
>>> applications running using Xorg.
>>>
>>> Signed-off-by: Eric Bénard<eric@eukrea.com>
>>
>> Looks good enough to me:
>>
>> Acked-by: Koen Kooi<k-kooi@ti.com>
>
> Ditto.
>
> Acked-by: Khem Raj<raj.khem@gmail.com>
can you please cherry pick
cb0419cc5fbf3ddf147d689e027a3fe83d368a3e
3bd272a80f647987f0dff52b842da93773bf3903
to have the qt4-x11 images in the release ?
Thanks,
Eric
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] add task-qt4-x11 and qt4-x11 base & demo images
2010-11-30 6:31 ` Eric Bénard
@ 2010-11-30 18:06 ` Khem Raj
0 siblings, 0 replies; 8+ messages in thread
From: Khem Raj @ 2010-11-30 18:06 UTC (permalink / raw)
To: openembedded-devel
On Mon, Nov 29, 2010 at 10:31 PM, Eric Bénard <eric@eukrea.com> wrote:
> can you please cherry pick
> cb0419cc5fbf3ddf147d689e027a3fe83d368a3e
> 3bd272a80f647987f0dff52b842da93773bf3903
>
> to have the qt4-x11 images in the release ?
>
>
done
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2010-11-30 18:08 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-26 10:22 [PATCH 1/2] add qt4-x11-base and demo images Eric Bénard
2010-11-26 10:22 ` [PATCH 2/2] qt-demo-init: correctly handle qtdemo for qt4-x11 Eric Bénard
2010-11-26 11:19 ` [PATCH 1/2] add qt4-x11-base and demo images Koen Kooi
2010-11-28 14:00 ` [PATCH] add task-qt4-x11 and qt4-x11 base & " Eric Bénard
2010-11-29 10:01 ` Koen Kooi
2010-11-29 21:25 ` Khem Raj
2010-11-30 6:31 ` Eric Bénard
2010-11-30 18:06 ` Khem Raj
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.