All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/4] at-spi2-core: add intltool-native dependency
@ 2013-08-14 11:13 Martin Jansa
  2013-08-14 11:13 ` [PATCH 2/4] gst-plutins-gl: add dependency on glew Martin Jansa
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Martin Jansa @ 2013-08-14 11:13 UTC (permalink / raw)
  To: openembedded-core

* configure fails without it
  at-spi2-core/2.8.0-r0/temp/run.do_configure.372: intltoolize: not found

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-support/atk/at-spi2-core_2.8.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-support/atk/at-spi2-core_2.8.0.bb b/meta/recipes-support/atk/at-spi2-core_2.8.0.bb
index 34cdcbb..8403d65 100644
--- a/meta/recipes-support/atk/at-spi2-core_2.8.0.bb
+++ b/meta/recipes-support/atk/at-spi2-core_2.8.0.bb
@@ -8,7 +8,7 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/${MAJ_VER}/${BPN}-${PV}.tar.xz"
 SRC_URI[md5sum] = "93b57d5d56d15d1222ddf2386e2f869f"
 SRC_URI[sha256sum] = "1861a30fc7f583d5a567a0ba547db67ce9bd294f0d1c9f7403c96a10a481c458"
 
-DEPENDS = "dbus glib-2.0 virtual/libx11 libxi libxtst"
+DEPENDS = "dbus glib-2.0 virtual/libx11 libxi libxtst intltool-native"
 
 inherit autotools gtk-doc
 
-- 
1.8.3.2



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

* [PATCH 2/4] gst-plutins-gl: add dependency on glew
  2013-08-14 11:13 [PATCH 1/4] at-spi2-core: add intltool-native dependency Martin Jansa
@ 2013-08-14 11:13 ` Martin Jansa
  2013-08-14 11:18   ` [PATCHv2] gst-plugins-gl: " Martin Jansa
  2013-08-14 11:13 ` [PATCH 3/4] xeyes: add dependency on libxrender Martin Jansa
  2013-08-14 11:13 ` [PATCH 4/4] xrestop: add dependency on ncurses Martin Jansa
  2 siblings, 1 reply; 5+ messages in thread
From: Martin Jansa @ 2013-08-14 11:13 UTC (permalink / raw)
  To: openembedded-core

* fails without:
  | ./gstglshader.h:30:21: fatal error: GL/glew.h: No such file or directory

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
index 213e799..4474e1e 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "48340b6a4b8abce16344a7bc33e74a94fdcce4f57ef6342cdf2f941c42
 
 SRC_URI += " file://0001-conditional-gl-framebuffer-undefined-use.patch"
 
-DEPENDS += "gst-plugins-base virtual/libgles2 virtual/egl jpeg libpng"
+DEPENDS += "gst-plugins-base virtual/libgles2 virtual/egl jpeg libpng glew"
 
 inherit gettext gconf
 
-- 
1.8.3.2



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

* [PATCH 3/4] xeyes: add dependency on libxrender
  2013-08-14 11:13 [PATCH 1/4] at-spi2-core: add intltool-native dependency Martin Jansa
  2013-08-14 11:13 ` [PATCH 2/4] gst-plutins-gl: add dependency on glew Martin Jansa
@ 2013-08-14 11:13 ` Martin Jansa
  2013-08-14 11:13 ` [PATCH 4/4] xrestop: add dependency on ncurses Martin Jansa
  2 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2013-08-14 11:13 UTC (permalink / raw)
  To: openembedded-core

* fails without:
  | configure:10604: error: Package requirements (xrender >= 0.4) were not met:
  | No package 'xrender' found

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb b/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
index 7b68e6c..96ea030 100644
--- a/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
+++ b/meta/recipes-graphics/xorg-app/xeyes_1.1.1.bb
@@ -11,4 +11,4 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=3ea51b365051ac32d1813a7dbaa4bfc6"
 SRC_URI[md5sum] = "a3035dcecdbdb89e864177c080924981"
 SRC_URI[sha256sum] = "975e98680cd59e1f9439016386609546ed08c284d0f05a95276f96aca6e8a521"
 
-DEPENDS += " virtual/libx11 libxau libxt libxext libxmu"
+DEPENDS += " virtual/libx11 libxau libxt libxext libxmu libxrender"
-- 
1.8.3.2



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

* [PATCH 4/4] xrestop: add dependency on ncurses
  2013-08-14 11:13 [PATCH 1/4] at-spi2-core: add intltool-native dependency Martin Jansa
  2013-08-14 11:13 ` [PATCH 2/4] gst-plutins-gl: add dependency on glew Martin Jansa
  2013-08-14 11:13 ` [PATCH 3/4] xeyes: add dependency on libxrender Martin Jansa
@ 2013-08-14 11:13 ` Martin Jansa
  2 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2013-08-14 11:13 UTC (permalink / raw)
  To: openembedded-core

* fails without it
  | xrestop.c:50:20: fatal error: curses.h: No such file or directory
  |  #include <curses.h>
  |                     ^
  | compilation terminated.

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-graphics/xrestop/xrestop_0.4.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-graphics/xrestop/xrestop_0.4.bb b/meta/recipes-graphics/xrestop/xrestop_0.4.bb
index 13a5e61..9600d09 100644
--- a/meta/recipes-graphics/xrestop/xrestop_0.4.bb
+++ b/meta/recipes-graphics/xrestop/xrestop_0.4.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
 SECTION = "x11/utils"
 PR = "r3"
 
-DEPENDS = "libxres libxext virtual/libx11"
+DEPENDS = "libxres libxext virtual/libx11 ncurses"
 
 SRC_URI = "http://downloads.yoctoproject.org/releases/xrestop/xrestop-${PV}.tar.gz"
 
-- 
1.8.3.2



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

* [PATCHv2] gst-plugins-gl: add dependency on glew
  2013-08-14 11:13 ` [PATCH 2/4] gst-plutins-gl: add dependency on glew Martin Jansa
@ 2013-08-14 11:18   ` Martin Jansa
  0 siblings, 0 replies; 5+ messages in thread
From: Martin Jansa @ 2013-08-14 11:18 UTC (permalink / raw)
  To: openembedded-core

* fails without:
  | ./gstglshader.h:30:21: fatal error: GL/glew.h: No such file or directory

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
---
 meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb b/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
index 213e799..4474e1e 100644
--- a/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
+++ b/meta/recipes-multimedia/gstreamer/gst-plugins-gl_0.10.3.bb
@@ -8,7 +8,7 @@ SRC_URI[sha256sum] = "48340b6a4b8abce16344a7bc33e74a94fdcce4f57ef6342cdf2f941c42
 
 SRC_URI += " file://0001-conditional-gl-framebuffer-undefined-use.patch"
 
-DEPENDS += "gst-plugins-base virtual/libgles2 virtual/egl jpeg libpng"
+DEPENDS += "gst-plugins-base virtual/libgles2 virtual/egl jpeg libpng glew"
 
 inherit gettext gconf
 
-- 
1.8.3.2



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

end of thread, other threads:[~2013-08-14 11:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-14 11:13 [PATCH 1/4] at-spi2-core: add intltool-native dependency Martin Jansa
2013-08-14 11:13 ` [PATCH 2/4] gst-plutins-gl: add dependency on glew Martin Jansa
2013-08-14 11:18   ` [PATCHv2] gst-plugins-gl: " Martin Jansa
2013-08-14 11:13 ` [PATCH 3/4] xeyes: add dependency on libxrender Martin Jansa
2013-08-14 11:13 ` [PATCH 4/4] xrestop: add dependency on ncurses Martin Jansa

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.