All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] fix for emenlow lsb bug 1395
@ 2011-08-28 11:10 Yu Ke
  2011-08-28 11:10 ` [PATCH 1/1] emenlow xpsb-glx: add package libglu to fix lsb image build warning Yu Ke
  0 siblings, 1 reply; 3+ messages in thread
From: Yu Ke @ 2011-08-28 11:10 UTC (permalink / raw
  To: tom.zanussi, yocto

this patch fix the bug 1395 http://bugzilla.yoctoproject.org/show_bug.cgi?id=1395
the root cause is that: lsb image rdepends on libglu, and xpsb does not provide it.
so mesa-dri will be built for libglu. then there will be warning message because
both mesa-dri and xpsb will provide virtual/libgl, and cause conflict.

to fix it, xpsb should also provide split package libglu.

Signed-off-by: Yu Ke <ke.yu@intel.com>

The following changes since commit dc00302411d9384deb0c61b34240aa43f108a736:
  Tom Zanussi (1):
        meta-intel: update meta-emenlow kernel SRCREVs

are available in the git repository at:

  git://git.pokylinux.org/poky-contrib kyu3/bug1395-libglu
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=kyu3/bug1395-libglu

Yu Ke (1):
  emenlow xpsb-glx: add package libglu to fix lsb image build warning

 .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb     |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)



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

* [PATCH 1/1] emenlow xpsb-glx: add package libglu to fix lsb image build warning
  2011-08-28 11:10 [PATCH 0/1] fix for emenlow lsb bug 1395 Yu Ke
@ 2011-08-28 11:10 ` Yu Ke
  2011-08-28 13:09   ` Tom Zanussi
  0 siblings, 1 reply; 3+ messages in thread
From: Yu Ke @ 2011-08-28 11:10 UTC (permalink / raw
  To: tom.zanussi, yocto

lsb image requires libglu, so split the xpsb-glx to provide the libglu
package. mesa-dri also do in the same way. so this patch make xpsb-glx
in sync with mesa-dri.

Fix [YOCTO #1395]

Signed-off-by: Yu Ke <ke.yu@intel.com>
---
 .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb     |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
index 0d675c6..8fb25d6 100644
--- a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
+++ b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
@@ -4,7 +4,7 @@ DESCRIPTION = "X11 drivers for Poulsbo (psb) 3D acceleration"
 # not Intel proprietary, but it has no obvious license attached to it.
 LICENSE = "Intel-binary-only"
 LIC_FILES_CHKSUM = "file://${WORKDIR}/${PN}-${PV}/COPYING;md5=02c597a2f082b4581596065bb5a521a8"
-PR = "r7"
+PR = "r8"
 
 inherit autotools
 
@@ -41,6 +41,11 @@ DEPENDS += "libxfixes libxdamage libdrm-poulsbo libxxf86vm dri2proto libxmu libx
 FILES_${PN} = "${libdir}/* ${libdir}/xorg/modules/dri/* \
 	    ${libdir}/xorg/modules/drivers/*"
 
+PACKAGES =+ "libglu libglu-dev"
+
+FILES_libglu = "${libdir}/libGLU.so.*"
+FILES_libglu-dev = "${libdir}/libGLU.* ${includedir}/GL/glu*.h"
+
 # Multiple virtual/gl providers being built breaks staging
 EXCLUDE_FROM_WORLD = "1"
 
-- 
1.7.0.4



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

* Re: [PATCH 1/1] emenlow xpsb-glx: add package libglu to fix lsb image build warning
  2011-08-28 11:10 ` [PATCH 1/1] emenlow xpsb-glx: add package libglu to fix lsb image build warning Yu Ke
@ 2011-08-28 13:09   ` Tom Zanussi
  0 siblings, 0 replies; 3+ messages in thread
From: Tom Zanussi @ 2011-08-28 13:09 UTC (permalink / raw
  To: Yu Ke; +Cc: yocto@yoctoproject.org

On Sun, 2011-08-28 at 04:10 -0700, Yu Ke wrote:
> lsb image requires libglu, so split the xpsb-glx to provide the libglu
> package. mesa-dri also do in the same way. so this patch make xpsb-glx
> in sync with mesa-dri.
> 
> Fix [YOCTO #1395]
> 

Thanks, Yu Ke.  Pulled into meta-intel/master.

Acked-by: Tom Zanussi <tom.zanussi@intel.com>

> Signed-off-by: Yu Ke <ke.yu@intel.com>
> ---
>  .../recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb     |    7 ++++++-
>  1 files changed, 6 insertions(+), 1 deletions(-)
> 
> diff --git a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
> index 0d675c6..8fb25d6 100644
> --- a/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
> +++ b/meta-emenlow/recipes-graphics/xpsb-glx/xpsb-glx_0.18.bb
> @@ -4,7 +4,7 @@ DESCRIPTION = "X11 drivers for Poulsbo (psb) 3D acceleration"
>  # not Intel proprietary, but it has no obvious license attached to it.
>  LICENSE = "Intel-binary-only"
>  LIC_FILES_CHKSUM = "file://${WORKDIR}/${PN}-${PV}/COPYING;md5=02c597a2f082b4581596065bb5a521a8"
> -PR = "r7"
> +PR = "r8"
>  
>  inherit autotools
>  
> @@ -41,6 +41,11 @@ DEPENDS += "libxfixes libxdamage libdrm-poulsbo libxxf86vm dri2proto libxmu libx
>  FILES_${PN} = "${libdir}/* ${libdir}/xorg/modules/dri/* \
>  	    ${libdir}/xorg/modules/drivers/*"
>  
> +PACKAGES =+ "libglu libglu-dev"
> +
> +FILES_libglu = "${libdir}/libGLU.so.*"
> +FILES_libglu-dev = "${libdir}/libGLU.* ${includedir}/GL/glu*.h"
> +
>  # Multiple virtual/gl providers being built breaks staging
>  EXCLUDE_FROM_WORLD = "1"
>  




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

end of thread, other threads:[~2011-08-28 13:09 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-28 11:10 [PATCH 0/1] fix for emenlow lsb bug 1395 Yu Ke
2011-08-28 11:10 ` [PATCH 1/1] emenlow xpsb-glx: add package libglu to fix lsb image build warning Yu Ke
2011-08-28 13:09   ` Tom Zanussi

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.