diff options
author | Armin Kuster <akuster808@gmail.com> | 2015-04-04 12:58:11 -0700 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2015-05-11 10:28:54 +0200 |
commit | 5dd01c5175f518658d8ee5627ede4f593111b872 (patch) | |
tree | 17cabc1fe63bbc4facd6fe30a8ff755d1d4dadd7 /meta-oe/recipes-extended | |
parent | ac1cc7a52ab82bb849af63d5a1a6a027a079548f (diff) | |
download | meta-openembedded-5dd01c5175f518658d8ee5627ede4f593111b872.tar.gz |
libgxim: fix world build issues
ERROR: Nothing PROVIDES 'ruby-native' (but /home/akuster/oss/clean/meta-openembedded/meta-oe/recipes-extended/libgxim/libgxim_0.5.0.bb DEPENDS on or otherwise requires it). Close matches:
db-native
bc-native
byacc-native
ERROR: Required build target 'libgxim' has no buildable providers.
Missing or unbuildable dependency chain was: ['libgxim', 'ruby-native']
move libgxim from meta-oe to meta-ruby, it really belongs in meta-gir but it is un-maintained.
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-oe/recipes-extended')
-rw-r--r-- | meta-oe/recipes-extended/libgxim/libgxim/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch | 21 | ||||
-rw-r--r-- | meta-oe/recipes-extended/libgxim/libgxim_0.5.0.bb | 25 |
2 files changed, 0 insertions, 46 deletions
diff --git a/meta-oe/recipes-extended/libgxim/libgxim/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch b/meta-oe/recipes-extended/libgxim/libgxim/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch deleted file mode 100644 index 3d293b473..000000000 --- a/meta-oe/recipes-extended/libgxim/libgxim/multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch +++ /dev/null | |||
@@ -1,21 +0,0 @@ | |||
1 | multi-line ACLOCAL_AMFLAGS isn't supported by autoreconf. | ||
2 | It will cause configure error as follow. | ||
3 | |||
4 | aclocal: error: non-option arguments are not accepted: '\'. | ||
5 | |||
6 | Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> | ||
7 | |||
8 | diff -Nurp libgxim-0.5.0.orig/Makefile.am libgxim-0.5.0/Makefile.am | ||
9 | --- libgxim-0.5.0.orig/Makefile.am 2012-12-13 15:48:09.000000000 +0800 | ||
10 | +++ libgxim-0.5.0/Makefile.am 2014-12-19 11:05:50.727209821 +0800 | ||
11 | @@ -2,9 +2,7 @@ NULL = | ||
12 | AUTOMAKE_OPTIONS = dist-bzip2 | ||
13 | SUBDIRS = libgxim m4macros po tests docs | ||
14 | |||
15 | -ACLOCAL_AMFLAGS = \ | ||
16 | - -I m4macros \ | ||
17 | - $(NULL) | ||
18 | +ACLOCAL_AMFLAGS = -I m4macros $(NULL) | ||
19 | |||
20 | CONFIGURE_DEPENDENCIES = \ | ||
21 | requires \ | ||
diff --git a/meta-oe/recipes-extended/libgxim/libgxim_0.5.0.bb b/meta-oe/recipes-extended/libgxim/libgxim_0.5.0.bb deleted file mode 100644 index 0b4b743a8..000000000 --- a/meta-oe/recipes-extended/libgxim/libgxim_0.5.0.bb +++ /dev/null | |||
@@ -1,25 +0,0 @@ | |||
1 | SUMMARY = "GObject-based XIM protocol library" | ||
2 | DESCRIPTION = "libgxim is a X Input Method protocol library that is implemented by GObject.\ | ||
3 | this library helps you to implement XIM servers or client applications to\ | ||
4 | communicate through XIM protocol without using Xlib API directly, particularly\ | ||
5 | if your application uses GObject-based main loop.\ | ||
6 | \ | ||
7 | This package contains the shared library." | ||
8 | |||
9 | HOMEPAGE = "http://code.google.com/p/libgxim/" | ||
10 | SECTION = "System Environment/Libraries" | ||
11 | |||
12 | SRC_URI = "https://bitbucket.org/tagoh/libgxim/downloads/${BPN}-${PV}.tar.bz2 \ | ||
13 | file://multi-line-ACLOCAL_AMFLAGS-isnot-supported-by-autoreconf.patch" | ||
14 | |||
15 | SRC_URI[md5sum] = "4bb1fa63d00eb224439d413591c29a6a" | ||
16 | SRC_URI[sha256sum] = "75e20d1744139644f9951b78ea3910b162d3380302315cb4b3d0640f23694c79" | ||
17 | |||
18 | LICENSE = "LGPLv2+" | ||
19 | LIC_FILES_CHKSUM = "\ | ||
20 | file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" | ||
21 | |||
22 | EXTRA_OECONF = " --disable-static --disable-rebuilds" | ||
23 | DEPENDS += "gtk+ glib-2.0 ruby-native" | ||
24 | |||
25 | inherit autotools pkgconfig | ||