* [PATCH 1/2] gnome-icon-theme: fix icon mapping
2012-10-16 13:28 [PATCH 0/2] gnome-icon-them bugfixes Andreas Müller
@ 2012-10-16 13:28 ` Andreas Müller
2012-10-16 13:28 ` [PATCH 2/2] gnome-icon-theme: remove unused configure variable Andreas Müller
` (2 subsequent siblings)
3 siblings, 0 replies; 6+ messages in thread
From: Andreas Müller @ 2012-10-16 13:28 UTC (permalink / raw)
To: openembedded-core
Multiple errors in log.do_install as:
Can't locate XML/Simple.pm in @INC (@INC contains: /usr/local/lib64/perl5 /usr/local/share/perl5 /usr/lib64/perl5/vendor_perl /usr/share/perl5/vendor_perl /usr/lib64/perl5 /usr/share/perl5 .) at /home/andreas/tmp/oe-core-eglibc/sysroots/x86_64-linux/usr/lib/../libexec/icon-name-mapping line 12.
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
index e4b61fd..d322686 100644
--- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
+++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
@@ -9,7 +9,7 @@ SECTION = "x11/gnome"
DEPENDS = "icon-naming-utils-native glib-2.0 intltool-native"
RDEPENDS_${PN} = "hicolor-icon-theme"
RRECOMMENDS_${PN} = "librsvg-gtk"
-PR = "r3"
+PR = "r4"
FILES_${PN} += "${datadir}/*"
@@ -21,4 +21,4 @@ SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a
EXTRA_OECONF = "--disable-hicolor-check --with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping"
-inherit autotools
+inherit autotools perlnative
--
1.7.6.5
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH 2/2] gnome-icon-theme: remove unused configure variable
2012-10-16 13:28 [PATCH 0/2] gnome-icon-them bugfixes Andreas Müller
2012-10-16 13:28 ` [PATCH 1/2] gnome-icon-theme: fix icon mapping Andreas Müller
@ 2012-10-16 13:28 ` Andreas Müller
2012-10-16 13:48 ` [PATCH 0/2] gnome-icon-them bugfixes Burton, Ross
2012-10-18 23:13 ` Saul Wold
3 siblings, 0 replies; 6+ messages in thread
From: Andreas Müller @ 2012-10-16 13:28 UTC (permalink / raw)
To: openembedded-core
configure: WARNING: unrecognized options: --disable-silent-rules, --with-libtool-sysroot, --disable-hicolor-check
Signed-off-by: Andreas Müller <schnitzeltony@googlemail.com>
---
.../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
index d322686..22e0c74 100644
--- a/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
+++ b/meta/recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb
@@ -19,6 +19,6 @@ SRC_URI = "${GNOME_MIRROR}/${BPN}/2.31/${BPN}-${PV}.tar.bz2 \
SRC_URI[md5sum] = "8e727703343d4c18c73c79dd2009f8ed"
SRC_URI[sha256sum] = "ea7e05b77ead159379392b3b275ca0c9cbacd7d936014e447cc7c5e27a767982"
-EXTRA_OECONF = "--disable-hicolor-check --with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping"
+EXTRA_OECONF = "--with-iconmap=${STAGING_LIBDIR_NATIVE}/../libexec/icon-name-mapping"
inherit autotools perlnative
--
1.7.6.5
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH 0/2] gnome-icon-them bugfixes
2012-10-16 13:28 [PATCH 0/2] gnome-icon-them bugfixes Andreas Müller
2012-10-16 13:28 ` [PATCH 1/2] gnome-icon-theme: fix icon mapping Andreas Müller
2012-10-16 13:28 ` [PATCH 2/2] gnome-icon-theme: remove unused configure variable Andreas Müller
@ 2012-10-16 13:48 ` Burton, Ross
2012-10-18 23:13 ` Saul Wold
3 siblings, 0 replies; 6+ messages in thread
From: Burton, Ross @ 2012-10-16 13:48 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-core
On 16 October 2012 14:28, Andreas Müller <schnitzeltony@googlemail.com> wrote:
> It caused me a lot headache to load gtk-stock-icons...
>
> Andreas Müller (2):
> gnome-icon-theme: fix icon mapping
> gnome-icon-theme: remove unused configure variable
Ack.
Thanks,
Ross
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 0/2] gnome-icon-them bugfixes
2012-10-16 13:28 [PATCH 0/2] gnome-icon-them bugfixes Andreas Müller
` (2 preceding siblings ...)
2012-10-16 13:48 ` [PATCH 0/2] gnome-icon-them bugfixes Burton, Ross
@ 2012-10-18 23:13 ` Saul Wold
2012-10-19 1:15 ` Andreas Müller
3 siblings, 1 reply; 6+ messages in thread
From: Saul Wold @ 2012-10-18 23:13 UTC (permalink / raw)
To: Andreas Müller; +Cc: openembedded-core
On 10/16/2012 06:28 AM, Andreas Müller wrote:
> It caused me a lot headache to load gtk-stock-icons...
>
> Andreas Müller (2):
> gnome-icon-theme: fix icon mapping
> gnome-icon-theme: remove unused configure variable
>
> .../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
Andreas,
I am having some trouble with the patches include, I think thunderbird
is trying to encode them in non-ascii, can you resend or point me at a
rebased branch. I just made some changes in this also.
Also, does sato-icon-theme need the same changes?
Thanks
Sau!
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 0/2] gnome-icon-them bugfixes
2012-10-18 23:13 ` Saul Wold
@ 2012-10-19 1:15 ` Andreas Müller
0 siblings, 0 replies; 6+ messages in thread
From: Andreas Müller @ 2012-10-19 1:15 UTC (permalink / raw)
To: Saul Wold; +Cc: openembedded-core
On Fri, Oct 19, 2012 at 1:13 AM, Saul Wold <sgw@linux.intel.com> wrote:
> On 10/16/2012 06:28 AM, Andreas Müller wrote:
>>
>> It caused me a lot headache to load gtk-stock-icons...
>>
>> Andreas Müller (2):
>> gnome-icon-theme: fix icon mapping
>> gnome-icon-theme: remove unused configure variable
>>
>> .../recipes-gnome/gnome/gnome-icon-theme_2.31.0.bb | 6 +++---
>> 1 files changed, 3 insertions(+), 3 deletions(-)
>>
> Andreas,
>
> I am having some trouble with the patches include, I think thunderbird is
> trying to encode them in non-ascii, can you resend or point me at a rebased
> branch. I just made some changes in this also.
>
> Also, does sato-icon-theme need the same changes?
>
> Thanks
> Sau!
Maybe caused by ü in my family name - need to change that :). Will
check for sato-icon theme and send a pull request next week.
Andreas
^ permalink raw reply [flat|nested] 6+ messages in thread