* [OE-core][PATCH 01/10] qemu-config: Disable dbus-x11 when no x11 in DISTRO_FEATURES
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 02/10] gconf: Disable dbus-x11 when x11 isn't " Xiaofeng Yan
` (8 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
dbus-x11 could be not needed by an image without x11.
So I modified this bb file to enable dbus-x11 when x11 is in DISTRO_FEATURES and disable \
dbus-x11 without x11 feature.
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-bsp/qemu-config/qemu-config.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-bsp/qemu-config/qemu-config.bb b/meta/recipes-bsp/qemu-config/qemu-config.bb
index ebf957a..deaf3a5 100644
--- a/meta/recipes-bsp/qemu-config/qemu-config.bb
+++ b/meta/recipes-bsp/qemu-config/qemu-config.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://${WORKDIR}/COPYING.GPL;md5=751419260aa954499f7abaabaa
COMPATIBLE_MACHINE = "(qemuarm|qemux86|qemumips|qemuppc)"
-PR = "r22"
+PR = "r23"
SRC_URI = "file://distcc.sh \
file://anjuta-remote-run \
@@ -37,7 +37,7 @@ pkg_postinst_${PN} () {
sed -i $D${datadir}/applications/shutdown.desktop -e 's/^Exec=halt/Exec=reboot/'
}
-RDEPENDS_${PN} = "distcc dbus-x11 task-core-nfs-server oprofileui-server rsync bash"
+RDEPENDS_${PN} = "distcc ${@base_contains('DISTRO_FEATURES', 'x11', 'dbus-x11', '', d)} task-core-nfs-server oprofileui-server rsync bash"
inherit update-rc.d allarch
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 02/10] gconf: Disable dbus-x11 when x11 isn't in DISTRO_FEATURES
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 01/10] qemu-config: Disable dbus-x11 when no x11 in DISTRO_FEATURES Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 03/10] gtk.inc: Split x11 dependency relationship from DEPENDS Xiaofeng Yan
` (7 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
If x11 isn't in DISTRO_FEATURES, then an error information "no providers ..." will \
arise. I modified this bb file to disable "dbus-x11" when no x11 in DISTRO_FEATURES.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-gnome/gnome/gconf_3.2.3.bb | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gconf_3.2.3.bb b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
index cdc7a35..9d327fc 100644
--- a/meta/recipes-gnome/gnome/gconf_3.2.3.bb
+++ b/meta/recipes-gnome/gnome/gconf_3.2.3.bb
@@ -6,7 +6,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=55ca817ccb7d5b5b66355690e9abc605"
DEPENDS = "glib-2.0 dbus dbus-glib libxml2 intltool-native polkit"
DEPENDS_virtclass-native = "glib-2.0-native dbus-native dbus-glib-native libxml2-native intltool-native gnome-common-native"
-PR = "r2"
+PR = "r3"
inherit gnomebase
@@ -37,7 +37,9 @@ do_install_append() {
rm ${D}${libdir}/gio/*/*.*a
}
-RDEPENDS_${PN} += "dbus-x11"
+# disable dbus-x11 when x11 isn't in DISTRO_FEATURES
+RDEPENDS_${PN} += "${@base_contains('DISTRO_FEATURES', 'x11', 'dbus-x11', '', d)}"
+
FILES_${PN} += "${libdir}/GConf/* \
${libdir}/gio/*/*.so \
${datadir}/polkit* \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 03/10] gtk.inc: Split x11 dependency relationship from DEPENDS
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 01/10] qemu-config: Disable dbus-x11 when no x11 in DISTRO_FEATURES Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 02/10] gconf: Disable dbus-x11 when x11 isn't " Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb Xiaofeng Yan
` (6 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
DEPENDS has some packages related to x11.
I define a variable "X11DEPENDS" to inlude these packages.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-gnome/gtk+/gtk+.inc | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/meta/recipes-gnome/gtk+/gtk+.inc b/meta/recipes-gnome/gtk+/gtk+.inc
index 0e5c45c..39a4f4a 100644
--- a/meta/recipes-gnome/gtk+/gtk+.inc
+++ b/meta/recipes-gnome/gtk+/gtk+.inc
@@ -9,9 +9,10 @@ LICENSE = "LGPLv2 & LGPLv2+ & LGPLv2.1+"
LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7"
SECTION = "libs"
-DEPENDS = "glib-2.0 pango atk jpeg libpng libxext libxcursor \
- gtk-doc-native docbook-utils-native libxrandr libgcrypt \
- libxdamage libxrender libxcomposite cairo gdk-pixbuf"
+
+X11DEPENDS = "virtual/libx11 libxext libxcursor libxrandr libxdamage libxrender libxcomposite"
+DEPENDS = "glib-2.0 pango atk jpeg libpng gtk-doc-native gdk-pixbuf-native docbook-utils-native \
+ libgcrypt cairo gdk-pixbuf ${X11DEPENDS}"
inherit autotools pkgconfig
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (2 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 03/10] gtk.inc: Split x11 dependency relationship from DEPENDS Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 23:56 ` Saul Wold
2011-12-06 6:58 ` [OE-core][PATCH 05/10] gtk: add demos to the configuation of gtk+ Xiaofeng Yan
` (5 subsequent siblings)
9 siblings, 1 reply; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
gtk run over x11 at current OE-core. If gtk want to run over directfb, then \
the configuration related to x11 should be disabled and directfb should be enabled.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-gnome/gtk+/gtk+.inc | 16 ++++++++++++++--
1 files changed, 14 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gtk+/gtk+.inc b/meta/recipes-gnome/gtk+/gtk+.inc
index 39a4f4a..7fc55e2 100644
--- a/meta/recipes-gnome/gtk+/gtk+.inc
+++ b/meta/recipes-gnome/gtk+/gtk+.inc
@@ -12,11 +12,18 @@ SECTION = "libs"
X11DEPENDS = "virtual/libx11 libxext libxcursor libxrandr libxdamage libxrender libxcomposite"
DEPENDS = "glib-2.0 pango atk jpeg libpng gtk-doc-native gdk-pixbuf-native docbook-utils-native \
- libgcrypt cairo gdk-pixbuf ${X11DEPENDS}"
+ libgcrypt cairo gdk-pixbuf"
+
+PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
+
+PACKAGECONFIG[x11] = "--with-x=yes --with-gdktarget=x11,--with-x=no,${X11DEPENDS}"
+PACKAGECONFIG[directfb] = "--with-gdktarget=directfb,,directfb"
+
inherit autotools pkgconfig
-PACKAGES += "libgail"
+PACKAGES += "libgail gtk-demo"
FILES_${PN} = "${bindir}/gtk-update-icon-cache \
${bindir}/gtk-query-immodules-2.0 \
@@ -41,6 +48,11 @@ FILES_${PN}-dbg += " \
${libdir}/gtk-2.0/${LIBV}/engines/.debug/* \
${libdir}/gtk-2.0/${LIBV}/printbackends/.debug/*"
+FILES_gtk-demo = " \
+ ${datadir}/gtk-2.0/demo/* \
+ ${bindir}/gtk-demo \
+ "
+
FILES_libgail = " \
${libdir}/gtk-2.0/modules/libgail.so \
${libdir}/gtk-2.0/modules/libferret.so \
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* Re: [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb
2011-12-06 6:58 ` [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb Xiaofeng Yan
@ 2011-12-06 23:56 ` Saul Wold
2011-12-07 1:32 ` Xiaofeng Yan
0 siblings, 1 reply; 13+ messages in thread
From: Saul Wold @ 2011-12-06 23:56 UTC (permalink / raw)
To: openembedded-devel
On 12/05/2011 09:58 PM, Xiaofeng Yan wrote:
> From: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>
> gtk run over x11 at current OE-core. If gtk want to run over directfb, then \
> the configuration related to x11 should be disabled and directfb should be enabled.
>
> [YOCTO #1674]
>
> Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com>
> ---
> meta/recipes-gnome/gtk+/gtk+.inc | 16 ++++++++++++++--
> 1 files changed, 14 insertions(+), 2 deletions(-)
>
> diff --git a/meta/recipes-gnome/gtk+/gtk+.inc b/meta/recipes-gnome/gtk+/gtk+.inc
> index 39a4f4a..7fc55e2 100644
> --- a/meta/recipes-gnome/gtk+/gtk+.inc
> +++ b/meta/recipes-gnome/gtk+/gtk+.inc
> @@ -12,11 +12,18 @@ SECTION = "libs"
>
> X11DEPENDS = "virtual/libx11 libxext libxcursor libxrandr libxdamage libxrender libxcomposite"
> DEPENDS = "glib-2.0 pango atk jpeg libpng gtk-doc-native gdk-pixbuf-native docbook-utils-native \
> - libgcrypt cairo gdk-pixbuf ${X11DEPENDS}"
> + libgcrypt cairo gdk-pixbuf"
> +
> +PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
> + ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
> +
> +PACKAGECONFIG[x11] = "--with-x=yes --with-gdktarget=x11,--with-x=no,${X11DEPENDS}"
> +PACKAGECONFIG[directfb] = "--with-gdktarget=directfb,,directfb"
> +
>
This change with the change prior (Split X11 Dependencies) should be 1
commit, while below should be a second commit, you are still mixing
different items together in 1 commit.
> inherit autotools pkgconfig
>
> -PACKAGES += "libgail"
> +PACKAGES += "libgail gtk-demo"
>
> FILES_${PN} = "${bindir}/gtk-update-icon-cache \
> ${bindir}/gtk-query-immodules-2.0 \
> @@ -41,6 +48,11 @@ FILES_${PN}-dbg += " \
> ${libdir}/gtk-2.0/${LIBV}/engines/.debug/* \
> ${libdir}/gtk-2.0/${LIBV}/printbackends/.debug/*"
>
> +FILES_gtk-demo = " \
> + ${datadir}/gtk-2.0/demo/* \
> + ${bindir}/gtk-demo \
> + "
> +
This and the above PACKAGES += change should be in a separate commit
from the PACKAGECONFIG and DEPENDS changes above.
Sau!
> FILES_libgail = " \
> ${libdir}/gtk-2.0/modules/libgail.so \
> ${libdir}/gtk-2.0/modules/libferret.so \
^ permalink raw reply [flat|nested] 13+ messages in thread* Re: [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb
2011-12-06 23:56 ` Saul Wold
@ 2011-12-07 1:32 ` Xiaofeng Yan
0 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-07 1:32 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-devel
On 2011年12月07日 07:56, Saul Wold wrote:
> On 12/05/2011 09:58 PM, Xiaofeng Yan wrote:
>> From: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>>
>> gtk run over x11 at current OE-core. If gtk want to run over
>> directfb, then \
>> the configuration related to x11 should be disabled and directfb
>> should be enabled.
>>
>> [YOCTO #1674]
>>
>> Signed-off-by: Xiaofeng Yan<xiaofeng.yan@windriver.com>
>> ---
>> meta/recipes-gnome/gtk+/gtk+.inc | 16 ++++++++++++++--
>> 1 files changed, 14 insertions(+), 2 deletions(-)
>>
>> diff --git a/meta/recipes-gnome/gtk+/gtk+.inc
>> b/meta/recipes-gnome/gtk+/gtk+.inc
>> index 39a4f4a..7fc55e2 100644
>> --- a/meta/recipes-gnome/gtk+/gtk+.inc
>> +++ b/meta/recipes-gnome/gtk+/gtk+.inc
>> @@ -12,11 +12,18 @@ SECTION = "libs"
>>
>> X11DEPENDS = "virtual/libx11 libxext libxcursor libxrandr libxdamage
>> libxrender libxcomposite"
>> DEPENDS = "glib-2.0 pango atk jpeg libpng gtk-doc-native
>> gdk-pixbuf-native docbook-utils-native \
>> - libgcrypt cairo gdk-pixbuf ${X11DEPENDS}"
>> + libgcrypt cairo gdk-pixbuf"
>> +
>> +PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11',
>> '', d)} \
>> + ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
>> +
>> +PACKAGECONFIG[x11] = "--with-x=yes
>> --with-gdktarget=x11,--with-x=no,${X11DEPENDS}"
>> +PACKAGECONFIG[directfb] = "--with-gdktarget=directfb,,directfb"
>> +
>>
> This change with the change prior (Split X11 Dependencies) should be 1
> commit, while below should be a second commit, you are still mixing
> different items together in 1 commit.
>
>> inherit autotools pkgconfig
>>
>> -PACKAGES += "libgail"
>> +PACKAGES += "libgail gtk-demo"
>>
>> FILES_${PN} = "${bindir}/gtk-update-icon-cache \
>> ${bindir}/gtk-query-immodules-2.0 \
>> @@ -41,6 +48,11 @@ FILES_${PN}-dbg += " \
>> ${libdir}/gtk-2.0/${LIBV}/engines/.debug/* \
>> ${libdir}/gtk-2.0/${LIBV}/printbackends/.debug/*"
>>
>> +FILES_gtk-demo = " \
>> + ${datadir}/gtk-2.0/demo/* \
>> + ${bindir}/gtk-demo \
>> + "
>> +
> This and the above PACKAGES += change should be in a separate commit
> from the PACKAGECONFIG and DEPENDS changes above.
>
> Sau!
Yes, it looks better.
Thanks for your suggestion.
I will push it again after fixing.
Thanks
Yan
>
>> FILES_libgail = " \
>> ${libdir}/gtk-2.0/modules/libgail.so \
>> ${libdir}/gtk-2.0/modules/libferret.so \
>
^ permalink raw reply [flat|nested] 13+ messages in thread
* [OE-core][PATCH 05/10] gtk: add demos to the configuation of gtk+
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (3 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 04/10] gtk.inc: add feature based on directfb Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 06/10] cairo: add directfb DISTRO_FEATURE Xiaofeng Yan
` (4 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Add demos for checking whether gtk+ run over directfb successfully or not.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-gnome/gtk+/gtk+_2.24.8.bb | 6 ++++--
1 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
index fb88979..9119d16 100644
--- a/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
+++ b/meta/recipes-gnome/gtk+/gtk+_2.24.8.bb
@@ -9,12 +9,14 @@ SRC_URI = "http://download.gnome.org/sources/gtk+/2.24/gtk+-${PV}.tar.bz2 \
file://run-iconcache.patch \
file://configure-nm.patch \
file://hardcoded_libtool.patch \
- file://no-demos.patch \
+ ${@base_contains('DISTRO_FEATURES', 'directfb', '','${NODEMOS_SRC_URI}', d)} \
file://cellrenderer-cairo.patch;striplevel=0 \
file://toggle-font.diff;striplevel=0 \
file://0001-bgo-584832-Duplicate-the-exec-string-returned-by-gtk.patch \
file://doc-fixes.patch \
"
+NODEMOS_SRC_URI = "file://no-demos.patch"
+
# TO MERGE
# file://entry-cairo.patch;striplevel=0
# file://filesystem-volumes.patch
@@ -27,7 +29,7 @@ SRC_URI = "http://download.gnome.org/sources/gtk+/2.24/gtk+-${PV}.tar.bz2 \
# file://combo-arrow-size.patch;striplevel=0
# file://configurefix.patch
-PR = "r0"
+PR = "r1"
SRC_URI[md5sum] = "0413187f7e596aef00ccd1b54776ff03"
SRC_URI[sha256sum] = "ac2325a65312922a6722a7c02a389f3f4072d79e13131485cc7b7226e2537043"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 06/10] cairo: add directfb DISTRO_FEATURE
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (4 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 05/10] gtk: add demos to the configuation of gtk+ Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 07/10] pango: " Xiaofeng Yan
` (3 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
cairo run over x11 at current OE-core. If cairo want to run over directfb, then \
the configuration related to x11 should be disabled and directfb should be enabled.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-graphics/cairo/cairo.inc | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-graphics/cairo/cairo.inc b/meta/recipes-graphics/cairo/cairo.inc
index 876acad..411ef58 100644
--- a/meta/recipes-graphics/cairo/cairo.inc
+++ b/meta/recipes-graphics/cairo/cairo.inc
@@ -11,13 +11,18 @@ BUGTRACKER = "http://bugs.freedesktop.org"
SECTION = "libs"
LICENSE = "MPL-1 & LGPLv2.1"
X11DEPENDS = "virtual/libx11 libsm libxrender"
-DEPENDS = "libpng fontconfig pixman glib-2.0 ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
+DEPENDS = "libpng fontconfig pixman glib-2.0"
+PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
+PACKAGECONFIG[x11] = "--with-x=yes,--without-x,${X11DEPENDS}"
+PACKAGECONFIG[directfb] = "--enable-directfb=yes,,directfb"
#check for TARGET_FPU=soft and inform configure of the result so it can disable some floating points
require cairo-fpu.inc
EXTRA_OECONF += "${@get_cairo_fpu_setting(bb, d)} ${@base_contains('DISTRO_FEATURES', 'x11', '--with-x', '--without-x', d)}"
+
inherit autotools pkgconfig
# We don't depend on binutils so we need to disable this
-export ac_cv_lib_bfd_bfd_openr=no
\ No newline at end of file
+export ac_cv_lib_bfd_bfd_openr=no
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 07/10] pango: add directfb DISTRO_FEATURE
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (5 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 06/10] cairo: add directfb DISTRO_FEATURE Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 08/10] directfb-examples: add package directfb-examples to OE-core Xiaofeng Yan
` (2 subsequent siblings)
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
pango run over x11 at current OE-core. If pango want to run over directfb, then \
the configuration related to x11 should be disabled and directfb should be enabled.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
meta/recipes-graphics/pango/pango.inc | 20 ++++++++++++++++----
1 files changed, 16 insertions(+), 4 deletions(-)
diff --git a/meta/recipes-graphics/pango/pango.inc b/meta/recipes-graphics/pango/pango.inc
index 6d94e02..4df6850 100644
--- a/meta/recipes-graphics/pango/pango.inc
+++ b/meta/recipes-graphics/pango/pango.inc
@@ -10,13 +10,24 @@ SECTION = "libs"
LICENSE = "LGPL"
X11DEPENDS = "virtual/libx11 libxft"
-DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo ${@base_contains('DISTRO_FEATURES', 'x11', '${X11DEPENDS}', '', d)}"
+DEPENDS = "glib-2.0 fontconfig freetype zlib virtual/libiconv gtk-doc-native cairo "
+
+PACKAGECONFIG ??= "${@base_contains('DISTRO_FEATURES', 'x11', 'x11', '', d)} \
+ ${@base_contains('DISTRO_FEATURES', 'directfb', 'directfb', '', d)}"
+PACKAGECONFIG[x11] = "--with-x,--without-x,${X11DEPENDS}"
+PACKAGECONFIG[directfb] = ",,directfb"
+
PACKAGES_DYNAMIC = "pango-module-*"
RRECOMMENDS_${PN} = "${@base_contains('DISTRO_FEATURES', 'x11', 'pango-module-basic-x', '', d)} pango-module-basic-fc"
inherit gnome
+# Create a pango-modules package
+ALLOW_EMPTY_${BPN}-modules = "1"
+PACKAGES += "${BPN}-modules"
+RRECOMMENDS_${BPN}-modules = "${@" ".join([p for p in d.getVar('PACKAGES', True).split() if p.find("pango-module") != -1])}"
+
EXTRA_AUTORECONF = ""
@@ -25,17 +36,18 @@ FULL_OPTIMIZATION_arm = "-O2"
EXTRA_OECONF = "--disable-glibtest \
--enable-explicit-deps=no \
- --disable-debug \
- ${@base_contains('DISTRO_FEATURES', 'x11', '--with-x', '--without-x', d)}"
+ --disable-debug"
LEAD_SONAME = "libpango-1.0*"
LIBV = "1.6.0"
+# No "etc" in "${D}" except for "usr", So add "/etc/pango" in the following function. \
+# Because "prologue + 'pango-querymodules > /etc/pango/pango.modules'" use this
postinst_prologue() {
if [ "x$D" != "x" ]; then
exit 1
fi
-
+ [ ! -d "/etc/pango" ] && mkdir -p /etc/pango/
}
python populate_packages_prepend () {
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 08/10] directfb-examples: add package directfb-examples to OE-core
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (6 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 07/10] pango: " Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 09/10] task-core-gtk-directfb.bb: Add task list to run gtk over directfb Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 10/10] core-image-gtk-directfb.bb: add an image for " Xiaofeng Yan
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Add this package for checking whether directfb run rightly or not.
It also is an useful tool to test directfb.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
.../directfb/directfb-examples_1.2.0.bb | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-graphics/directfb/directfb-examples_1.2.0.bb
diff --git a/meta/recipes-graphics/directfb/directfb-examples_1.2.0.bb b/meta/recipes-graphics/directfb/directfb-examples_1.2.0.bb
new file mode 100644
index 0000000..215426e
--- /dev/null
+++ b/meta/recipes-graphics/directfb/directfb-examples_1.2.0.bb
@@ -0,0 +1,20 @@
+DESCRIPTION = "The DirectFB-examples package contains a set of simple DirectFB \
+ applications that can be used to test and demonstrate various DirectFB \
+ features"
+DEPENDS = "directfb"
+SECTION = "libs"
+LICENSE = "MIT"
+PR = "r0"
+
+SRC_URI = " \
+ http://www.directfb.org/downloads/Extras/DirectFB-examples-${PV}.tar.gz \
+ "
+
+LIC_FILES_CHKSUM = "file://COPYING;md5=ecf6fd2b19915afc4da56043926ca18f"
+
+S = "${WORKDIR}/DirectFB-examples-${PV}"
+
+inherit autotools
+
+SRC_URI[md5sum] = "ce018f681b469a1d72ffc32650304b98"
+SRC_URI[sha256sum] = "830a1bd6775d8680523596a88a72fd8e4c6a74bf886d3e169b06d234a5cf7e3e"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 09/10] task-core-gtk-directfb.bb: Add task list to run gtk over directfb
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (7 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 08/10] directfb-examples: add package directfb-examples to OE-core Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
2011-12-06 6:58 ` [OE-core][PATCH 10/10] core-image-gtk-directfb.bb: add an image for " Xiaofeng Yan
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
Add task-core-gtk-directfb.bb to OE core for running gtk over directfb.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
.../tasks/task-core-gtk-directfb.bb | 26 ++++++++++++++++++++
1 files changed, 26 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-graphics/tasks/task-core-gtk-directfb.bb
diff --git a/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb b/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb
new file mode 100644
index 0000000..239e0c1
--- /dev/null
+++ b/meta/recipes-graphics/tasks/task-core-gtk-directfb.bb
@@ -0,0 +1,26 @@
+DESCRIPTION = "gkt+ over directfb without x11"
+PR = "r0"
+LICENSE = "MIT"
+
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
+ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+
+inherit task
+
+TOUCH = ' ${@base_contains("MACHINE_FEATURES", "touchscreen", "tslib tslib-calibrate tslib-tests", "",d)}'
+
+PACKAGES += " \
+ ${PN}-base \
+"
+
+RDEPENDS_${PN}-base = " \
+ directfb \
+ directfb-examples \
+ pango \
+ pango-modules \
+ fontconfig \
+ gtk+ \
+ gtk-demo \
+ dropbear \
+ ${TOUCH} \
+"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread* [OE-core][PATCH 10/10] core-image-gtk-directfb.bb: add an image for gtk over directfb
2011-12-06 6:58 [OE-core][PATCH 00/10] gtk+-directfb: The patches to run gtk over directfb [YOCTO #1674] Xiaofeng Yan
` (8 preceding siblings ...)
2011-12-06 6:58 ` [OE-core][PATCH 09/10] task-core-gtk-directfb.bb: Add task list to run gtk over directfb Xiaofeng Yan
@ 2011-12-06 6:58 ` Xiaofeng Yan
9 siblings, 0 replies; 13+ messages in thread
From: Xiaofeng Yan @ 2011-12-06 6:58 UTC (permalink / raw)
To: openembedded-devel
From: Xiaofeng Yan <xiaofeng.yan@windriver.com>
This file can make an image to run gtk over directfb.
[YOCTO #1674]
Signed-off-by: Xiaofeng Yan <xiaofeng.yan@windriver.com>
---
.../images/core-image-gtk-directfb.bb | 21 ++++++++++++++++++++
1 files changed, 21 insertions(+), 0 deletions(-)
create mode 100644 meta/recipes-graphics/images/core-image-gtk-directfb.bb
diff --git a/meta/recipes-graphics/images/core-image-gtk-directfb.bb b/meta/recipes-graphics/images/core-image-gtk-directfb.bb
new file mode 100644
index 0000000..b0ae469
--- /dev/null
+++ b/meta/recipes-graphics/images/core-image-gtk-directfb.bb
@@ -0,0 +1,21 @@
+LICENSE = "MIT"
+PR="r0"
+
+LIC_FILES_CHKSUM = "file://${COREBASE}/LICENSE;md5=3f40d7994397109285ec7b81fdeb3b58 \
+ file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
+
+
+DEPENDS += "task-core-gtk-directfb"
+
+RDEPENDS_${PN} += " \
+ task-core-gtk-directfb-base \
+ "
+
+inherit core-image
+
+IMAGE_INSTALL += "\
+ ${POKY_BASE_INSTALL} \
+ task-core-basic \
+ module-init-tools \
+ task-core-gtk-directfb-base \
+"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 13+ messages in thread