All of lore.kernel.org
 help / color / mirror / Atom feed
* [STABLE][PATCH 00/37] Fix install -s problems
@ 2009-05-13  9:38 koen.kooi
  2009-05-13  9:38 ` [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file) koen.kooi
                   ` (37 more replies)
  0 siblings, 38 replies; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

Hi,

In preparation to merging the coreutils-native improvements to stable/2009 we need to fix the associated problems with it. This series cherry-picks 37 patches from .dev to do so.




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

* [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file)
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 13:56   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging koen.kooi
                   ` (36 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/ipaq-sleep/files/install-fix.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/ipaq-sleep/files/install-fix.patch b/recipes/ipaq-sleep/files/install-fix.patch
index 59eb17b..68e57af 100644
--- a/recipes/ipaq-sleep/files/install-fix.patch
+++ b/recipes/ipaq-sleep/files/install-fix.patch
@@ -5,7 +5,7 @@
  
  install-program: all
 -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	mkdir -p $(DESTDIR)/etc/init.d
  	install $(PACKAGE).init $(DESTDIR)/etc/init.d/$(PACKAGE)
  	install $(PACKAGE).conf $(DESTDIR)/etc/$(PACKAGE).conf
-- 
1.6.1




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

* [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
  2009-05-13  9:38 ` [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file) koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 13:56   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 03/37] gpe-othello: " koen.kooi
                   ` (35 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-question/files/makefile-fix.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-question/files/makefile-fix.patch b/recipes/gpe-question/files/makefile-fix.patch
index a8d1ead..f501e12 100644
--- a/recipes/gpe-question/files/makefile-fix.patch
+++ b/recipes/gpe-question/files/makefile-fix.patch
@@ -5,7 +5,7 @@
  
  install-program: all
 -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  
  clean:
  	rm -f $(PACKAGE).o $(PACKAGE) $(DEPS)
-- 
1.6.1




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

* [STABLE][PATCH 03/37] gpe-othello: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
  2009-05-13  9:38 ` [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file) koen.kooi
  2009-05-13  9:38 ` [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 13:57   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 04/37] gpe-nmf: " koen.kooi
                   ` (34 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../gpe-othello-0.2-1/fix-makefiles.patch          |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch b/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
index 1c43724..def1915 100644
--- a/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
+++ b/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
@@ -278,7 +278,7 @@ diff -urNd ../gpe-othello-0.2-1-r0/gpe-othello-0.2-1/Makefile gpe-othello-0.2-1/
  install-program: all 
 -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
 -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
  	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
  	install -d $(DESTDIR)$(PREFIX)/share/applications
-- 
1.6.1




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

* [STABLE][PATCH 04/37] gpe-nmf: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (2 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 03/37] gpe-othello: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:03   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 05/37] gpe-lights: " koen.kooi
                   ` (33 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
index 42b5c36..b6dc568 100644
--- a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
+++ b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
@@ -8,8 +8,8 @@ diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/backend/Makefile gpe-nmf-0.17/backend
 -install_program: all
 +install-program: all
  	mkdir -p $(DESTDIR)$(PREFIX)/lib
- 	install -s $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND)
- 	for i in $(CODECS); do install -s $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done
+ 	install $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND)
+ 	for i in $(CODECS); do install $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done
 diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile gpe-nmf-0.17/Makefile
 --- ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile	2004-08-03 03:31:46.000000000 +0100
 +++ gpe-nmf-0.17/Makefile	2004-08-03 12:37:33.000000000 +0100
-- 
1.6.1




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

* [STABLE][PATCH 05/37] gpe-lights: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (3 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 04/37] gpe-nmf: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:04   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 06/37] gpe-go: " koen.kooi
                   ` (32 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../gpe-lights/gpe-lights-0.12/fix-makefiles.patch |    2 +-
 .../gpe-lights/gpe-lights-0.13/fix-makefiles.patch |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch b/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
index d2fdd54..4ec5b3a 100644
--- a/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
+++ b/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
@@ -278,7 +278,7 @@ diff -urNd ../gpe-lights-0.12-r0/gpe-lights-0.12/Makefile gpe-lights-0.12/Makefi
  install-program: all 
 -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
 -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
  	install -d $(DESTDIR)$(PREFIX)/share/applications
  	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
diff --git a/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch b/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
index bb0ec19..3c4581e 100644
--- a/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
+++ b/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
@@ -278,7 +278,7 @@ diff -urNd ../gpe-lights-0.12-r0/gpe-lights-0.12/Makefile gpe-lights-0.12/Makefi
  install-program: all 
 -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
 -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
  	install -d $(DESTDIR)$(PREFIX)/share/applications
  	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
-- 
1.6.1




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

* [STABLE][PATCH 06/37] gpe-go: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (4 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 05/37] gpe-lights: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:05   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 07/37] gpe-soundbite: " koen.kooi
                   ` (31 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-go/gpe-go-0.05/fix-make.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-go/gpe-go-0.05/fix-make.patch b/recipes/gpe-go/gpe-go-0.05/fix-make.patch
index dab1c7f..996c51e 100644
--- a/recipes/gpe-go/gpe-go-0.05/fix-make.patch
+++ b/recipes/gpe-go/gpe-go-0.05/fix-make.patch
@@ -212,7 +212,7 @@ diff -urNd ../gpe-go-0.05-r0/gpe-go-0.05/Makefile gpe-go-0.05/Makefile
  install-program: $(PACKAGE).desktop all 
 -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
 -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
  	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
  	install -d $(DESTDIR)$(PREFIX)/share/applications
-- 
1.6.1




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

* [STABLE][PATCH 07/37] gpe-soundbite: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (5 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 06/37] gpe-go: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:05   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 08/37] gpe-calculator: " koen.kooi
                   ` (30 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-soundbite/files/makefile-fix.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-soundbite/files/makefile-fix.patch b/recipes/gpe-soundbite/files/makefile-fix.patch
index c2f14d1..69a82b3 100644
--- a/recipes/gpe-soundbite/files/makefile-fix.patch
+++ b/recipes/gpe-soundbite/files/makefile-fix.patch
@@ -5,7 +5,7 @@
  
  install-program: all $(PACKAGE)-play.desktop  $(PACKAGE)-record.desktop
 -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  	install -D $(PACKAGE)-play $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)-play
  	install -D $(PACKAGE)-record $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)-record
  	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
-- 
1.6.1




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

* [STABLE][PATCH 08/37] gpe-calculator: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (6 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 07/37] gpe-soundbite: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:06   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install koen.kooi
                   ` (29 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../gpe-calculator-0.2/fix_makefile.patch          |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch b/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
index b8c6d1a..8b4ebf7 100644
--- a/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
+++ b/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
@@ -41,7 +41,7 @@ diff -urNd ../gpe-calculator-0.2-r0/gpe-calculator-0.2/Makefile gpe-calculator-0
  	install -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications
 -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
 +	mkdir -p $(DESTDIR)$(PREFIX)/bin
-+	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
  
  clean:
  	rm -f $(PACKAGE) $(OBJS) $(DEPS)
-- 
1.6.1




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

* [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (7 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 08/37] gpe-calculator: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:06   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 10/37] gpe-confd: " koen.kooi
                   ` (28 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../libdisplaymigration/files/makefile-fix.patch   |   11 +++++++++++
 .../libdisplaymigration_0.28.bb                    |    2 ++
 .../libdisplaymigration_0.99.bb                    |    2 ++
 3 files changed, 15 insertions(+), 0 deletions(-)
 create mode 100644 recipes/libdisplaymigration/files/makefile-fix.patch

diff --git a/recipes/libdisplaymigration/files/makefile-fix.patch b/recipes/libdisplaymigration/files/makefile-fix.patch
new file mode 100644
index 0000000..5a79ab2
--- /dev/null
+++ b/recipes/libdisplaymigration/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile	2005-02-28 20:32:13.000000000 +0100
++++ libdisplaymigration-0.99/Makefile	2009-05-01 14:26:17.000000000 +0200
+@@ -36,7 +36,7 @@
+ 
+ install-program: $(SONAME)
+ 	install -d $(DESTDIR)$(PREFIX)/lib
+-	install -s $(SONAME) $(DESTDIR)$(PREFIX)/lib/$(SONAME)
++	install $(SONAME) $(DESTDIR)$(PREFIX)/lib/$(SONAME)
+ 
+ install-devel:
+ 	for i in $(HEADERS); do install -m 644 -D $$i $(DESTDIR)$(PREFIX)/include/$$i; done
diff --git a/recipes/libdisplaymigration/libdisplaymigration_0.28.bb b/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
index e92cf57..8f85dff 100644
--- a/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
+++ b/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
@@ -7,6 +7,8 @@ PR = "r1"
 
 inherit pkgconfig gpe
 
+SRC_URI += "file://makefile-fix.patch;patch=1"
+
 headers = "displaymigration.h auth.h crypt.h"
 
 do_install() {
diff --git a/recipes/libdisplaymigration/libdisplaymigration_0.99.bb b/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
index 0563ba3..033005d 100644
--- a/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
+++ b/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
@@ -7,6 +7,8 @@ PR = "r0"
 
 inherit pkgconfig gpe
 
+SRC_URI += "file://makefile-fix.patch;patch=1"
+
 headers = "displaymigration.h auth.h crypt.h"
 
 do_install() {
-- 
1.6.1




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

* [STABLE][PATCH 10/37] gpe-confd: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (8 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:07   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 11/37] xst: " koen.kooi
                   ` (27 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-confd/files/makefile-fix.patch |   11 +++++++++++
 recipes/gpe-confd/gpe-confd_0.16.bb        |    1 +
 2 files changed, 12 insertions(+), 0 deletions(-)
 create mode 100644 recipes/gpe-confd/files/makefile-fix.patch

diff --git a/recipes/gpe-confd/files/makefile-fix.patch b/recipes/gpe-confd/files/makefile-fix.patch
new file mode 100644
index 0000000..ac3483e
--- /dev/null
+++ b/recipes/gpe-confd/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2004-08-29 13:59:52.000000000 +0200
++++ gpe-confd-0.16/Makefile	2009-05-01 15:33:00.000000000 +0200
+@@ -32,7 +32,7 @@
+ 
+ install-program: $(PACKAGE)
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)/etc/X11/Xsession.d
+ 	install $(PACKAGE).xs $(DESTDIR)/etc/X11/Xsession.d/70gpe-confd
+ 
diff --git a/recipes/gpe-confd/gpe-confd_0.16.bb b/recipes/gpe-confd/gpe-confd_0.16.bb
index b9c3102..6b50107 100644
--- a/recipes/gpe-confd/gpe-confd_0.16.bb
+++ b/recipes/gpe-confd/gpe-confd_0.16.bb
@@ -6,3 +6,4 @@ DESCRIPTION = "GPE configuration daemon"
 LICENSE = "GPL"
 PR = "r1"
 
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 11/37] xst: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (9 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 10/37] gpe-confd: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:10   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 12/37] gpe-su: " koen.kooi
                   ` (26 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/xst/files/makefile-fix.patch |   11 +++++++++++
 recipes/xst/xst_0.15.bb              |    2 ++
 2 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/xst/files/makefile-fix.patch

diff --git a/recipes/xst/files/makefile-fix.patch b/recipes/xst/files/makefile-fix.patch
new file mode 100644
index 0000000..3af2d57
--- /dev/null
+++ b/recipes/xst/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2005-08-27 01:13:47.000000000 +0200
++++ xst-0.15/Makefile	2009-05-01 15:48:15.000000000 +0200
+@@ -32,7 +32,7 @@
+ 
+ install-program: $(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 
+ clean:
+ 	rm -f $(PACKAGE) $(OBJS) $(DEPS)
diff --git a/recipes/xst/xst_0.15.bb b/recipes/xst/xst_0.15.bb
index 76ab7af..6d6156e 100644
--- a/recipes/xst/xst_0.15.bb
+++ b/recipes/xst/xst_0.15.bb
@@ -5,3 +5,5 @@ SECTION = "gpe"
 DESCRIPTION = "GPE configuration utility"
 LICENSE = "GPL"
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 12/37] gpe-su: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (10 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 11/37] xst: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:12   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 13/37] minilite: " koen.kooi
                   ` (25 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-su/files/makefile-fix.patch |   11 +++++++++++
 recipes/gpe-su/gpe-su.inc               |    2 ++
 2 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/gpe-su/files/makefile-fix.patch

diff --git a/recipes/gpe-su/files/makefile-fix.patch b/recipes/gpe-su/files/makefile-fix.patch
new file mode 100644
index 0000000..cce98b1
--- /dev/null
+++ b/recipes/gpe-su/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2008-07-14 22:34:47.000000000 +0200
++++ gpe-su-0.20/Makefile	2009-05-01 16:02:11.000000000 +0200
+@@ -34,7 +34,7 @@
+ 
+ install-program: all $(PACKAGE).desktop
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -m 755 -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install -m 755 $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
+ 	install -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
diff --git a/recipes/gpe-su/gpe-su.inc b/recipes/gpe-su/gpe-su.inc
index 3daa0b9..287915e 100644
--- a/recipes/gpe-su/gpe-su.inc
+++ b/recipes/gpe-su/gpe-su.inc
@@ -6,3 +6,5 @@ DEPENDS = "libgpewidget virtual/libintl"
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
 inherit gpe pkgconfig
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 13/37] minilite: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (11 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 12/37] gpe-su: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:13   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 14/37] keylaunch: " koen.kooi
                   ` (24 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/minilite/files/makefile-fix.patch |   11 +++++++++++
 recipes/minilite/minilite_0.41.bb         |    2 ++
 recipes/minilite/minilite_0.43.bb         |    2 ++
 recipes/minilite/minilite_0.44.bb         |    2 ++
 recipes/minilite/minilite_0.47.bb         |    2 ++
 recipes/minilite/minilite_0.48.bb         |    2 ++
 recipes/minilite/minilite_0.49.bb         |    2 ++
 recipes/minilite/minilite_0.50.bb         |    2 ++
 8 files changed, 25 insertions(+), 0 deletions(-)
 create mode 100644 recipes/minilite/files/makefile-fix.patch

diff --git a/recipes/minilite/files/makefile-fix.patch b/recipes/minilite/files/makefile-fix.patch
new file mode 100644
index 0000000..1be6cea
--- /dev/null
+++ b/recipes/minilite/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2006-01-16 22:51:34.000000000 +0100
++++ minilite-050/Makefile	2009-05-01 16:36:32.000000000 +0200
+@@ -45,7 +45,7 @@
+ 
+ install-program: all
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	$(INSTALL) -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
+ 	$(INSTALL) -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications/$(PACKAGE).desktop
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps/
diff --git a/recipes/minilite/minilite_0.41.bb b/recipes/minilite/minilite_0.41.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.41.bb
+++ b/recipes/minilite/minilite_0.41.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.43.bb b/recipes/minilite/minilite_0.43.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.43.bb
+++ b/recipes/minilite/minilite_0.43.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.44.bb b/recipes/minilite/minilite_0.44.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.44.bb
+++ b/recipes/minilite/minilite_0.44.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.47.bb b/recipes/minilite/minilite_0.47.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.47.bb
+++ b/recipes/minilite/minilite_0.47.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.48.bb b/recipes/minilite/minilite_0.48.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.48.bb
+++ b/recipes/minilite/minilite_0.48.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.49.bb b/recipes/minilite/minilite_0.49.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.49.bb
+++ b/recipes/minilite/minilite_0.49.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
diff --git a/recipes/minilite/minilite_0.50.bb b/recipes/minilite/minilite_0.50.bb
index 0f5b126..997ae93 100644
--- a/recipes/minilite/minilite_0.50.bb
+++ b/recipes/minilite/minilite_0.50.bb
@@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
 
+SRC_URI += "file://makefile-fix.patch;patch=1" 
+
 export CVSBUILD="no"
-- 
1.6.1




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

* [STABLE][PATCH 14/37] keylaunch: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (12 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 13/37] minilite: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:13   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 15/37] gpe-taskmanager: " koen.kooi
                   ` (23 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/keylaunch/files/makefile-fix.patch |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/recipes/keylaunch/files/makefile-fix.patch b/recipes/keylaunch/files/makefile-fix.patch
index d9c57e0..0e53e4e 100644
--- a/recipes/keylaunch/files/makefile-fix.patch
+++ b/recipes/keylaunch/files/makefile-fix.patch
@@ -7,7 +7,7 @@
 -	install -sD $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
 -	install -D -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc
 +	install -d $(DESTDIR)$(PREFIX)/bin
-+	install -s $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
++	install $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
 +	install -d $(DESTDIR)/etc
 +	install -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc
  	install -d $(DESTDIR)/etc/X11/Xsession.d
-- 
1.6.1




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

* [STABLE][PATCH 15/37] gpe-taskmanager: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (13 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 14/37] keylaunch: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:14   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 16/37] teleport: " koen.kooi
                   ` (22 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-taskmanager/files/makefile-fix.patch |   11 +++++++++++
 recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb  |    2 ++
 recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb  |    2 ++
 recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb  |    2 ++
 recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb  |    1 +
 5 files changed, 18 insertions(+), 0 deletions(-)
 create mode 100644 recipes/gpe-taskmanager/files/makefile-fix.patch

diff --git a/recipes/gpe-taskmanager/files/makefile-fix.patch b/recipes/gpe-taskmanager/files/makefile-fix.patch
new file mode 100644
index 0000000..7b26bed
--- /dev/null
+++ b/recipes/gpe-taskmanager/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2006-04-10 13:41:32.000000000 +0200
++++ gpe-taskmanager-0.20/Makefile	2009-05-01 22:03:35.000000000 +0200
+@@ -32,7 +32,7 @@
+ 
+ install-program: all all-desktop
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
index 1f31a4d..6b03ad4 100644
--- a/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
+++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
@@ -7,3 +7,5 @@ SECTION = "gpe"
 DESCRIPTION = "GPE task manager"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
index 1f31a4d..6b03ad4 100644
--- a/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
+++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
@@ -7,3 +7,5 @@ SECTION = "gpe"
 DESCRIPTION = "GPE task manager"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
index 1f31a4d..6b03ad4 100644
--- a/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
+++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
@@ -7,3 +7,5 @@ SECTION = "gpe"
 DESCRIPTION = "GPE task manager"
 
 SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
index 7d0ff8e..e02afbf 100644
--- a/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
+++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
@@ -7,3 +7,4 @@ inherit gpe
 
 SRC_URI += "file://setlocale.patch;patch=1"
 
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 16/37] teleport: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (14 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 15/37] gpe-taskmanager: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:14   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 17/37] gpe-autostarter: " koen.kooi
                   ` (21 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/teleport/files/makefile-fix.patch |   13 +++++++++++++
 recipes/teleport/teleport_0.33.bb         |    2 ++
 recipes/teleport/teleport_0.34.bb         |    2 ++
 3 files changed, 17 insertions(+), 0 deletions(-)
 create mode 100644 recipes/teleport/files/makefile-fix.patch

diff --git a/recipes/teleport/files/makefile-fix.patch b/recipes/teleport/files/makefile-fix.patch
new file mode 100644
index 0000000..9dc232d
--- /dev/null
+++ b/recipes/teleport/files/makefile-fix.patch
@@ -0,0 +1,13 @@
+--- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
++++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
+@@ -37,8 +37,8 @@
+ 
+ install-program: all
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
+-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
++	install teleport $(DESTDIR)$(PREFIX)/bin/
++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/teleport/teleport_0.33.bb b/recipes/teleport/teleport_0.33.bb
index 8ebb780..918902e 100644
--- a/recipes/teleport/teleport_0.33.bb
+++ b/recipes/teleport/teleport_0.33.bb
@@ -10,3 +10,5 @@ PR = "r2"
 SRC_URI =+ "file://crypt.c \
 		file://fix-desktop.patch;patch=1 \
 		file://remove-tododb.patch;pnum=1;patch=1"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/teleport/teleport_0.34.bb b/recipes/teleport/teleport_0.34.bb
index ce982c9..3732254 100644
--- a/recipes/teleport/teleport_0.34.bb
+++ b/recipes/teleport/teleport_0.34.bb
@@ -3,3 +3,5 @@ LICENSE = "GPL"
 DESCRIPTION = "Teleport app"
 DEPENDS = "gtk+ libgpewidget libdisplaymigration libgcrypt sqlite"
 PRIORITY = "optional"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 17/37] gpe-autostarter: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (15 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 16/37] teleport: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:15   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 18/37] gpe-soundserver: " koen.kooi
                   ` (20 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-autostarter/files/makefile-fix.patch |   11 +++++++++++
 recipes/gpe-autostarter/gpe-autostarter_0.11.bb  |    4 +++-
 recipes/gpe-autostarter/gpe-autostarter_0.12.bb  |    4 +++-
 recipes/gpe-autostarter/gpe-autostarter_0.6.bb   |    2 ++
 recipes/gpe-autostarter/gpe-autostarter_0.7.bb   |    2 ++
 recipes/gpe-autostarter/gpe-autostarter_svn.bb   |    2 ++
 6 files changed, 23 insertions(+), 2 deletions(-)
 create mode 100644 recipes/gpe-autostarter/files/makefile-fix.patch

diff --git a/recipes/gpe-autostarter/files/makefile-fix.patch b/recipes/gpe-autostarter/files/makefile-fix.patch
new file mode 100644
index 0000000..97ee907
--- /dev/null
+++ b/recipes/gpe-autostarter/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2006-08-23 15:08:36.000000000 +0200
++++ gpe-autostarter-0.12/Makefile	2009-05-01 22:32:50.000000000 +0200
+@@ -28,7 +28,7 @@
+ 
+ install-program: all
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
+ 	install -d $(DESTDIR)/etc/X11/Xsession.d
+ 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/50$(PACKAGE)
+ 
diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.11.bb b/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
index b228b3d..26a9e97 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
@@ -5,4 +5,6 @@ LICENSE = "GPL"
 
 inherit gpe
 
-SRC_URI += " file://dbus-new-api.patch;patch=1"
+SRC_URI += "file://dbus-new-api.patch;patch=1 \
+	    file://makefile-fix.patch;patch=1"
+
diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.12.bb b/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
index c47f757..4c4293e 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
@@ -5,4 +5,6 @@ RDEPENDS = "hotplug-dbus"
 
 inherit gpe
 
-SRC_URI += "file://wireless.patch;patch=1"
+SRC_URI += "file://wireless.patch;patch=1 \
+	    file://makefile-fix.patch;patch=1"
+
diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.6.bb b/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
index ef7f255..0ba68b7 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
@@ -4,3 +4,5 @@ DEPENDS = "glib-2.0 dbus-glib hotplug-dbus"
 RDEPENDS = "hotplug-dbus"
 
 inherit gpe
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.7.bb b/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
index f92b5df..9e92740 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
@@ -4,3 +4,5 @@ DEPENDS = "glib-2.0 dbus-glib hotplug-dbus virtual/libx11"
 RDEPENDS = "hotplug-dbus"
 
 inherit gpe
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
diff --git a/recipes/gpe-autostarter/gpe-autostarter_svn.bb b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
index 2742952..8d275b5 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_svn.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
@@ -8,6 +8,8 @@ inherit gpe
 SRC_URI = "${GPE_SVN} \
            file://svn-build.patch;patch=1"
 
+SRC_URI += "file://makefile-fix.patch;patch=1"
+
 S = "${WORKDIR}/${PN}"
 
 export CVSBUILD="no"
-- 
1.6.1




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

* [STABLE][PATCH 18/37] gpe-soundserver: Makefile fix - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (16 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 17/37] gpe-autostarter: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:15   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles " koen.kooi
                   ` (19 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-soundserver/files/makefile-fix.patch |   13 +++++++++++++
 recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb |    3 ++-
 2 files changed, 15 insertions(+), 1 deletions(-)
 create mode 100644 recipes/gpe-soundserver/files/makefile-fix.patch

diff --git a/recipes/gpe-soundserver/files/makefile-fix.patch b/recipes/gpe-soundserver/files/makefile-fix.patch
new file mode 100644
index 0000000..c150886
--- /dev/null
+++ b/recipes/gpe-soundserver/files/makefile-fix.patch
@@ -0,0 +1,13 @@
+--- /tmp/Makefile.old	2004-08-18 16:28:08.000000000 +0200
++++ gpe-soundserver-0.4-1/Makefile	2009-05-01 22:44:27.000000000 +0200
+@@ -37,8 +37,8 @@
+ 
+ install-program: all
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+-	install -s wrapesd $(DESTDIR)$(PREFIX)/bin/wrapesd
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install wrapesd $(DESTDIR)$(PREFIX)/bin/wrapesd
+ 	install -d $(DESTDIR)/etc/X11/Xsession.d
+ 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/50sound-server
+ 
diff --git a/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb b/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
index e239f21..1ec4cf3 100644
--- a/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
+++ b/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
@@ -4,4 +4,5 @@ inherit gpe
 
 DEPENDS = "virtual/libx11 esound"
 
-SRC_URI += "file://makefile-breakage.patch;patch=1"
+SRC_URI += "file://makefile-breakage.patch;patch=1 \
+	    file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (17 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 18/37] gpe-soundserver: " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-13 14:15   ` Philip Balister
  2009-05-13  9:38 ` [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling) koen.kooi
                   ` (18 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-aerial/files/fix_makefile.patch |    2 +-
 recipes/gpe-aerial/gpe-aerial_0.2.11.bb     |    3 ++-
 recipes/gpe-aerial/gpe-aerial_0.2.12.bb     |    3 ++-
 recipes/gpe-aerial/gpe-aerial_0.2.13.bb     |    3 ++-
 4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/recipes/gpe-aerial/files/fix_makefile.patch b/recipes/gpe-aerial/files/fix_makefile.patch
index dec0099..bbb0840 100644
--- a/recipes/gpe-aerial/files/fix_makefile.patch
+++ b/recipes/gpe-aerial/files/fix_makefile.patch
@@ -15,7 +15,7 @@ diff -urNd ../gpe-aerial-0.2.11-r0/gpe-aerial-0.2.11/Makefile gpe-aerial-0.2.11/
  	mkdir -p $(DESTDIR)/$(PREFIX)/bin
 -	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
 -	$(STRIP) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
-+	$(INSTALL) -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
++	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
  	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps/
  	for i in $(PIXMAPS); do install -m 644 -D pixmaps/$$i $(DESTDIR)$(PREFIX)/share/pixmaps/$$i; done
  	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.11.bb b/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
index 543dc09..b61331f 100644
--- a/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
+++ b/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
@@ -9,4 +9,5 @@ SECTION = "gpe"
 PRIORITY = "optional"
 LICENSE = "GPL"
 
-SRC_URI += "file://fix_makefile.patch;patch=1"
+SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
+	    file://fix_makefile.patch;patch=1"
diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.12.bb b/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
index 543dc09..b61331f 100644
--- a/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
+++ b/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
@@ -9,4 +9,5 @@ SECTION = "gpe"
 PRIORITY = "optional"
 LICENSE = "GPL"
 
-SRC_URI += "file://fix_makefile.patch;patch=1"
+SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
+	    file://fix_makefile.patch;patch=1"
diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.13.bb b/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
index 1f79de8..84f7985 100644
--- a/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
+++ b/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
@@ -10,4 +10,5 @@ SECTION = "gpe"
 PRIORITY = "optional"
 LICENSE = "GPL"
 
-SRC_URI += "file://iconlist.patch;patch=1;pnum=0"
\ No newline at end of file
+SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
+	    file://fix_makefile.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling)
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (18 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles " koen.kooi
@ 2009-05-13  9:38 ` koen.kooi
  2009-05-14  7:00   ` Koen Kooi
  2009-05-13  9:39 ` [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream koen.kooi
                   ` (17 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:38 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/teleport/files/crypt.c                     |  158 --------------------
 recipes/teleport/files/fix-desktop.patch           |   12 --
 recipes/teleport/files/makefile-fix.patch          |   13 --
 recipes/teleport/files/remove-tododb.patch         |   12 --
 recipes/teleport/teleport-0.33/crypt.c             |  158 ++++++++++++++++++++
 recipes/teleport/teleport-0.33/fix-desktop.patch   |   12 ++
 recipes/teleport/teleport-0.33/makefile-fix.patch  |   13 ++
 recipes/teleport/teleport-0.33/remove-tododb.patch |   12 ++
 recipes/teleport/teleport-0.34/makefile-fix.patch  |   13 ++
 9 files changed, 208 insertions(+), 195 deletions(-)
 delete mode 100644 recipes/teleport/files/crypt.c
 delete mode 100644 recipes/teleport/files/fix-desktop.patch
 delete mode 100644 recipes/teleport/files/makefile-fix.patch
 delete mode 100644 recipes/teleport/files/remove-tododb.patch
 create mode 100644 recipes/teleport/teleport-0.33/crypt.c
 create mode 100644 recipes/teleport/teleport-0.33/fix-desktop.patch
 create mode 100644 recipes/teleport/teleport-0.33/makefile-fix.patch
 create mode 100644 recipes/teleport/teleport-0.33/remove-tododb.patch
 create mode 100644 recipes/teleport/teleport-0.34/makefile-fix.patch

diff --git a/recipes/teleport/files/crypt.c b/recipes/teleport/files/crypt.c
deleted file mode 100644
index 359c5ee..0000000
--- a/recipes/teleport/files/crypt.c
+++ /dev/null
@@ -1,158 +0,0 @@
-/*
- * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License
- * as published by the Free Software Foundation; either version
- * 2 of the License, or (at your option) any later version.
- */
-
-#include <stdlib.h>
-#include <string.h>
-#include <glib.h>
-#include <assert.h>
-
-#include "libdisplaymigration/auth.h"
-#include "libdisplaymigration/crypt.h"
-
-static gcry_mpi_t
-mpi_from_sexp (gcry_sexp_t r, char *tag)
-{
-  gcry_sexp_t s = gcry_sexp_find_token (r, tag, 0);
-  return gcry_sexp_nth_mpi (s, 1, GCRYMPI_FMT_USG);
-}
-
-static char *
-hex_from_mpi (gcry_mpi_t m)
-{
-  char *buf;
-  gcry_mpi_aprint (GCRYMPI_FMT_HEX, (void *)&buf, NULL, m);
-  return buf;
-}
-
-void
-displaymigration_crypt_create_hash (char *display, char *challenge, size_t len, char *result)
-{
-  size_t dlen = strlen (display);
-  gchar *buf = g_malloc (dlen + 1 + len);
-  strcpy (buf, display);
-  memcpy (buf + dlen + 1, challenge, len);
-  gcry_md_hash_buffer (GCRY_MD_SHA1, result, buf, len + dlen + 1);
-  g_free (buf);
-}
-
-static int
-do_encode_md (const unsigned char *digest, size_t digestlen, int algo,
-              unsigned int nbits, gcry_mpi_t *r_val)
-{
-  int nframe = (nbits+7) / 8;
-  unsigned char *frame;
-  int i, n;
-  unsigned char asn[100];
-  size_t asnlen;
-
-  asnlen = sizeof(asn);
-  if (gcry_md_algo_info (algo, GCRYCTL_GET_ASNOID, asn, &asnlen))
-    return -1;
-
-  if (digestlen + asnlen + 4  > nframe )
-    return -1;
-  
-  /* We encode the MD in this way:
-   *
-   *	   0  1 PAD(n bytes)   0  ASN(asnlen bytes)  MD(len bytes)
-   *
-   * PAD consists of FF bytes.
-   */
-  frame = g_malloc (nframe);
-  n = 0;
-  frame[n++] = 0;
-  frame[n++] = 1; /* block type */
-  i = nframe - digestlen - asnlen -3 ;
-  assert ( i > 1 );
-  memset ( frame+n, 0xff, i ); n += i;
-  frame[n++] = 0;
-  memcpy ( frame+n, asn, asnlen ); n += asnlen;
-  memcpy ( frame+n, digest, digestlen ); n += digestlen;
-  assert ( n == nframe );
-      
-  gcry_mpi_scan (r_val, GCRYMPI_FMT_USG, frame, nframe, &nframe);
-  g_free (frame);
-  return 0;
-}
-
-gboolean
-displaymigration_crypt_sign_hash (struct rsa_key *k, char *hash, gchar **result)
-{
-  gcry_mpi_t mpi;
-  gcry_sexp_t data, sig, key;
-  int rc;
-  char *hex;
-
-  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024, &mpi);
-
-  if (gcry_sexp_build (&data, NULL, "(data (value %m))", mpi))
-    return FALSE;
- 
-  gcry_mpi_release (mpi);
-
-  if (gcry_sexp_build (&key, NULL, "(private-key (rsa (n %m) (e %m) (d %m) (p %m) (q %m) (u %m)))",
-		       k->n, k->e, k->d, k->p, k->q, k->u))
-    {
-      gcry_sexp_release (data);
-      return FALSE;
-    }
-  
-  rc = gcry_pk_sign (&sig, data, key);
-
-  gcry_sexp_release (data);
-  gcry_sexp_release (key);
-
-  if (rc)
-    return FALSE;
-
-  mpi = mpi_from_sexp (sig, "s");
-  hex = hex_from_mpi (mpi);
-  *result = g_strdup (hex);
-  gcry_free (hex);
-  gcry_mpi_release (mpi);
-  gcry_sexp_release (sig);
-
-  return TRUE;
-}
-
-gboolean
-displaymigration_crypt_check_signature (struct rsa_key *k, char *hash, char *sigbuf)
-{
-  gcry_mpi_t mpi, mpi2;
-  gcry_sexp_t data, sig, key;
-  int rc;
-
-  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024, &mpi);
-
-  gcry_sexp_build (&data, NULL, "(data (value %m))", mpi);
-  
-  gcry_mpi_release (mpi);
-
-  gcry_sexp_build (&key, NULL, "(public-key (rsa (n %m) (e %m)))", k->n, k->e);
-
-  if (gcry_mpi_scan (&mpi2, GCRYMPI_FMT_HEX, sigbuf, 0, NULL))
-    {
-      gcry_sexp_release (data);
-      return FALSE;
-    }
-
-  gcry_sexp_build (&sig, NULL, "(sig-val (rsa (s %m)))", mpi2);
-
-  rc = gcry_pk_verify (sig, data, key);
-
-  gcry_sexp_release (data);
-  gcry_sexp_release (key);
-  gcry_sexp_release (sig);
-  gcry_mpi_release (mpi2);
-
-  if (rc)
-    return FALSE;
-
-  return TRUE;
-}
diff --git a/recipes/teleport/files/fix-desktop.patch b/recipes/teleport/files/fix-desktop.patch
deleted file mode 100644
index c12434f..0000000
--- a/recipes/teleport/files/fix-desktop.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- teleport-0.33/teleport.desktop      2003-07-06 23:47:14.000000000 +0200
-+++ /tmp/teleport.desktop       2005-03-04 17:34:32.193817208 +0100
-@@ -1,7 +1,7 @@
- [Desktop Entry]
- Name=Teleport
- Comment=Move applications between displays
--Exec=monolaunch -k /usr/share/pixmaps/teleport.png teleport
-+Exec=mb-applet-launcher -k /usr/share/pixmaps/teleport.png teleport
- Type=PanelApp
- Icon=teleport.png
- Categories=Panel;Utility;GPE
-
diff --git a/recipes/teleport/files/makefile-fix.patch b/recipes/teleport/files/makefile-fix.patch
deleted file mode 100644
index 9dc232d..0000000
--- a/recipes/teleport/files/makefile-fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
---- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
-+++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
-@@ -37,8 +37,8 @@
- 
- install-program: all
- 	install -d $(DESTDIR)$(PREFIX)/bin
--	install -s teleport $(DESTDIR)$(PREFIX)/bin/
--	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
-+	install teleport $(DESTDIR)$(PREFIX)/bin/
-+	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
- 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
- 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
- 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/teleport/files/remove-tododb.patch b/recipes/teleport/files/remove-tododb.patch
deleted file mode 100644
index 87e4f74..0000000
--- a/recipes/teleport/files/remove-tododb.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- teleport-0.33/Makefile    2004-07-20 22:01:25.000000000 +0200
-+++ teleport-0.33/Makefile       2005-03-04 17:03:17.316841832 +0100
-@@ -13,7 +13,7 @@
- endif
- PACKAGE_CPPFLAGS += $(STANDARD_CPPFLAGS)
- PACKAGE_CFLAGS += $(STANDARD_CFLAGS) $(GPECFLAGS) `libgcrypt-config --cflags`
--PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ltododb -ldisplaymigration -lgpepimc `libgcrypt-config --libs` -lsqlite
-+PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ldisplaymigration `libgcrypt-config --libs` -lsqlite
- 
- MEMBERS = teleport crypt displays keygen tp-keygen
- 
-
diff --git a/recipes/teleport/teleport-0.33/crypt.c b/recipes/teleport/teleport-0.33/crypt.c
new file mode 100644
index 0000000..359c5ee
--- /dev/null
+++ b/recipes/teleport/teleport-0.33/crypt.c
@@ -0,0 +1,158 @@
+/*
+ * Copyright (C) 2003 Philip Blundell <philb@gnu.org>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version
+ * 2 of the License, or (at your option) any later version.
+ */
+
+#include <stdlib.h>
+#include <string.h>
+#include <glib.h>
+#include <assert.h>
+
+#include "libdisplaymigration/auth.h"
+#include "libdisplaymigration/crypt.h"
+
+static gcry_mpi_t
+mpi_from_sexp (gcry_sexp_t r, char *tag)
+{
+  gcry_sexp_t s = gcry_sexp_find_token (r, tag, 0);
+  return gcry_sexp_nth_mpi (s, 1, GCRYMPI_FMT_USG);
+}
+
+static char *
+hex_from_mpi (gcry_mpi_t m)
+{
+  char *buf;
+  gcry_mpi_aprint (GCRYMPI_FMT_HEX, (void *)&buf, NULL, m);
+  return buf;
+}
+
+void
+displaymigration_crypt_create_hash (char *display, char *challenge, size_t len, char *result)
+{
+  size_t dlen = strlen (display);
+  gchar *buf = g_malloc (dlen + 1 + len);
+  strcpy (buf, display);
+  memcpy (buf + dlen + 1, challenge, len);
+  gcry_md_hash_buffer (GCRY_MD_SHA1, result, buf, len + dlen + 1);
+  g_free (buf);
+}
+
+static int
+do_encode_md (const unsigned char *digest, size_t digestlen, int algo,
+              unsigned int nbits, gcry_mpi_t *r_val)
+{
+  int nframe = (nbits+7) / 8;
+  unsigned char *frame;
+  int i, n;
+  unsigned char asn[100];
+  size_t asnlen;
+
+  asnlen = sizeof(asn);
+  if (gcry_md_algo_info (algo, GCRYCTL_GET_ASNOID, asn, &asnlen))
+    return -1;
+
+  if (digestlen + asnlen + 4  > nframe )
+    return -1;
+  
+  /* We encode the MD in this way:
+   *
+   *	   0  1 PAD(n bytes)   0  ASN(asnlen bytes)  MD(len bytes)
+   *
+   * PAD consists of FF bytes.
+   */
+  frame = g_malloc (nframe);
+  n = 0;
+  frame[n++] = 0;
+  frame[n++] = 1; /* block type */
+  i = nframe - digestlen - asnlen -3 ;
+  assert ( i > 1 );
+  memset ( frame+n, 0xff, i ); n += i;
+  frame[n++] = 0;
+  memcpy ( frame+n, asn, asnlen ); n += asnlen;
+  memcpy ( frame+n, digest, digestlen ); n += digestlen;
+  assert ( n == nframe );
+      
+  gcry_mpi_scan (r_val, GCRYMPI_FMT_USG, frame, nframe, &nframe);
+  g_free (frame);
+  return 0;
+}
+
+gboolean
+displaymigration_crypt_sign_hash (struct rsa_key *k, char *hash, gchar **result)
+{
+  gcry_mpi_t mpi;
+  gcry_sexp_t data, sig, key;
+  int rc;
+  char *hex;
+
+  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024, &mpi);
+
+  if (gcry_sexp_build (&data, NULL, "(data (value %m))", mpi))
+    return FALSE;
+ 
+  gcry_mpi_release (mpi);
+
+  if (gcry_sexp_build (&key, NULL, "(private-key (rsa (n %m) (e %m) (d %m) (p %m) (q %m) (u %m)))",
+		       k->n, k->e, k->d, k->p, k->q, k->u))
+    {
+      gcry_sexp_release (data);
+      return FALSE;
+    }
+  
+  rc = gcry_pk_sign (&sig, data, key);
+
+  gcry_sexp_release (data);
+  gcry_sexp_release (key);
+
+  if (rc)
+    return FALSE;
+
+  mpi = mpi_from_sexp (sig, "s");
+  hex = hex_from_mpi (mpi);
+  *result = g_strdup (hex);
+  gcry_free (hex);
+  gcry_mpi_release (mpi);
+  gcry_sexp_release (sig);
+
+  return TRUE;
+}
+
+gboolean
+displaymigration_crypt_check_signature (struct rsa_key *k, char *hash, char *sigbuf)
+{
+  gcry_mpi_t mpi, mpi2;
+  gcry_sexp_t data, sig, key;
+  int rc;
+
+  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024, &mpi);
+
+  gcry_sexp_build (&data, NULL, "(data (value %m))", mpi);
+  
+  gcry_mpi_release (mpi);
+
+  gcry_sexp_build (&key, NULL, "(public-key (rsa (n %m) (e %m)))", k->n, k->e);
+
+  if (gcry_mpi_scan (&mpi2, GCRYMPI_FMT_HEX, sigbuf, 0, NULL))
+    {
+      gcry_sexp_release (data);
+      return FALSE;
+    }
+
+  gcry_sexp_build (&sig, NULL, "(sig-val (rsa (s %m)))", mpi2);
+
+  rc = gcry_pk_verify (sig, data, key);
+
+  gcry_sexp_release (data);
+  gcry_sexp_release (key);
+  gcry_sexp_release (sig);
+  gcry_mpi_release (mpi2);
+
+  if (rc)
+    return FALSE;
+
+  return TRUE;
+}
diff --git a/recipes/teleport/teleport-0.33/fix-desktop.patch b/recipes/teleport/teleport-0.33/fix-desktop.patch
new file mode 100644
index 0000000..c12434f
--- /dev/null
+++ b/recipes/teleport/teleport-0.33/fix-desktop.patch
@@ -0,0 +1,12 @@
+--- teleport-0.33/teleport.desktop      2003-07-06 23:47:14.000000000 +0200
++++ /tmp/teleport.desktop       2005-03-04 17:34:32.193817208 +0100
+@@ -1,7 +1,7 @@
+ [Desktop Entry]
+ Name=Teleport
+ Comment=Move applications between displays
+-Exec=monolaunch -k /usr/share/pixmaps/teleport.png teleport
++Exec=mb-applet-launcher -k /usr/share/pixmaps/teleport.png teleport
+ Type=PanelApp
+ Icon=teleport.png
+ Categories=Panel;Utility;GPE
+
diff --git a/recipes/teleport/teleport-0.33/makefile-fix.patch b/recipes/teleport/teleport-0.33/makefile-fix.patch
new file mode 100644
index 0000000..31973c4
--- /dev/null
+++ b/recipes/teleport/teleport-0.33/makefile-fix.patch
@@ -0,0 +1,13 @@
+--- /tmp/Makefile.old	2004-07-20 22:01:25.000000000 +0200
++++ teleport-0.33/Makefile	2009-05-02 00:16:57.000000000 +0200
+@@ -40,8 +40,8 @@
+ 
+ install-program: all
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
+-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
++	install teleport $(DESTDIR)$(PREFIX)/bin/
++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/teleport/teleport-0.33/remove-tododb.patch b/recipes/teleport/teleport-0.33/remove-tododb.patch
new file mode 100644
index 0000000..87e4f74
--- /dev/null
+++ b/recipes/teleport/teleport-0.33/remove-tododb.patch
@@ -0,0 +1,12 @@
+--- teleport-0.33/Makefile    2004-07-20 22:01:25.000000000 +0200
++++ teleport-0.33/Makefile       2005-03-04 17:03:17.316841832 +0100
+@@ -13,7 +13,7 @@
+ endif
+ PACKAGE_CPPFLAGS += $(STANDARD_CPPFLAGS)
+ PACKAGE_CFLAGS += $(STANDARD_CFLAGS) $(GPECFLAGS) `libgcrypt-config --cflags`
+-PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ltododb -ldisplaymigration -lgpepimc `libgcrypt-config --libs` -lsqlite
++PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ldisplaymigration `libgcrypt-config --libs` -lsqlite
+ 
+ MEMBERS = teleport crypt displays keygen tp-keygen
+ 
+
diff --git a/recipes/teleport/teleport-0.34/makefile-fix.patch b/recipes/teleport/teleport-0.34/makefile-fix.patch
new file mode 100644
index 0000000..9dc232d
--- /dev/null
+++ b/recipes/teleport/teleport-0.34/makefile-fix.patch
@@ -0,0 +1,13 @@
+--- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
++++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
+@@ -37,8 +37,8 @@
+ 
+ install-program: all
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
+-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
++	install teleport $(DESTDIR)$(PREFIX)/bin/
++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
-- 
1.6.1




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

* [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (19 preceding siblings ...)
  2009-05-13  9:38 ` [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling) koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:17   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini koen.kooi
                   ` (16 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-autostarter/gpe-autostarter_svn.bb |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/recipes/gpe-autostarter/gpe-autostarter_svn.bb b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
index 8d275b5..2742952 100644
--- a/recipes/gpe-autostarter/gpe-autostarter_svn.bb
+++ b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
@@ -8,8 +8,6 @@ inherit gpe
 SRC_URI = "${GPE_SVN} \
            file://svn-build.patch;patch=1"
 
-SRC_URI += "file://makefile-fix.patch;patch=1"
-
 S = "${WORKDIR}/${PN}"
 
 export CVSBUILD="no"
-- 
1.6.1




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

* [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (20 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 13:07   ` Frans Meulenbroeks
  2009-05-13  9:39 ` [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme koen.kooi
                   ` (15 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 conf/checksums.ini |   12 ------------
 1 files changed, 0 insertions(+), 12 deletions(-)

diff --git a/conf/checksums.ini b/conf/checksums.ini
index 395dcd9..9e39c83 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -8882,18 +8882,6 @@ sha256=44278e12358531f588501b2d79bb3a32c69e3cddb243674a414df20e3990f196
 md5=b9abca6437f13c4fc5bbb244738de9ea
 sha256=07c91f5433d7c6c44c54640e9f5b65addedaf0eec5c5705175608404bee6de37
 
-[http://gpe.linuxtogo.org/download/source/gpe-su-0.11.tar.gz]
-md5=557d54b0d55fa5134436e8b4afb1e624
-sha256=2ab8f54d65d1555fe71307a685b1be9b2d0e04f862feb5e2487f54ef140dad2b
-
-[http://gpe.linuxtogo.org/download/source/gpe-su-0.14.tar.gz]
-md5=d7a0b0ac64f60a7cceb77b65d50176e1
-sha256=405a5137e9de5487e942d54cc5ee8edb66c54cec48925ff90368b36e38942536
-
-[http://gpe.linuxtogo.org/download/source/gpe-su-0.15.tar.gz]
-md5=3830c34b4482f892607c3b768e6dc7f3
-sha256=468a61461e0569dc55eca454a5e8676163b6544f0af41241e97479604f029791
-
 [http://gpe.linuxtogo.org/download/source/gpe-su-0.18.tar.gz]
 md5=7e22069a6c59138f8b6e3f9cbc6bb616
 sha256=bf1df54e88dbfa94be7b9f9a4c897635dca1ec56885352d8ebeac99f747b0554
-- 
1.6.1




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

* [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (21 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:18   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 24/37] xdemineur: Don't do "install -s" koen.kooi
                   ` (14 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Cliff Brake <cbrake@bec-systems.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gnome/libart-lgpl.inc       |    4 +++-
 recipes/gnome/libart-lgpl_2.3.16.bb |    3 ++-
 recipes/gnome/libart-lgpl_2.3.19.bb |    3 ++-
 3 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/recipes/gnome/libart-lgpl.inc b/recipes/gnome/libart-lgpl.inc
index 710656b..8ff3b21 100644
--- a/recipes/gnome/libart-lgpl.inc
+++ b/recipes/gnome/libart-lgpl.inc
@@ -4,6 +4,8 @@ LICENSE = "LGPL"
 
 ART_CONFIG = "${HOST_ARCH}/art_config.h"
 
+INC_PR = "r3"
+
 # can't use gnome.oeclass due to _ in filename
 SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
        file://${ART_CONFIG} \
@@ -29,7 +31,7 @@ EXTRA_OECONF = "--disable-gtk-doc"
 # enforced.
 export MKDIR_P = "mkdir -p"
 export mkdir_p = "mkdir -p"
-export INSTALL = "${STAGING_BINDIR_NATIVE}/install-sh"
+export INSTALL = "${STAGING_BINDIR_NATIVE}/install"
 
 do_stage() {
 	autotools_stage_includes
diff --git a/recipes/gnome/libart-lgpl_2.3.16.bb b/recipes/gnome/libart-lgpl_2.3.16.bb
index 3605a38..99f8f8b 100644
--- a/recipes/gnome/libart-lgpl_2.3.16.bb
+++ b/recipes/gnome/libart-lgpl_2.3.16.bb
@@ -1,3 +1,4 @@
 require libart-lgpl.inc
 
-PR = "r2"
+PR = "${INC_PR}.1"
+
diff --git a/recipes/gnome/libart-lgpl_2.3.19.bb b/recipes/gnome/libart-lgpl_2.3.19.bb
index 3605a38..99f8f8b 100644
--- a/recipes/gnome/libart-lgpl_2.3.19.bb
+++ b/recipes/gnome/libart-lgpl_2.3.19.bb
@@ -1,3 +1,4 @@
 require libart-lgpl.inc
 
-PR = "r2"
+PR = "${INC_PR}.1"
+
-- 
1.6.1




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

* [STABLE][PATCH 24/37] xdemineur: Don't do "install -s"
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (22 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:19   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools koen.kooi
                   ` (13 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Florian Boor <florian.boor@kernelconcepts.de>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/xdemineur/xdemineur-2.1.1/Makefile |    2 +-
 recipes/xdemineur/xdemineur_2.1.1.bb       |    1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/recipes/xdemineur/xdemineur-2.1.1/Makefile b/recipes/xdemineur/xdemineur-2.1.1/Makefile
index 10d34b2..218df56 100644
--- a/recipes/xdemineur/xdemineur-2.1.1/Makefile
+++ b/recipes/xdemineur/xdemineur-2.1.1/Makefile
@@ -22,7 +22,7 @@ xdemineur: $(OBJS)
 
 install: all
 	install -d $(DESTDIR)$(PREFIX)/bin
-	install -s xdemineur $(DESTDIR)$(PREFIX)/bin/xdemineur
+	install xdemineur $(DESTDIR)$(PREFIX)/bin/xdemineur
 	install -D -m 644 xdemineur.xpm $(DESTDIR)$(PREFIX)/share/pixmaps/xdemineur.xpm
 	install -D -m 644 familiar/xdemineur.png $(DESTDIR)$(PREFIX)/share/pixmaps/xdemineur.png
 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/xdemineur/xdemineur_2.1.1.bb b/recipes/xdemineur/xdemineur_2.1.1.bb
index 73e3276..23846df 100644
--- a/recipes/xdemineur/xdemineur_2.1.1.bb
+++ b/recipes/xdemineur/xdemineur_2.1.1.bb
@@ -1,5 +1,6 @@
 inherit gpe
 LICENSE = "BSD-X"
+PR = "r1"
 
 DEPENDS = "virtual/libx11 libxpm"
 SECTION = "gpe/games"
-- 
1.6.1




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

* [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (23 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 24/37] xdemineur: Don't do "install -s" koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:19   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 26/37] gsoko: don't do "install -s" koen.kooi
                   ` (12 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Cliff Brake <cbrake@bec-systems.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gnome/libart-lgpl.inc |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)

diff --git a/recipes/gnome/libart-lgpl.inc b/recipes/gnome/libart-lgpl.inc
index 8ff3b21..1af5b0e 100644
--- a/recipes/gnome/libart-lgpl.inc
+++ b/recipes/gnome/libart-lgpl.inc
@@ -4,7 +4,7 @@ LICENSE = "LGPL"
 
 ART_CONFIG = "${HOST_ARCH}/art_config.h"
 
-INC_PR = "r3"
+INC_PR = "r4"
 
 # can't use gnome.oeclass due to _ in filename
 SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
@@ -31,7 +31,6 @@ EXTRA_OECONF = "--disable-gtk-doc"
 # enforced.
 export MKDIR_P = "mkdir -p"
 export mkdir_p = "mkdir -p"
-export INSTALL = "${STAGING_BINDIR_NATIVE}/install"
 
 do_stage() {
 	autotools_stage_includes
-- 
1.6.1




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

* [STABLE][PATCH 26/37] gsoko: don't do "install -s"
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (24 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:19   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 27/37] gpe-plucker: Fix install koen.kooi
                   ` (11 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Florian Boor <florian.boor@kernelconcepts.de>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch |   13 +++++++++++++
 recipes/gsoko/gsoko_0.4.2-gpe6.bb                  |    1 +
 2 files changed, 14 insertions(+), 0 deletions(-)

diff --git a/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch b/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
index 78506a8..f734be4 100644
--- a/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
+++ b/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
@@ -27,3 +27,16 @@ diff -urNd ../gsoko-0.4.2-gpe5-r0/gsoko-0.4.2-gpe5/Makefile gsoko-0.4.2-gpe5/Mak
  
  clean:
  	rm -f *.o
+Index: Makefile
+===================================================================
+--- a/Makefile	(Revision 9905)
++++ b/Makefile	(Arbeitskopie)
+@@ -29,7 +29,7 @@
+ 
+ install-program: gsoko gsoko.desktop
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s gsoko $(DESTDIR)$(PREFIX)/bin/gsoko
++	install  gsoko $(DESTDIR)$(PREFIX)/bin/gsoko
+ 	install -d $(DESTDIR)$(PREFIX)/share/gsoko/img
+ 	install -d $(DESTDIR)$(PREFIX)/share/gsoko/levels
+ 	for i in $(LEVELS); do install -m 644 levels/$$i.lev $(DESTDIR)$(PREFIX)/share/gsoko/levels/$$i.lev; done
diff --git a/recipes/gsoko/gsoko_0.4.2-gpe6.bb b/recipes/gsoko/gsoko_0.4.2-gpe6.bb
index 0d12a6f..6a34be2 100644
--- a/recipes/gsoko/gsoko_0.4.2-gpe6.bb
+++ b/recipes/gsoko/gsoko_0.4.2-gpe6.bb
@@ -4,5 +4,6 @@ DEPENDS = "gtk+ libgpewidget"
 SECTION = "gpe"
 DESCRIPTION = "Sokoban game for GTK"
 PRIORITY = "optional"
+PR = "r1"
 
 SRC_URI += "file://fix_makefiles.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 27/37] gpe-plucker: Fix install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (25 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 26/37] gsoko: don't do "install -s" koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:20   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 28/37] gpe-plucker: Add patch koen.kooi
                   ` (10 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-plucker/gpe-plucker_0.4.bb |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/recipes/gpe-plucker/gpe-plucker_0.4.bb b/recipes/gpe-plucker/gpe-plucker_0.4.bb
index 8e90d2f..4a2937a 100644
--- a/recipes/gpe-plucker/gpe-plucker_0.4.bb
+++ b/recipes/gpe-plucker/gpe-plucker_0.4.bb
@@ -5,10 +5,13 @@ DEPENDS = "gtk+ libgpewidget gpe-icons"
 RDEPENDS = "gpe-icons"
 SECTION = "gpe"
 PRIORITY = "optional"
+PR = "r3"
+
+SRC_URI += " \
+           file://plucker-no-host-includes.patch;patch=1 \
+           file://fix-install.patch;patch=1 \
+           "
 
-SRC_URI += " file://plucker-no-host-includes.patch;patch=1"
 PARALLEL_MAKE=""
 EXTRA_OEMAKE="RANLIB=${RANLIB}"
 
-PR = "r2"
-
-- 
1.6.1




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

* [STABLE][PATCH 28/37] gpe-plucker: Add patch
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (26 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 27/37] gpe-plucker: Fix install koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:20   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s koen.kooi
                   ` (9 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-plucker/gpe-plucker/fix-install.patch |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/gpe-plucker/gpe-plucker/fix-install.patch

diff --git a/recipes/gpe-plucker/gpe-plucker/fix-install.patch b/recipes/gpe-plucker/gpe-plucker/fix-install.patch
new file mode 100644
index 0000000..cfd5bc4
--- /dev/null
+++ b/recipes/gpe-plucker/gpe-plucker/fix-install.patch
@@ -0,0 +1,13 @@
+diff --git gpe-plucker-0.4/Makefile-orig gpe-plucker-0.4/Makefile
+index c68b5ab..abf97bb 100644
+--- gpe-plucker-0.4/Makefile-orig
++++ gpe-plucker-0.4/Makefile
+@@ -43,7 +43,7 @@ $(PACKAGE): $(OBJS) $(LIB)
+ 
+ install-program: all $(PACKAGE).desktop
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
+ 	#mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)
-- 
1.6.1




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

* [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (27 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 28/37] gpe-plucker: Add patch koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:21   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't " koen.kooi
                   ` (8 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-announce/files/fix-install.diff |   13 +++++++++++++
 recipes/gpe-announce/gpe-announce_0.13.bb   |    5 ++++-
 2 files changed, 17 insertions(+), 1 deletions(-)
 create mode 100644 recipes/gpe-announce/files/fix-install.diff

diff --git a/recipes/gpe-announce/files/fix-install.diff b/recipes/gpe-announce/files/fix-install.diff
new file mode 100644
index 0000000..3827f55
--- /dev/null
+++ b/recipes/gpe-announce/files/fix-install.diff
@@ -0,0 +1,13 @@
+diff --git gpe-announce-0.13/Makefile-orig gpe-announce-0.13/Makefile
+index 56e016a..f8bade4 100644
+--- gpe-announce-0.13/Makefile-orig
++++ gpe-announce-0.13/Makefile
+@@ -47,7 +47,7 @@ $(PACKAGE): $(OBJS)
+ 
+ install-program: all 
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 
+ clean:
+ 	rm -f $(PACKAGE) $(OBJS) $(DEPS)
diff --git a/recipes/gpe-announce/gpe-announce_0.13.bb b/recipes/gpe-announce/gpe-announce_0.13.bb
index 6ffe317..21538c4 100644
--- a/recipes/gpe-announce/gpe-announce_0.13.bb
+++ b/recipes/gpe-announce/gpe-announce_0.13.bb
@@ -4,4 +4,7 @@ DEPENDS = "libsoundgen libschedule gtk+ libgpewidget"
 LICENSE = "GPL"
 PR = "r1"
 
-SRC_URI += "file://fix-esound.diff;patch=1"
+SRC_URI += " \
+            file://fix-esound.diff;patch=1 \
+            file://fix-install.diff;patch=1 \
+           "
-- 
1.6.1




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

* [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't do install -s
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (28 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:22   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di " koen.kooi
                   ` (7 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-clock/files/fix-install.patch |   13 +++++++++++++
 recipes/gpe-clock/gpe-clock.inc           |    2 ++
 2 files changed, 15 insertions(+), 0 deletions(-)
 create mode 100644 recipes/gpe-clock/files/fix-install.patch

diff --git a/recipes/gpe-clock/files/fix-install.patch b/recipes/gpe-clock/files/fix-install.patch
new file mode 100644
index 0000000..2d3e303
--- /dev/null
+++ b/recipes/gpe-clock/files/fix-install.patch
@@ -0,0 +1,13 @@
+diff --git gpe-clock-0.25/Makefile-orig gpe-clock-0.25/Makefile
+index 4fa59bf..e716fcb 100644
+--- gpe-clock-0.25/Makefile-orig
++++ gpe-clock-0.25/Makefile
+@@ -36,7 +36,7 @@ $(PACKAGE): $(OBJS)
+ 
+ install-program: all
+ 	install -d $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
diff --git a/recipes/gpe-clock/gpe-clock.inc b/recipes/gpe-clock/gpe-clock.inc
index d4ae3da..b36fa7d 100644
--- a/recipes/gpe-clock/gpe-clock.inc
+++ b/recipes/gpe-clock/gpe-clock.inc
@@ -6,3 +6,5 @@ DEPENDS = "gtk+ libschedule libgpewidget gpe-announce atd libgpelaunch"
 RDEPENDS = "gpe-announce"
 
 inherit gpe
+
+SRC_URI += "file://fix-install.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di install -s
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (29 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't " koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:22   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do " koen.kooi
                   ` (6 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../gpe-tetris/gpe-tetris-0.6-4/fix-install.patch  |   13 +++++++++++++
 recipes/gpe-tetris/gpe-tetris_0.6-4.bb             |    4 +++-
 2 files changed, 16 insertions(+), 1 deletions(-)
 create mode 100644 recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch

diff --git a/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch b/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch
new file mode 100644
index 0000000..2e32aa5
--- /dev/null
+++ b/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch
@@ -0,0 +1,13 @@
+diff --git gpe-tetris-0.6-4/Makefile-orig gpe-tetris-0.6-4/Makefile
+index 82c7245..27de49f 100644
+--- gpe-tetris-0.6-4/Makefile-orig
++++ gpe-tetris-0.6-4/Makefile
+@@ -46,7 +46,7 @@ install-program: all
+ 	install -m 644 pixmaps/stop.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/stop.png
+ 	install -m 644 pixmaps/pause.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/pause.png
+ 	install -m 644 pixmaps/highscores.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/highscores.png
+-	install -s $(PACKAGE) $(BIN_PATH)/$(PACKAGE)
++	install $(PACKAGE) $(BIN_PATH)/$(PACKAGE)
+ 	install -d $(DESTDIR)$(PREFIX)/share/applications
+ 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 gpe-tetris.desktop $(DESTDIR)$(PREFIX)/share/applications/
diff --git a/recipes/gpe-tetris/gpe-tetris_0.6-4.bb b/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
index 4a13d24..aa33b1f 100644
--- a/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
+++ b/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
@@ -1,9 +1,11 @@
 LICENSE = "GPL"
 inherit gpe
+PR = "r1"
+
 
 DESCRIPTION = "GTK+2 port of the well known game, Tetris."
 DEPENDS = "gtk+ libgpewidget gpe-icons"
 SECTION = "gpe"
 PRIORITY = "optional"
 
-
+SRC_URI += "file://fix-install.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do install -s
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (30 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di " koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:23   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install koen.kooi
                   ` (5 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Steve Sakoman <steve@sakoman.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-watch/gpe-watch-0.10/fix_install.patch |   13 +++++++++++++
 recipes/gpe-watch/gpe-watch_0.10.bb                |    5 ++++-
 2 files changed, 17 insertions(+), 1 deletions(-)
 create mode 100644 recipes/gpe-watch/gpe-watch-0.10/fix_install.patch

diff --git a/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch b/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch
new file mode 100644
index 0000000..3ae63a8
--- /dev/null
+++ b/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch
@@ -0,0 +1,13 @@
+diff --git gpe-watch-0.10/Makefile-orig gpe-watch-0.10/Makefile
+index 2f74616..58fa802 100644
+--- gpe-watch-0.10/Makefile-orig
++++ gpe-watch-0.10/Makefile
+@@ -39,7 +39,7 @@ $(PACKAGE): $(OBJS) $(LIB)
+ 
+ install-program: all $(PACKAGE).desktop
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
+ 	#mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)
diff --git a/recipes/gpe-watch/gpe-watch_0.10.bb b/recipes/gpe-watch/gpe-watch_0.10.bb
index e0d5147..9b386a2 100644
--- a/recipes/gpe-watch/gpe-watch_0.10.bb
+++ b/recipes/gpe-watch/gpe-watch_0.10.bb
@@ -1,5 +1,6 @@
 LICENSE = "GPL"
 inherit gpe pkgconfig
+PR = "r1"
 
 DESCRIPTION = "GPE analog clock-watch"
 DEPENDS = "gtk+ libgpewidget"
@@ -7,4 +8,6 @@ SECTION = "gpe"
 PRIORITY = "optional"
 
 SRC_URI += "file://fix_makefile.patch;patch=1 \
-            file://no-render-h.patch;patch=1"
+            file://fix_install.patch;patch=1 \
+            file://no-render-h.patch;patch=1 \
+           "
-- 
1.6.1




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

* [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (31 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do " koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:23   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 34/37] startup-monitor: fix makefile " koen.kooi
                   ` (4 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/gpe-mixer/gpe-mixer/fix-install.patch |   11 +++++++++++
 recipes/gpe-mixer/gpe-mixer_0.42.bb           |    3 ++-
 2 files changed, 13 insertions(+), 1 deletions(-)
 create mode 100644 recipes/gpe-mixer/gpe-mixer/fix-install.patch

diff --git a/recipes/gpe-mixer/gpe-mixer/fix-install.patch b/recipes/gpe-mixer/gpe-mixer/fix-install.patch
new file mode 100644
index 0000000..ec5ea2c
--- /dev/null
+++ b/recipes/gpe-mixer/gpe-mixer/fix-install.patch
@@ -0,0 +1,11 @@
+--- Makefile.old	2009-05-09 21:11:12.000000000 +0200
++++ Makefile	2009-05-09 21:11:39.000000000 +0200
+@@ -36,7 +36,7 @@
+ 
+ install-program: all $(PACKAGE).desktop
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
+ 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
+ 	mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)
diff --git a/recipes/gpe-mixer/gpe-mixer_0.42.bb b/recipes/gpe-mixer/gpe-mixer_0.42.bb
index 5fe0e98..c2f7bbe 100644
--- a/recipes/gpe-mixer/gpe-mixer_0.42.bb
+++ b/recipes/gpe-mixer/gpe-mixer_0.42.bb
@@ -3,7 +3,8 @@ PR = "r1"
 
 inherit gpe pkgconfig
 
-SRC_URI += "file://gpemixer-no-host-includes.patch;patch=1"
+SRC_URI += "file://gpemixer-no-host-includes.patch;patch=1 \
+	    file://fix-install.patch;patch=1"
 
 DESCRIPTION = "GPE audio mixer"
 DEPENDS = "gtk+ libgpewidget"
-- 
1.6.1




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

* [STABLE][PATCH 34/37] startup-monitor: fix makefile - don't strip on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (32 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:23   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh) koen.kooi
                   ` (3 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Andrea Adami <andrea.adami@gmail.com>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/startup-monitor/files/makefile-fix.patch  |   11 +++++++++++
 recipes/startup-monitor/startup-monitor_0.18-2.bb |    2 ++
 2 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/startup-monitor/files/makefile-fix.patch

diff --git a/recipes/startup-monitor/files/makefile-fix.patch b/recipes/startup-monitor/files/makefile-fix.patch
new file mode 100644
index 0000000..6d50c8f
--- /dev/null
+++ b/recipes/startup-monitor/files/makefile-fix.patch
@@ -0,0 +1,11 @@
+--- /tmp/Makefile.old	2006-01-16 13:40:16.000000000 +0100
++++ startup-monitor/Makefile	2009-05-09 23:08:22.000000000 +0200
+@@ -41,7 +41,7 @@
+ 
+ install-program: all
+ 	mkdir -p $(DESTDIR)$(PREFIX)/bin
+-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
+ 	mkdir -p $(DESTDIR)/etc/X11/Xsession.d
+ 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/70startup-monitor
+ 
diff --git a/recipes/startup-monitor/startup-monitor_0.18-2.bb b/recipes/startup-monitor/startup-monitor_0.18-2.bb
index 34e7656..38ec504 100644
--- a/recipes/startup-monitor/startup-monitor_0.18-2.bb
+++ b/recipes/startup-monitor/startup-monitor_0.18-2.bb
@@ -7,3 +7,5 @@ DEPENDS = "virtual/libx11 startup-notification glib-2.0 libmatchbox"
 inherit gpe pkgconfig
 
 #SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/${P}.tar.gz"
+
+SRC_URI += "file://makefile-fix.patch;patch=1"
-- 
1.6.1




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

* [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh)
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (33 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 34/37] startup-monitor: fix makefile " koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:24   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 36/37] logrotate: remove -s on install koen.kooi
                   ` (2 subsequent siblings)
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Mike Westerhof <mwester@dls.net>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/netpbm/netpbm_10.28.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/netpbm/netpbm_10.28.bb b/recipes/netpbm/netpbm_10.28.bb
index ff90310..78bb26b 100644
--- a/recipes/netpbm/netpbm_10.28.bb
+++ b/recipes/netpbm/netpbm_10.28.bb
@@ -25,7 +25,7 @@ RDEPENDS = "perl\
 RDEPENDS += "perl-module-exporter-heavy"
 RDEPENDS += "perl-module-file-spec-unix"
 
-PR = "r5"
+PR = "r6"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/netpbm/netpbm-${PV}.tgz \
 	   file://ppmtojpeg.patch;patch=42 \
@@ -34,7 +34,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/netpbm/netpbm-${PV}.tgz \
 
 PARALLEL_MAKE = ""
 
-EXTRA_OEMAKE = "ENDIANGEN=${S}/buildtools/oeendiangen TARGET_LD=${LD}"
+EXTRA_OEMAKE = "ENDIANGEN=${S}/buildtools/oeendiangen TARGET_LD=${LD} 'STRIPFLAG='"
 
 do_configure() {
 	install -c -m 644 ../Makefile.config .
-- 
1.6.1




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

* [STABLE][PATCH 36/37] logrotate: remove -s on install
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (34 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh) koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-13 14:24   ` Philip Balister
  2009-05-13  9:39 ` [STABLE][PATCH 37/37] monit: add patch to remove -s in install koen.kooi
  2009-05-13 14:05 ` [STABLE][PATCH 00/37] Fix install -s problems Koen Kooi
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Mike Westerhof <mwester@dls.net>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 recipes/logrotate/logrotate_3.7.1.bb |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/recipes/logrotate/logrotate_3.7.1.bb b/recipes/logrotate/logrotate_3.7.1.bb
index 0a1647e..61a1306 100644
--- a/recipes/logrotate/logrotate_3.7.1.bb
+++ b/recipes/logrotate/logrotate_3.7.1.bb
@@ -5,7 +5,7 @@ DEPENDS = "popt"
 RDEPENDS = "cron"
 SECTION = "admin"
 LICENSE = "GPL"
-PR = "r1"
+PR = "r2"
 
 SRC_URI = "http://ftp.debian.org/debian/pool/main/l/logrotate/logrotate_${PV}.orig.tar.gz \
 	   file://logrotate-3.7.1.patch;patch=1 \
@@ -21,7 +21,7 @@ do_compile() {
 
 do_install () {
     # Install the binary and conf file
-    install -D -s -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate
+    install -D -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate
     install -D -m 0644 ${WORKDIR}/logrotate.conf ${D}${sysconfdir}/logrotate.conf
     install -m 0755 -d ${D}${sysconfdir}/logrotate.d
 }
-- 
1.6.1




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

* [STABLE][PATCH 37/37] monit: add patch to remove -s in install.
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (35 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 36/37] logrotate: remove -s on install koen.kooi
@ 2009-05-13  9:39 ` koen.kooi
  2009-05-14  7:00   ` Koen Kooi
  2009-05-13 14:05 ` [STABLE][PATCH 00/37] Fix install -s problems Koen Kooi
  37 siblings, 1 reply; 78+ messages in thread
From: koen.kooi @ 2009-05-13  9:39 UTC (permalink / raw)
  To: openembedded-devel

From: Mike Westerhof <mwester@dls.net>

Signed-off-by: Koen Kooi <koen@openembedded.org>
---
 .../monit/monit-4.10.1/no-strip-in-makefile.patch  |   11 +++++++++++
 recipes/monit/monit_4.10.1.bb                      |    2 ++
 2 files changed, 13 insertions(+), 0 deletions(-)
 create mode 100644 recipes/monit/monit-4.10.1/no-strip-in-makefile.patch

diff --git a/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
new file mode 100644
index 0000000..26f5108
--- /dev/null
+++ b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
@@ -0,0 +1,11 @@
+--- monit-4.10.1/Makefile.in.orig	2009-05-10 21:19:00.000000000 -0500
++++ monit-4.10.1/Makefile.in	2009-05-10 21:19:11.000000000 -0500
+@@ -39,7 +39,7 @@ MODE_CONF       = 600
+ MODE_DIRS       = 755
+ 
+ INSTALL         = @INSTALL@ 
+-INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS) -s
++INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS)
+ INSTALL_FILE    = $(INSTALL) -m $(MODE_FILES)
+ INSTALL_DIR     = $(INSTALL) -m $(MODE_DIRS) -d
+ 
diff --git a/recipes/monit/monit_4.10.1.bb b/recipes/monit/monit_4.10.1.bb
index bb18491..06d382f 100644
--- a/recipes/monit/monit_4.10.1.bb
+++ b/recipes/monit/monit_4.10.1.bb
@@ -1,7 +1,9 @@
 LICENSE = "GPL"
 DEPENDS = "openssl"
+PR = "r1"
 
 SRC_URI = "http://www.tildeslash.com/monit/dist/monit-${PV}.tar.gz\
+	file://no-strip-in-makefile.patch;patch=1 \
 	file://init"
 
 INITSCRIPT_NAME = "monit"
-- 
1.6.1




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

* Re: [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini
  2009-05-13  9:39 ` [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini koen.kooi
@ 2009-05-13 13:07   ` Frans Meulenbroeks
  2009-05-13 14:02     ` Koen Kooi
  0 siblings, 1 reply; 78+ messages in thread
From: Frans Meulenbroeks @ 2009-05-13 13:07 UTC (permalink / raw)
  To: openembedded-devel

It was my impression that removing checksums from checksums.ini was not done.
Am I mistaken? Please enlighten me.

Frans



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

* Re: [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file)
  2009-05-13  9:38 ` [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file) koen.kooi
@ 2009-05-13 13:56   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 13:56 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 949 bytes --]

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>

Acked-by: Philip Balister <philip@balister.org>
> ---
>  recipes/ipaq-sleep/files/install-fix.patch |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/ipaq-sleep/files/install-fix.patch b/recipes/ipaq-sleep/files/install-fix.patch
> index 59eb17b..68e57af 100644
> --- a/recipes/ipaq-sleep/files/install-fix.patch
> +++ b/recipes/ipaq-sleep/files/install-fix.patch
> @@ -5,7 +5,7 @@
>   
>   install-program: all
>  -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	mkdir -p $(DESTDIR)/etc/init.d
>   	install $(PACKAGE).init $(DESTDIR)/etc/init.d/$(PACKAGE)
>   	install $(PACKAGE).conf $(DESTDIR)/etc/$(PACKAGE).conf

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging koen.kooi
@ 2009-05-13 13:56   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 13:56 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 865 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-question/files/makefile-fix.patch |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gpe-question/files/makefile-fix.patch b/recipes/gpe-question/files/makefile-fix.patch
> index a8d1ead..f501e12 100644
> --- a/recipes/gpe-question/files/makefile-fix.patch
> +++ b/recipes/gpe-question/files/makefile-fix.patch
> @@ -5,7 +5,7 @@
>   
>   install-program: all
>  -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   
>   clean:
>   	rm -f $(PACKAGE).o $(PACKAGE) $(DEPS)

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 03/37] gpe-othello: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 03/37] gpe-othello: " koen.kooi
@ 2009-05-13 13:57   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 13:57 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1160 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  .../gpe-othello-0.2-1/fix-makefiles.patch          |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch b/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
> index 1c43724..def1915 100644
> --- a/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
> +++ b/recipes/gpe-othello/gpe-othello-0.2-1/fix-makefiles.patch
> @@ -278,7 +278,7 @@ diff -urNd ../gpe-othello-0.2-1-r0/gpe-othello-0.2-1/Makefile gpe-othello-0.2-1/
>   install-program: all 
>  -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>  -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
>   	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
>   	install -d $(DESTDIR)$(PREFIX)/share/applications

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini
  2009-05-13 13:07   ` Frans Meulenbroeks
@ 2009-05-13 14:02     ` Koen Kooi
  0 siblings, 0 replies; 78+ messages in thread
From: Koen Kooi @ 2009-05-13 14:02 UTC (permalink / raw)
  To: openembedded-devel

On 13-05-09 15:07, Frans Meulenbroeks wrote:
> It was my impression that removing checksums from checksums.ini was not done.
> Am I mistaken? Please enlighten me.

indeed, this one needs to get dropped from the series.

regards,

Koen




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

* Re: [STABLE][PATCH 04/37] gpe-nmf: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 04/37] gpe-nmf: " koen.kooi
@ 2009-05-13 14:03   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:03 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1306 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
> index 42b5c36..b6dc568 100644
> --- a/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
> +++ b/recipes/gpe-nmf/gpe-nmf-0.17/fix_makefiles.patch
> @@ -8,8 +8,8 @@ diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/backend/Makefile gpe-nmf-0.17/backend
>  -install_program: all
>  +install-program: all
>   	mkdir -p $(DESTDIR)$(PREFIX)/lib
> - 	install -s $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND)
> - 	for i in $(CODECS); do install -s $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done
> + 	install $(BACKEND) $(DESTDIR)$(PREFIX)/lib/$(BACKEND)
> + 	for i in $(CODECS); do install $$i $(DESTDIR)$(PREFIX)/lib/gpe-nmf/decoders/$$i; done
>  diff -urNd ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile gpe-nmf-0.17/Makefile
>  --- ../gpe-nmf-0.17-r0/gpe-nmf-0.17/Makefile	2004-08-03 03:31:46.000000000 +0100
>  +++ gpe-nmf-0.17/Makefile	2004-08-03 12:37:33.000000000 +0100

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 05/37] gpe-lights: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 05/37] gpe-lights: " koen.kooi
@ 2009-05-13 14:04   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:04 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2050 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  .../gpe-lights/gpe-lights-0.12/fix-makefiles.patch |    2 +-
>  .../gpe-lights/gpe-lights-0.13/fix-makefiles.patch |    2 +-
>  2 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch b/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
> index d2fdd54..4ec5b3a 100644
> --- a/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
> +++ b/recipes/gpe-lights/gpe-lights-0.12/fix-makefiles.patch
> @@ -278,7 +278,7 @@ diff -urNd ../gpe-lights-0.12-r0/gpe-lights-0.12/Makefile gpe-lights-0.12/Makefi
>   install-program: all 
>  -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>  -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
>   	install -d $(DESTDIR)$(PREFIX)/share/applications
>   	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
> diff --git a/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch b/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
> index bb0ec19..3c4581e 100644
> --- a/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
> +++ b/recipes/gpe-lights/gpe-lights-0.13/fix-makefiles.patch
> @@ -278,7 +278,7 @@ diff -urNd ../gpe-lights-0.12-r0/gpe-lights-0.12/Makefile gpe-lights-0.12/Makefi
>   install-program: all 
>  -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>  -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
>   	install -d $(DESTDIR)$(PREFIX)/share/applications
>   	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 00/37] Fix install -s problems
  2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
                   ` (36 preceding siblings ...)
  2009-05-13  9:39 ` [STABLE][PATCH 37/37] monit: add patch to remove -s in install koen.kooi
@ 2009-05-13 14:05 ` Koen Kooi
  37 siblings, 0 replies; 78+ messages in thread
From: Koen Kooi @ 2009-05-13 14:05 UTC (permalink / raw)
  To: openembedded-devel

On 13-05-09 11:38, koen.kooi@gmail.com wrote:
> Hi,
>
> In preparation to merging the coreutils-native improvements to stable/2009 we need to fix the associated problems with it. This series cherry-picks 37 patches from .dev to do so.

And in the form of a patchwork bundle (minus rejected patches):

http://patchwork.openembedded.org/bundle/koen/coreutils-install-fixes/




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

* Re: [STABLE][PATCH 06/37] gpe-go: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 06/37] gpe-go: " koen.kooi
@ 2009-05-13 14:05   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:05 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1096 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-go/gpe-go-0.05/fix-make.patch |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gpe-go/gpe-go-0.05/fix-make.patch b/recipes/gpe-go/gpe-go-0.05/fix-make.patch
> index dab1c7f..996c51e 100644
> --- a/recipes/gpe-go/gpe-go-0.05/fix-make.patch
> +++ b/recipes/gpe-go/gpe-go-0.05/fix-make.patch
> @@ -212,7 +212,7 @@ diff -urNd ../gpe-go-0.05-r0/gpe-go-0.05/Makefile gpe-go-0.05/Makefile
>   install-program: $(PACKAGE).desktop all 
>  -	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>  -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -s -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
>   	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
>   	install -d $(DESTDIR)$(PREFIX)/share/applications

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 07/37] gpe-soundbite: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 07/37] gpe-soundbite: " koen.kooi
@ 2009-05-13 14:05   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:05 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1063 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-soundbite/files/makefile-fix.patch |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gpe-soundbite/files/makefile-fix.patch b/recipes/gpe-soundbite/files/makefile-fix.patch
> index c2f14d1..69a82b3 100644
> --- a/recipes/gpe-soundbite/files/makefile-fix.patch
> +++ b/recipes/gpe-soundbite/files/makefile-fix.patch
> @@ -5,7 +5,7 @@
>   
>   install-program: all $(PACKAGE)-play.desktop  $(PACKAGE)-record.desktop
>  -	install -Ds $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	install -D -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   	install -D $(PACKAGE)-play $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)-play
>   	install -D $(PACKAGE)-record $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)-record
>   	mkdir -p $(DESTDIR)$(PREFIX)/share/applications

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 08/37] gpe-calculator: don't strip during install - this breaks now with new install - strip is done in packaging
  2009-05-13  9:38 ` [STABLE][PATCH 08/37] gpe-calculator: " koen.kooi
@ 2009-05-13 14:06   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:06 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1071 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  .../gpe-calculator-0.2/fix_makefile.patch          |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch b/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
> index b8c6d1a..8b4ebf7 100644
> --- a/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
> +++ b/recipes/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch
> @@ -41,7 +41,7 @@ diff -urNd ../gpe-calculator-0.2-r0/gpe-calculator-0.2/Makefile gpe-calculator-0
>   	install -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications
>  -	strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>  +	mkdir -p $(DESTDIR)$(PREFIX)/bin
> -+	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
>   
>   clean:
>   	rm -f $(PACKAGE) $(OBJS) $(DEPS)

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install koen.kooi
@ 2009-05-13 14:06   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:06 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2248 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  .../libdisplaymigration/files/makefile-fix.patch   |   11 +++++++++++
>  .../libdisplaymigration_0.28.bb                    |    2 ++
>  .../libdisplaymigration_0.99.bb                    |    2 ++
>  3 files changed, 15 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/libdisplaymigration/files/makefile-fix.patch
> 
> diff --git a/recipes/libdisplaymigration/files/makefile-fix.patch b/recipes/libdisplaymigration/files/makefile-fix.patch
> new file mode 100644
> index 0000000..5a79ab2
> --- /dev/null
> +++ b/recipes/libdisplaymigration/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile	2005-02-28 20:32:13.000000000 +0100
> ++++ libdisplaymigration-0.99/Makefile	2009-05-01 14:26:17.000000000 +0200
> +@@ -36,7 +36,7 @@
> + 
> + install-program: $(SONAME)
> + 	install -d $(DESTDIR)$(PREFIX)/lib
> +-	install -s $(SONAME) $(DESTDIR)$(PREFIX)/lib/$(SONAME)
> ++	install $(SONAME) $(DESTDIR)$(PREFIX)/lib/$(SONAME)
> + 
> + install-devel:
> + 	for i in $(HEADERS); do install -m 644 -D $$i $(DESTDIR)$(PREFIX)/include/$$i; done
> diff --git a/recipes/libdisplaymigration/libdisplaymigration_0.28.bb b/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
> index e92cf57..8f85dff 100644
> --- a/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
> +++ b/recipes/libdisplaymigration/libdisplaymigration_0.28.bb
> @@ -7,6 +7,8 @@ PR = "r1"
>  
>  inherit pkgconfig gpe
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> +
>  headers = "displaymigration.h auth.h crypt.h"
>  
>  do_install() {
> diff --git a/recipes/libdisplaymigration/libdisplaymigration_0.99.bb b/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
> index 0563ba3..033005d 100644
> --- a/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
> +++ b/recipes/libdisplaymigration/libdisplaymigration_0.99.bb
> @@ -7,6 +7,8 @@ PR = "r0"
>  
>  inherit pkgconfig gpe
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> +
>  headers = "displaymigration.h auth.h crypt.h"
>  
>  do_install() {

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 10/37] gpe-confd: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 10/37] gpe-confd: " koen.kooi
@ 2009-05-13 14:07   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:07 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1517 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-confd/files/makefile-fix.patch |   11 +++++++++++
>  recipes/gpe-confd/gpe-confd_0.16.bb        |    1 +
>  2 files changed, 12 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/gpe-confd/files/makefile-fix.patch
> 
> diff --git a/recipes/gpe-confd/files/makefile-fix.patch b/recipes/gpe-confd/files/makefile-fix.patch
> new file mode 100644
> index 0000000..ac3483e
> --- /dev/null
> +++ b/recipes/gpe-confd/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2004-08-29 13:59:52.000000000 +0200
> ++++ gpe-confd-0.16/Makefile	2009-05-01 15:33:00.000000000 +0200
> +@@ -32,7 +32,7 @@
> + 
> + install-program: $(PACKAGE)
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)/etc/X11/Xsession.d
> + 	install $(PACKAGE).xs $(DESTDIR)/etc/X11/Xsession.d/70gpe-confd
> + 
> diff --git a/recipes/gpe-confd/gpe-confd_0.16.bb b/recipes/gpe-confd/gpe-confd_0.16.bb
> index b9c3102..6b50107 100644
> --- a/recipes/gpe-confd/gpe-confd_0.16.bb
> +++ b/recipes/gpe-confd/gpe-confd_0.16.bb
> @@ -6,3 +6,4 @@ DESCRIPTION = "GPE configuration daemon"
>  LICENSE = "GPL"
>  PR = "r1"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 11/37] xst: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 11/37] xst: " koen.kooi
@ 2009-05-13 14:10   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:10 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1418 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/xst/files/makefile-fix.patch |   11 +++++++++++
>  recipes/xst/xst_0.15.bb              |    2 ++
>  2 files changed, 13 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/xst/files/makefile-fix.patch
> 
> diff --git a/recipes/xst/files/makefile-fix.patch b/recipes/xst/files/makefile-fix.patch
> new file mode 100644
> index 0000000..3af2d57
> --- /dev/null
> +++ b/recipes/xst/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2005-08-27 01:13:47.000000000 +0200
> ++++ xst-0.15/Makefile	2009-05-01 15:48:15.000000000 +0200
> +@@ -32,7 +32,7 @@
> + 
> + install-program: $(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 
> + clean:
> + 	rm -f $(PACKAGE) $(OBJS) $(DEPS)
> diff --git a/recipes/xst/xst_0.15.bb b/recipes/xst/xst_0.15.bb
> index 76ab7af..6d6156e 100644
> --- a/recipes/xst/xst_0.15.bb
> +++ b/recipes/xst/xst_0.15.bb
> @@ -5,3 +5,5 @@ SECTION = "gpe"
>  DESCRIPTION = "GPE configuration utility"
>  LICENSE = "GPL"
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 12/37] gpe-su: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 12/37] gpe-su: " koen.kooi
@ 2009-05-13 14:12   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:12 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1588 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-su/files/makefile-fix.patch |   11 +++++++++++
>  recipes/gpe-su/gpe-su.inc               |    2 ++
>  2 files changed, 13 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/gpe-su/files/makefile-fix.patch
> 
> diff --git a/recipes/gpe-su/files/makefile-fix.patch b/recipes/gpe-su/files/makefile-fix.patch
> new file mode 100644
> index 0000000..cce98b1
> --- /dev/null
> +++ b/recipes/gpe-su/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2008-07-14 22:34:47.000000000 +0200
> ++++ gpe-su-0.20/Makefile	2009-05-01 16:02:11.000000000 +0200
> +@@ -34,7 +34,7 @@
> + 
> + install-program: all $(PACKAGE).desktop
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -m 755 -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install -m 755 $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
> + 	install -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
> diff --git a/recipes/gpe-su/gpe-su.inc b/recipes/gpe-su/gpe-su.inc
> index 3daa0b9..287915e 100644
> --- a/recipes/gpe-su/gpe-su.inc
> +++ b/recipes/gpe-su/gpe-su.inc
> @@ -6,3 +6,5 @@ DEPENDS = "libgpewidget virtual/libintl"
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
>  inherit gpe pkgconfig
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 13/37] minilite: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 13/37] minilite: " koen.kooi
@ 2009-05-13 14:13   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:13 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 4462 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/minilite/files/makefile-fix.patch |   11 +++++++++++
>  recipes/minilite/minilite_0.41.bb         |    2 ++
>  recipes/minilite/minilite_0.43.bb         |    2 ++
>  recipes/minilite/minilite_0.44.bb         |    2 ++
>  recipes/minilite/minilite_0.47.bb         |    2 ++
>  recipes/minilite/minilite_0.48.bb         |    2 ++
>  recipes/minilite/minilite_0.49.bb         |    2 ++
>  recipes/minilite/minilite_0.50.bb         |    2 ++
>  8 files changed, 25 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/minilite/files/makefile-fix.patch
> 
> diff --git a/recipes/minilite/files/makefile-fix.patch b/recipes/minilite/files/makefile-fix.patch
> new file mode 100644
> index 0000000..1be6cea
> --- /dev/null
> +++ b/recipes/minilite/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2006-01-16 22:51:34.000000000 +0100
> ++++ minilite-050/Makefile	2009-05-01 16:36:32.000000000 +0200
> +@@ -45,7 +45,7 @@
> + 
> + install-program: all
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	$(INSTALL) -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
> + 	$(INSTALL) -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications/$(PACKAGE).desktop
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps/
> diff --git a/recipes/minilite/minilite_0.41.bb b/recipes/minilite/minilite_0.41.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.41.bb
> +++ b/recipes/minilite/minilite_0.41.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.43.bb b/recipes/minilite/minilite_0.43.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.43.bb
> +++ b/recipes/minilite/minilite_0.43.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.44.bb b/recipes/minilite/minilite_0.44.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.44.bb
> +++ b/recipes/minilite/minilite_0.44.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.47.bb b/recipes/minilite/minilite_0.47.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.47.bb
> +++ b/recipes/minilite/minilite_0.47.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.48.bb b/recipes/minilite/minilite_0.48.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.48.bb
> +++ b/recipes/minilite/minilite_0.48.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.49.bb b/recipes/minilite/minilite_0.49.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.49.bb
> +++ b/recipes/minilite/minilite_0.49.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"
> diff --git a/recipes/minilite/minilite_0.50.bb b/recipes/minilite/minilite_0.50.bb
> index 0f5b126..997ae93 100644
> --- a/recipes/minilite/minilite_0.50.bb
> +++ b/recipes/minilite/minilite_0.50.bb
> @@ -7,4 +7,6 @@ DESCRIPTION = "GPE Screen light control dockapp"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1" 
> +
>  export CVSBUILD="no"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 14/37] keylaunch: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 14/37] keylaunch: " koen.kooi
@ 2009-05-13 14:13   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:13 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 967 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/keylaunch/files/makefile-fix.patch |    2 +-
>  1 files changed, 1 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/keylaunch/files/makefile-fix.patch b/recipes/keylaunch/files/makefile-fix.patch
> index d9c57e0..0e53e4e 100644
> --- a/recipes/keylaunch/files/makefile-fix.patch
> +++ b/recipes/keylaunch/files/makefile-fix.patch
> @@ -7,7 +7,7 @@
>  -	install -sD $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
>  -	install -D -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc
>  +	install -d $(DESTDIR)$(PREFIX)/bin
> -+	install -s $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
> ++	install $(PROG) $(DESTDIR)$(PREFIX)/bin/$(PROG)
>  +	install -d $(DESTDIR)/etc
>  +	install -m 644 $(PROG)rc $(DESTDIR)/etc/$(PROG)rc
>   	install -d $(DESTDIR)/etc/X11/Xsession.d

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 15/37] gpe-taskmanager: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 15/37] gpe-taskmanager: " koen.kooi
@ 2009-05-13 14:14   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:14 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3191 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-taskmanager/files/makefile-fix.patch |   11 +++++++++++
>  recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb  |    2 ++
>  recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb  |    2 ++
>  recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb  |    2 ++
>  recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb  |    1 +
>  5 files changed, 18 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/gpe-taskmanager/files/makefile-fix.patch
> 
> diff --git a/recipes/gpe-taskmanager/files/makefile-fix.patch b/recipes/gpe-taskmanager/files/makefile-fix.patch
> new file mode 100644
> index 0000000..7b26bed
> --- /dev/null
> +++ b/recipes/gpe-taskmanager/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2006-04-10 13:41:32.000000000 +0200
> ++++ gpe-taskmanager-0.20/Makefile	2009-05-01 22:03:35.000000000 +0200
> +@@ -32,7 +32,7 @@
> + 
> + install-program: all all-desktop
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
> index 1f31a4d..6b03ad4 100644
> --- a/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
> +++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.17.bb
> @@ -7,3 +7,5 @@ SECTION = "gpe"
>  DESCRIPTION = "GPE task manager"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
> index 1f31a4d..6b03ad4 100644
> --- a/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
> +++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.18.bb
> @@ -7,3 +7,5 @@ SECTION = "gpe"
>  DESCRIPTION = "GPE task manager"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
> index 1f31a4d..6b03ad4 100644
> --- a/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
> +++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.19.bb
> @@ -7,3 +7,5 @@ SECTION = "gpe"
>  DESCRIPTION = "GPE task manager"
>  
>  SRC_URI = "${GPE_MIRROR}/${PN}-${PV}.tar.gz"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb b/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
> index 7d0ff8e..e02afbf 100644
> --- a/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
> +++ b/recipes/gpe-taskmanager/gpe-taskmanager_0.20.bb
> @@ -7,3 +7,4 @@ inherit gpe
>  
>  SRC_URI += "file://setlocale.patch;patch=1"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 16/37] teleport: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 16/37] teleport: " koen.kooi
@ 2009-05-13 14:14   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:14 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2171 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/teleport/files/makefile-fix.patch |   13 +++++++++++++
>  recipes/teleport/teleport_0.33.bb         |    2 ++
>  recipes/teleport/teleport_0.34.bb         |    2 ++
>  3 files changed, 17 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/teleport/files/makefile-fix.patch
> 
> diff --git a/recipes/teleport/files/makefile-fix.patch b/recipes/teleport/files/makefile-fix.patch
> new file mode 100644
> index 0000000..9dc232d
> --- /dev/null
> +++ b/recipes/teleport/files/makefile-fix.patch
> @@ -0,0 +1,13 @@
> +--- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
> ++++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
> +@@ -37,8 +37,8 @@
> + 
> + install-program: all
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
> +-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
> ++	install teleport $(DESTDIR)$(PREFIX)/bin/
> ++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/teleport/teleport_0.33.bb b/recipes/teleport/teleport_0.33.bb
> index 8ebb780..918902e 100644
> --- a/recipes/teleport/teleport_0.33.bb
> +++ b/recipes/teleport/teleport_0.33.bb
> @@ -10,3 +10,5 @@ PR = "r2"
>  SRC_URI =+ "file://crypt.c \
>  		file://fix-desktop.patch;patch=1 \
>  		file://remove-tododb.patch;pnum=1;patch=1"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/teleport/teleport_0.34.bb b/recipes/teleport/teleport_0.34.bb
> index ce982c9..3732254 100644
> --- a/recipes/teleport/teleport_0.34.bb
> +++ b/recipes/teleport/teleport_0.34.bb
> @@ -3,3 +3,5 @@ LICENSE = "GPL"
>  DESCRIPTION = "Teleport app"
>  DEPENDS = "gtk+ libgpewidget libdisplaymigration libgcrypt sqlite"
>  PRIORITY = "optional"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 17/37] gpe-autostarter: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 17/37] gpe-autostarter: " koen.kooi
@ 2009-05-13 14:15   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:15 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3736 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-autostarter/files/makefile-fix.patch |   11 +++++++++++
>  recipes/gpe-autostarter/gpe-autostarter_0.11.bb  |    4 +++-
>  recipes/gpe-autostarter/gpe-autostarter_0.12.bb  |    4 +++-
>  recipes/gpe-autostarter/gpe-autostarter_0.6.bb   |    2 ++
>  recipes/gpe-autostarter/gpe-autostarter_0.7.bb   |    2 ++
>  recipes/gpe-autostarter/gpe-autostarter_svn.bb   |    2 ++
>  6 files changed, 23 insertions(+), 2 deletions(-)
>  create mode 100644 recipes/gpe-autostarter/files/makefile-fix.patch
> 
> diff --git a/recipes/gpe-autostarter/files/makefile-fix.patch b/recipes/gpe-autostarter/files/makefile-fix.patch
> new file mode 100644
> index 0000000..97ee907
> --- /dev/null
> +++ b/recipes/gpe-autostarter/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2006-08-23 15:08:36.000000000 +0200
> ++++ gpe-autostarter-0.12/Makefile	2009-05-01 22:32:50.000000000 +0200
> +@@ -28,7 +28,7 @@
> + 
> + install-program: all
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
> + 	install -d $(DESTDIR)/etc/X11/Xsession.d
> + 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/50$(PACKAGE)
> + 
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.11.bb b/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
> index b228b3d..26a9e97 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_0.11.bb
> @@ -5,4 +5,6 @@ LICENSE = "GPL"
>  
>  inherit gpe
>  
> -SRC_URI += " file://dbus-new-api.patch;patch=1"
> +SRC_URI += "file://dbus-new-api.patch;patch=1 \
> +	    file://makefile-fix.patch;patch=1"
> +
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.12.bb b/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
> index c47f757..4c4293e 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_0.12.bb
> @@ -5,4 +5,6 @@ RDEPENDS = "hotplug-dbus"
>  
>  inherit gpe
>  
> -SRC_URI += "file://wireless.patch;patch=1"
> +SRC_URI += "file://wireless.patch;patch=1 \
> +	    file://makefile-fix.patch;patch=1"
> +
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.6.bb b/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
> index ef7f255..0ba68b7 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_0.6.bb
> @@ -4,3 +4,5 @@ DEPENDS = "glib-2.0 dbus-glib hotplug-dbus"
>  RDEPENDS = "hotplug-dbus"
>  
>  inherit gpe
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_0.7.bb b/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
> index f92b5df..9e92740 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_0.7.bb
> @@ -4,3 +4,5 @@ DEPENDS = "glib-2.0 dbus-glib hotplug-dbus virtual/libx11"
>  RDEPENDS = "hotplug-dbus"
>  
>  inherit gpe
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_svn.bb b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> index 2742952..8d275b5 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> @@ -8,6 +8,8 @@ inherit gpe
>  SRC_URI = "${GPE_SVN} \
>             file://svn-build.patch;patch=1"
>  
> +SRC_URI += "file://makefile-fix.patch;patch=1"
> +
>  S = "${WORKDIR}/${PN}"
>  
>  export CVSBUILD="no"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 18/37] gpe-soundserver: Makefile fix - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 18/37] gpe-soundserver: " koen.kooi
@ 2009-05-13 14:15   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:15 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1817 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-soundserver/files/makefile-fix.patch |   13 +++++++++++++
>  recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb |    3 ++-
>  2 files changed, 15 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/gpe-soundserver/files/makefile-fix.patch
> 
> diff --git a/recipes/gpe-soundserver/files/makefile-fix.patch b/recipes/gpe-soundserver/files/makefile-fix.patch
> new file mode 100644
> index 0000000..c150886
> --- /dev/null
> +++ b/recipes/gpe-soundserver/files/makefile-fix.patch
> @@ -0,0 +1,13 @@
> +--- /tmp/Makefile.old	2004-08-18 16:28:08.000000000 +0200
> ++++ gpe-soundserver-0.4-1/Makefile	2009-05-01 22:44:27.000000000 +0200
> +@@ -37,8 +37,8 @@
> + 
> + install-program: all
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> +-	install -s wrapesd $(DESTDIR)$(PREFIX)/bin/wrapesd
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install wrapesd $(DESTDIR)$(PREFIX)/bin/wrapesd
> + 	install -d $(DESTDIR)/etc/X11/Xsession.d
> + 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/50sound-server
> + 
> diff --git a/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb b/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
> index e239f21..1ec4cf3 100644
> --- a/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
> +++ b/recipes/gpe-soundserver/gpe-soundserver_0.4-1.bb
> @@ -4,4 +4,5 @@ inherit gpe
>  
>  DEPENDS = "virtual/libx11 esound"
>  
> -SRC_URI += "file://makefile-breakage.patch;patch=1"
> +SRC_URI += "file://makefile-breakage.patch;patch=1 \
> +	    file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles - don't strip on install
  2009-05-13  9:38 ` [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles " koen.kooi
@ 2009-05-13 14:15   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:15 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2719 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-aerial/files/fix_makefile.patch |    2 +-
>  recipes/gpe-aerial/gpe-aerial_0.2.11.bb     |    3 ++-
>  recipes/gpe-aerial/gpe-aerial_0.2.12.bb     |    3 ++-
>  recipes/gpe-aerial/gpe-aerial_0.2.13.bb     |    3 ++-
>  4 files changed, 7 insertions(+), 4 deletions(-)
> 
> diff --git a/recipes/gpe-aerial/files/fix_makefile.patch b/recipes/gpe-aerial/files/fix_makefile.patch
> index dec0099..bbb0840 100644
> --- a/recipes/gpe-aerial/files/fix_makefile.patch
> +++ b/recipes/gpe-aerial/files/fix_makefile.patch
> @@ -15,7 +15,7 @@ diff -urNd ../gpe-aerial-0.2.11-r0/gpe-aerial-0.2.11/Makefile gpe-aerial-0.2.11/
>   	mkdir -p $(DESTDIR)/$(PREFIX)/bin
>  -	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
>  -	$(STRIP) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> -+	$(INSTALL) -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
> ++	$(INSTALL) $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/
>   	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps/
>   	for i in $(PIXMAPS); do install -m 644 -D pixmaps/$$i $(DESTDIR)$(PREFIX)/share/pixmaps/$$i; done
>   	mkdir -p $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.11.bb b/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
> index 543dc09..b61331f 100644
> --- a/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
> +++ b/recipes/gpe-aerial/gpe-aerial_0.2.11.bb
> @@ -9,4 +9,5 @@ SECTION = "gpe"
>  PRIORITY = "optional"
>  LICENSE = "GPL"
>  
> -SRC_URI += "file://fix_makefile.patch;patch=1"
> +SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
> +	    file://fix_makefile.patch;patch=1"
> diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.12.bb b/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
> index 543dc09..b61331f 100644
> --- a/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
> +++ b/recipes/gpe-aerial/gpe-aerial_0.2.12.bb
> @@ -9,4 +9,5 @@ SECTION = "gpe"
>  PRIORITY = "optional"
>  LICENSE = "GPL"
>  
> -SRC_URI += "file://fix_makefile.patch;patch=1"
> +SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
> +	    file://fix_makefile.patch;patch=1"
> diff --git a/recipes/gpe-aerial/gpe-aerial_0.2.13.bb b/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
> index 1f79de8..84f7985 100644
> --- a/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
> +++ b/recipes/gpe-aerial/gpe-aerial_0.2.13.bb
> @@ -10,4 +10,5 @@ SECTION = "gpe"
>  PRIORITY = "optional"
>  LICENSE = "GPL"
>  
> -SRC_URI += "file://iconlist.patch;patch=1;pnum=0"
> \ No newline at end of file
> +SRC_URI += "file://iconlist.patch;patch=1;pnum=0 \
> +	    file://fix_makefile.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream
  2009-05-13  9:39 ` [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream koen.kooi
@ 2009-05-13 14:17   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:17 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 788 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-autostarter/gpe-autostarter_svn.bb |    2 --
>  1 files changed, 0 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gpe-autostarter/gpe-autostarter_svn.bb b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> index 8d275b5..2742952 100644
> --- a/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> +++ b/recipes/gpe-autostarter/gpe-autostarter_svn.bb
> @@ -8,8 +8,6 @@ inherit gpe
>  SRC_URI = "${GPE_SVN} \
>             file://svn-build.patch;patch=1"
>  
> -SRC_URI += "file://makefile-fix.patch;patch=1"
> -
>  S = "${WORKDIR}/${PN}"
>  
>  export CVSBUILD="no"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme
  2009-05-13  9:39 ` [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme koen.kooi
@ 2009-05-13 14:18   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:18 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1802 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Cliff Brake <cbrake@bec-systems.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gnome/libart-lgpl.inc       |    4 +++-
>  recipes/gnome/libart-lgpl_2.3.16.bb |    3 ++-
>  recipes/gnome/libart-lgpl_2.3.19.bb |    3 ++-
>  3 files changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/recipes/gnome/libart-lgpl.inc b/recipes/gnome/libart-lgpl.inc
> index 710656b..8ff3b21 100644
> --- a/recipes/gnome/libart-lgpl.inc
> +++ b/recipes/gnome/libart-lgpl.inc
> @@ -4,6 +4,8 @@ LICENSE = "LGPL"
>  
>  ART_CONFIG = "${HOST_ARCH}/art_config.h"
>  
> +INC_PR = "r3"
> +
>  # can't use gnome.oeclass due to _ in filename
>  SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
>         file://${ART_CONFIG} \
> @@ -29,7 +31,7 @@ EXTRA_OECONF = "--disable-gtk-doc"
>  # enforced.
>  export MKDIR_P = "mkdir -p"
>  export mkdir_p = "mkdir -p"
> -export INSTALL = "${STAGING_BINDIR_NATIVE}/install-sh"
> +export INSTALL = "${STAGING_BINDIR_NATIVE}/install"
>  
>  do_stage() {
>  	autotools_stage_includes
> diff --git a/recipes/gnome/libart-lgpl_2.3.16.bb b/recipes/gnome/libart-lgpl_2.3.16.bb
> index 3605a38..99f8f8b 100644
> --- a/recipes/gnome/libart-lgpl_2.3.16.bb
> +++ b/recipes/gnome/libart-lgpl_2.3.16.bb
> @@ -1,3 +1,4 @@
>  require libart-lgpl.inc
>  
> -PR = "r2"
> +PR = "${INC_PR}.1"
> +
> diff --git a/recipes/gnome/libart-lgpl_2.3.19.bb b/recipes/gnome/libart-lgpl_2.3.19.bb
> index 3605a38..99f8f8b 100644
> --- a/recipes/gnome/libart-lgpl_2.3.19.bb
> +++ b/recipes/gnome/libart-lgpl_2.3.19.bb
> @@ -1,3 +1,4 @@
>  require libart-lgpl.inc
>  
> -PR = "r2"
> +PR = "${INC_PR}.1"
> +

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 24/37] xdemineur: Don't do "install -s"
  2009-05-13  9:39 ` [STABLE][PATCH 24/37] xdemineur: Don't do "install -s" koen.kooi
@ 2009-05-13 14:19   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:19 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1418 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Florian Boor <florian.boor@kernelconcepts.de>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/xdemineur/xdemineur-2.1.1/Makefile |    2 +-
>  recipes/xdemineur/xdemineur_2.1.1.bb       |    1 +
>  2 files changed, 2 insertions(+), 1 deletions(-)
> 
> diff --git a/recipes/xdemineur/xdemineur-2.1.1/Makefile b/recipes/xdemineur/xdemineur-2.1.1/Makefile
> index 10d34b2..218df56 100644
> --- a/recipes/xdemineur/xdemineur-2.1.1/Makefile
> +++ b/recipes/xdemineur/xdemineur-2.1.1/Makefile
> @@ -22,7 +22,7 @@ xdemineur: $(OBJS)
>  
>  install: all
>  	install -d $(DESTDIR)$(PREFIX)/bin
> -	install -s xdemineur $(DESTDIR)$(PREFIX)/bin/xdemineur
> +	install xdemineur $(DESTDIR)$(PREFIX)/bin/xdemineur
>  	install -D -m 644 xdemineur.xpm $(DESTDIR)$(PREFIX)/share/pixmaps/xdemineur.xpm
>  	install -D -m 644 familiar/xdemineur.png $(DESTDIR)$(PREFIX)/share/pixmaps/xdemineur.png
>  	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/xdemineur/xdemineur_2.1.1.bb b/recipes/xdemineur/xdemineur_2.1.1.bb
> index 73e3276..23846df 100644
> --- a/recipes/xdemineur/xdemineur_2.1.1.bb
> +++ b/recipes/xdemineur/xdemineur_2.1.1.bb
> @@ -1,5 +1,6 @@
>  inherit gpe
>  LICENSE = "BSD-X"
> +PR = "r1"
>  
>  DEPENDS = "virtual/libx11 libxpm"
>  SECTION = "gpe/games"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools
  2009-05-13  9:39 ` [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools koen.kooi
@ 2009-05-13 14:19   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:19 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1004 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Cliff Brake <cbrake@bec-systems.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gnome/libart-lgpl.inc |    3 +--
>  1 files changed, 1 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/gnome/libart-lgpl.inc b/recipes/gnome/libart-lgpl.inc
> index 8ff3b21..1af5b0e 100644
> --- a/recipes/gnome/libart-lgpl.inc
> +++ b/recipes/gnome/libart-lgpl.inc
> @@ -4,7 +4,7 @@ LICENSE = "LGPL"
>  
>  ART_CONFIG = "${HOST_ARCH}/art_config.h"
>  
> -INC_PR = "r3"
> +INC_PR = "r4"
>  
>  # can't use gnome.oeclass due to _ in filename
>  SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-${PV}.tar.bz2 \
> @@ -31,7 +31,6 @@ EXTRA_OECONF = "--disable-gtk-doc"
>  # enforced.
>  export MKDIR_P = "mkdir -p"
>  export mkdir_p = "mkdir -p"
> -export INSTALL = "${STAGING_BINDIR_NATIVE}/install"
>  
>  do_stage() {
>  	autotools_stage_includes

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 26/37] gsoko: don't do "install -s"
  2009-05-13  9:39 ` [STABLE][PATCH 26/37] gsoko: don't do "install -s" koen.kooi
@ 2009-05-13 14:19   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:19 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1814 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Florian Boor <florian.boor@kernelconcepts.de>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch |   13 +++++++++++++
>  recipes/gsoko/gsoko_0.4.2-gpe6.bb                  |    1 +
>  2 files changed, 14 insertions(+), 0 deletions(-)
> 
> diff --git a/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch b/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
> index 78506a8..f734be4 100644
> --- a/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
> +++ b/recipes/gsoko/gsoko-0.4.2-gpe6/fix_makefiles.patch
> @@ -27,3 +27,16 @@ diff -urNd ../gsoko-0.4.2-gpe5-r0/gsoko-0.4.2-gpe5/Makefile gsoko-0.4.2-gpe5/Mak
>   
>   clean:
>   	rm -f *.o
> +Index: Makefile
> +===================================================================
> +--- a/Makefile	(Revision 9905)
> ++++ b/Makefile	(Arbeitskopie)
> +@@ -29,7 +29,7 @@
> + 
> + install-program: gsoko gsoko.desktop
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s gsoko $(DESTDIR)$(PREFIX)/bin/gsoko
> ++	install  gsoko $(DESTDIR)$(PREFIX)/bin/gsoko
> + 	install -d $(DESTDIR)$(PREFIX)/share/gsoko/img
> + 	install -d $(DESTDIR)$(PREFIX)/share/gsoko/levels
> + 	for i in $(LEVELS); do install -m 644 levels/$$i.lev $(DESTDIR)$(PREFIX)/share/gsoko/levels/$$i.lev; done
> diff --git a/recipes/gsoko/gsoko_0.4.2-gpe6.bb b/recipes/gsoko/gsoko_0.4.2-gpe6.bb
> index 0d12a6f..6a34be2 100644
> --- a/recipes/gsoko/gsoko_0.4.2-gpe6.bb
> +++ b/recipes/gsoko/gsoko_0.4.2-gpe6.bb
> @@ -4,5 +4,6 @@ DEPENDS = "gtk+ libgpewidget"
>  SECTION = "gpe"
>  DESCRIPTION = "Sokoban game for GTK"
>  PRIORITY = "optional"
> +PR = "r1"
>  
>  SRC_URI += "file://fix_makefiles.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 27/37] gpe-plucker: Fix install
  2009-05-13  9:39 ` [STABLE][PATCH 27/37] gpe-plucker: Fix install koen.kooi
@ 2009-05-13 14:20   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:20 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 979 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-plucker/gpe-plucker_0.4.bb |    9 ++++++---
>  1 files changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/recipes/gpe-plucker/gpe-plucker_0.4.bb b/recipes/gpe-plucker/gpe-plucker_0.4.bb
> index 8e90d2f..4a2937a 100644
> --- a/recipes/gpe-plucker/gpe-plucker_0.4.bb
> +++ b/recipes/gpe-plucker/gpe-plucker_0.4.bb
> @@ -5,10 +5,13 @@ DEPENDS = "gtk+ libgpewidget gpe-icons"
>  RDEPENDS = "gpe-icons"
>  SECTION = "gpe"
>  PRIORITY = "optional"
> +PR = "r3"
> +
> +SRC_URI += " \
> +           file://plucker-no-host-includes.patch;patch=1 \
> +           file://fix-install.patch;patch=1 \
> +           "
>  
> -SRC_URI += " file://plucker-no-host-includes.patch;patch=1"
>  PARALLEL_MAKE=""
>  EXTRA_OEMAKE="RANLIB=${RANLIB}"
>  
> -PR = "r2"
> -

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 28/37] gpe-plucker: Add patch
  2009-05-13  9:39 ` [STABLE][PATCH 28/37] gpe-plucker: Add patch koen.kooi
@ 2009-05-13 14:20   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:20 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1281 bytes --]

Acked-by: Philip Balister <philip@balister.org>


koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-plucker/gpe-plucker/fix-install.patch |   13 +++++++++++++
>  1 files changed, 13 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/gpe-plucker/gpe-plucker/fix-install.patch
> 
> diff --git a/recipes/gpe-plucker/gpe-plucker/fix-install.patch b/recipes/gpe-plucker/gpe-plucker/fix-install.patch
> new file mode 100644
> index 0000000..cfd5bc4
> --- /dev/null
> +++ b/recipes/gpe-plucker/gpe-plucker/fix-install.patch
> @@ -0,0 +1,13 @@
> +diff --git gpe-plucker-0.4/Makefile-orig gpe-plucker-0.4/Makefile
> +index c68b5ab..abf97bb 100644
> +--- gpe-plucker-0.4/Makefile-orig
> ++++ gpe-plucker-0.4/Makefile
> +@@ -43,7 +43,7 @@ $(PACKAGE): $(OBJS) $(LIB)
> + 
> + install-program: all $(PACKAGE).desktop
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
> + 	#mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s
  2009-05-13  9:39 ` [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s koen.kooi
@ 2009-05-13 14:21   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:21 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1697 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-announce/files/fix-install.diff |   13 +++++++++++++
>  recipes/gpe-announce/gpe-announce_0.13.bb   |    5 ++++-
>  2 files changed, 17 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/gpe-announce/files/fix-install.diff
> 
> diff --git a/recipes/gpe-announce/files/fix-install.diff b/recipes/gpe-announce/files/fix-install.diff
> new file mode 100644
> index 0000000..3827f55
> --- /dev/null
> +++ b/recipes/gpe-announce/files/fix-install.diff
> @@ -0,0 +1,13 @@
> +diff --git gpe-announce-0.13/Makefile-orig gpe-announce-0.13/Makefile
> +index 56e016a..f8bade4 100644
> +--- gpe-announce-0.13/Makefile-orig
> ++++ gpe-announce-0.13/Makefile
> +@@ -47,7 +47,7 @@ $(PACKAGE): $(OBJS)
> + 
> + install-program: all 
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 
> + clean:
> + 	rm -f $(PACKAGE) $(OBJS) $(DEPS)
> diff --git a/recipes/gpe-announce/gpe-announce_0.13.bb b/recipes/gpe-announce/gpe-announce_0.13.bb
> index 6ffe317..21538c4 100644
> --- a/recipes/gpe-announce/gpe-announce_0.13.bb
> +++ b/recipes/gpe-announce/gpe-announce_0.13.bb
> @@ -4,4 +4,7 @@ DEPENDS = "libsoundgen libschedule gtk+ libgpewidget"
>  LICENSE = "GPL"
>  PR = "r1"
>  
> -SRC_URI += "file://fix-esound.diff;patch=1"
> +SRC_URI += " \
> +            file://fix-esound.diff;patch=1 \
> +            file://fix-install.diff;patch=1 \
> +           "

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't do install -s
  2009-05-13  9:39 ` [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't " koen.kooi
@ 2009-05-13 14:22   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:22 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1652 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-clock/files/fix-install.patch |   13 +++++++++++++
>  recipes/gpe-clock/gpe-clock.inc           |    2 ++
>  2 files changed, 15 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/gpe-clock/files/fix-install.patch
> 
> diff --git a/recipes/gpe-clock/files/fix-install.patch b/recipes/gpe-clock/files/fix-install.patch
> new file mode 100644
> index 0000000..2d3e303
> --- /dev/null
> +++ b/recipes/gpe-clock/files/fix-install.patch
> @@ -0,0 +1,13 @@
> +diff --git gpe-clock-0.25/Makefile-orig gpe-clock-0.25/Makefile
> +index 4fa59bf..e716fcb 100644
> +--- gpe-clock-0.25/Makefile-orig
> ++++ gpe-clock-0.25/Makefile
> +@@ -36,7 +36,7 @@ $(PACKAGE): $(OBJS)
> + 
> + install-program: all
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/gpe-clock/gpe-clock.inc b/recipes/gpe-clock/gpe-clock.inc
> index d4ae3da..b36fa7d 100644
> --- a/recipes/gpe-clock/gpe-clock.inc
> +++ b/recipes/gpe-clock/gpe-clock.inc
> @@ -6,3 +6,5 @@ DEPENDS = "gtk+ libschedule libgpewidget gpe-announce atd libgpelaunch"
>  RDEPENDS = "gpe-announce"
>  
>  inherit gpe
> +
> +SRC_URI += "file://fix-install.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di install -s
  2009-05-13  9:39 ` [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di " koen.kooi
@ 2009-05-13 14:22   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:22 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2079 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  .../gpe-tetris/gpe-tetris-0.6-4/fix-install.patch  |   13 +++++++++++++
>  recipes/gpe-tetris/gpe-tetris_0.6-4.bb             |    4 +++-
>  2 files changed, 16 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch
> 
> diff --git a/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch b/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch
> new file mode 100644
> index 0000000..2e32aa5
> --- /dev/null
> +++ b/recipes/gpe-tetris/gpe-tetris-0.6-4/fix-install.patch
> @@ -0,0 +1,13 @@
> +diff --git gpe-tetris-0.6-4/Makefile-orig gpe-tetris-0.6-4/Makefile
> +index 82c7245..27de49f 100644
> +--- gpe-tetris-0.6-4/Makefile-orig
> ++++ gpe-tetris-0.6-4/Makefile
> +@@ -46,7 +46,7 @@ install-program: all
> + 	install -m 644 pixmaps/stop.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/stop.png
> + 	install -m 644 pixmaps/pause.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/pause.png
> + 	install -m 644 pixmaps/highscores.png $(DESTDIR)$(PREFIX)/share/gpe/pixmaps/default/tetris/highscores.png
> +-	install -s $(PACKAGE) $(BIN_PATH)/$(PACKAGE)
> ++	install $(PACKAGE) $(BIN_PATH)/$(PACKAGE)
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 gpe-tetris.desktop $(DESTDIR)$(PREFIX)/share/applications/
> diff --git a/recipes/gpe-tetris/gpe-tetris_0.6-4.bb b/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
> index 4a13d24..aa33b1f 100644
> --- a/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
> +++ b/recipes/gpe-tetris/gpe-tetris_0.6-4.bb
> @@ -1,9 +1,11 @@
>  LICENSE = "GPL"
>  inherit gpe
> +PR = "r1"
> +
>  
>  DESCRIPTION = "GTK+2 port of the well known game, Tetris."
>  DEPENDS = "gtk+ libgpewidget gpe-icons"
>  SECTION = "gpe"
>  PRIORITY = "optional"
>  
> -
> +SRC_URI += "file://fix-install.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do install -s
  2009-05-13  9:39 ` [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do " koen.kooi
@ 2009-05-13 14:23   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:23 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2009 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Steve Sakoman <steve@sakoman.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-watch/gpe-watch-0.10/fix_install.patch |   13 +++++++++++++
>  recipes/gpe-watch/gpe-watch_0.10.bb                |    5 ++++-
>  2 files changed, 17 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/gpe-watch/gpe-watch-0.10/fix_install.patch
> 
> diff --git a/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch b/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch
> new file mode 100644
> index 0000000..3ae63a8
> --- /dev/null
> +++ b/recipes/gpe-watch/gpe-watch-0.10/fix_install.patch
> @@ -0,0 +1,13 @@
> +diff --git gpe-watch-0.10/Makefile-orig gpe-watch-0.10/Makefile
> +index 2f74616..58fa802 100644
> +--- gpe-watch-0.10/Makefile-orig
> ++++ gpe-watch-0.10/Makefile
> +@@ -39,7 +39,7 @@ $(PACKAGE): $(OBJS) $(LIB)
> + 
> + install-program: all $(PACKAGE).desktop
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
> + 	#mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)
> diff --git a/recipes/gpe-watch/gpe-watch_0.10.bb b/recipes/gpe-watch/gpe-watch_0.10.bb
> index e0d5147..9b386a2 100644
> --- a/recipes/gpe-watch/gpe-watch_0.10.bb
> +++ b/recipes/gpe-watch/gpe-watch_0.10.bb
> @@ -1,5 +1,6 @@
>  LICENSE = "GPL"
>  inherit gpe pkgconfig
> +PR = "r1"
>  
>  DESCRIPTION = "GPE analog clock-watch"
>  DEPENDS = "gtk+ libgpewidget"
> @@ -7,4 +8,6 @@ SECTION = "gpe"
>  PRIORITY = "optional"
>  
>  SRC_URI += "file://fix_makefile.patch;patch=1 \
> -            file://no-render-h.patch;patch=1"
> +            file://fix_install.patch;patch=1 \
> +            file://no-render-h.patch;patch=1 \
> +           "

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install
  2009-05-13  9:39 ` [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install koen.kooi
@ 2009-05-13 14:23   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:23 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1754 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/gpe-mixer/gpe-mixer/fix-install.patch |   11 +++++++++++
>  recipes/gpe-mixer/gpe-mixer_0.42.bb           |    3 ++-
>  2 files changed, 13 insertions(+), 1 deletions(-)
>  create mode 100644 recipes/gpe-mixer/gpe-mixer/fix-install.patch
> 
> diff --git a/recipes/gpe-mixer/gpe-mixer/fix-install.patch b/recipes/gpe-mixer/gpe-mixer/fix-install.patch
> new file mode 100644
> index 0000000..ec5ea2c
> --- /dev/null
> +++ b/recipes/gpe-mixer/gpe-mixer/fix-install.patch
> @@ -0,0 +1,11 @@
> +--- Makefile.old	2009-05-09 21:11:12.000000000 +0200
> ++++ Makefile	2009-05-09 21:11:39.000000000 +0200
> +@@ -36,7 +36,7 @@
> + 
> + install-program: all $(PACKAGE).desktop
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png
> + 	mkdir -p $(DESTDIR)$(PREFIX)/share/$(PACKAGE)
> diff --git a/recipes/gpe-mixer/gpe-mixer_0.42.bb b/recipes/gpe-mixer/gpe-mixer_0.42.bb
> index 5fe0e98..c2f7bbe 100644
> --- a/recipes/gpe-mixer/gpe-mixer_0.42.bb
> +++ b/recipes/gpe-mixer/gpe-mixer_0.42.bb
> @@ -3,7 +3,8 @@ PR = "r1"
>  
>  inherit gpe pkgconfig
>  
> -SRC_URI += "file://gpemixer-no-host-includes.patch;patch=1"
> +SRC_URI += "file://gpemixer-no-host-includes.patch;patch=1 \
> +	    file://fix-install.patch;patch=1"
>  
>  DESCRIPTION = "GPE audio mixer"
>  DEPENDS = "gtk+ libgpewidget"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 34/37] startup-monitor: fix makefile - don't strip on install
  2009-05-13  9:39 ` [STABLE][PATCH 34/37] startup-monitor: fix makefile " koen.kooi
@ 2009-05-13 14:23   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:23 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1736 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Andrea Adami <andrea.adami@gmail.com>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/startup-monitor/files/makefile-fix.patch  |   11 +++++++++++
>  recipes/startup-monitor/startup-monitor_0.18-2.bb |    2 ++
>  2 files changed, 13 insertions(+), 0 deletions(-)
>  create mode 100644 recipes/startup-monitor/files/makefile-fix.patch
> 
> diff --git a/recipes/startup-monitor/files/makefile-fix.patch b/recipes/startup-monitor/files/makefile-fix.patch
> new file mode 100644
> index 0000000..6d50c8f
> --- /dev/null
> +++ b/recipes/startup-monitor/files/makefile-fix.patch
> @@ -0,0 +1,11 @@
> +--- /tmp/Makefile.old	2006-01-16 13:40:16.000000000 +0100
> ++++ startup-monitor/Makefile	2009-05-09 23:08:22.000000000 +0200
> +@@ -41,7 +41,7 @@
> + 
> + install-program: all
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> ++	install $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE)
> + 	mkdir -p $(DESTDIR)/etc/X11/Xsession.d
> + 	install $(PACKAGE).xsession $(DESTDIR)/etc/X11/Xsession.d/70startup-monitor
> + 
> diff --git a/recipes/startup-monitor/startup-monitor_0.18-2.bb b/recipes/startup-monitor/startup-monitor_0.18-2.bb
> index 34e7656..38ec504 100644
> --- a/recipes/startup-monitor/startup-monitor_0.18-2.bb
> +++ b/recipes/startup-monitor/startup-monitor_0.18-2.bb
> @@ -7,3 +7,5 @@ DEPENDS = "virtual/libx11 startup-notification glib-2.0 libmatchbox"
>  inherit gpe pkgconfig
>  
>  #SRC_URI = "http://www.freedesktop.org/software/startup-notification/releases/${P}.tar.gz"
> +
> +SRC_URI += "file://makefile-fix.patch;patch=1"

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh)
  2009-05-13  9:39 ` [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh) koen.kooi
@ 2009-05-13 14:24   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:24 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1099 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Mike Westerhof <mwester@dls.net>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/netpbm/netpbm_10.28.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/netpbm/netpbm_10.28.bb b/recipes/netpbm/netpbm_10.28.bb
> index ff90310..78bb26b 100644
> --- a/recipes/netpbm/netpbm_10.28.bb
> +++ b/recipes/netpbm/netpbm_10.28.bb
> @@ -25,7 +25,7 @@ RDEPENDS = "perl\
>  RDEPENDS += "perl-module-exporter-heavy"
>  RDEPENDS += "perl-module-file-spec-unix"
>  
> -PR = "r5"
> +PR = "r6"
>  
>  SRC_URI = "${SOURCEFORGE_MIRROR}/netpbm/netpbm-${PV}.tgz \
>  	   file://ppmtojpeg.patch;patch=42 \
> @@ -34,7 +34,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/netpbm/netpbm-${PV}.tgz \
>  
>  PARALLEL_MAKE = ""
>  
> -EXTRA_OEMAKE = "ENDIANGEN=${S}/buildtools/oeendiangen TARGET_LD=${LD}"
> +EXTRA_OEMAKE = "ENDIANGEN=${S}/buildtools/oeendiangen TARGET_LD=${LD} 'STRIPFLAG='"
>  
>  do_configure() {
>  	install -c -m 644 ../Makefile.config .

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 36/37] logrotate: remove -s on install
  2009-05-13  9:39 ` [STABLE][PATCH 36/37] logrotate: remove -s on install koen.kooi
@ 2009-05-13 14:24   ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-13 14:24 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1187 bytes --]

Acked-by: Philip Balister <philip@balister.org>

koen.kooi@gmail.com wrote:
> From: Mike Westerhof <mwester@dls.net>
> 
> Signed-off-by: Koen Kooi <koen@openembedded.org>
> ---
>  recipes/logrotate/logrotate_3.7.1.bb |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/recipes/logrotate/logrotate_3.7.1.bb b/recipes/logrotate/logrotate_3.7.1.bb
> index 0a1647e..61a1306 100644
> --- a/recipes/logrotate/logrotate_3.7.1.bb
> +++ b/recipes/logrotate/logrotate_3.7.1.bb
> @@ -5,7 +5,7 @@ DEPENDS = "popt"
>  RDEPENDS = "cron"
>  SECTION = "admin"
>  LICENSE = "GPL"
> -PR = "r1"
> +PR = "r2"
>  
>  SRC_URI = "http://ftp.debian.org/debian/pool/main/l/logrotate/logrotate_${PV}.orig.tar.gz \
>  	   file://logrotate-3.7.1.patch;patch=1 \
> @@ -21,7 +21,7 @@ do_compile() {
>  
>  do_install () {
>      # Install the binary and conf file
> -    install -D -s -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate
> +    install -D -m 0755 ${S}/logrotate ${D}${base_sbindir}/logrotate
>      install -D -m 0644 ${WORKDIR}/logrotate.conf ${D}${sysconfdir}/logrotate.conf
>      install -m 0755 -d ${D}${sysconfdir}/logrotate.d
>  }

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

* Re: [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling)
  2009-05-13  9:38 ` [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling) koen.kooi
@ 2009-05-14  7:00   ` Koen Kooi
  0 siblings, 0 replies; 78+ messages in thread
From: Koen Kooi @ 2009-05-14  7:00 UTC (permalink / raw)
  To: openembedded-devel

On 13-05-09 11:38, koen.kooi@gmail.com wrote:
> From: Andrea Adami<andrea.adami@gmail.com>

ping

> Signed-off-by: Koen Kooi<koen@openembedded.org>
> ---
>   recipes/teleport/files/crypt.c                     |  158 --------------------
>   recipes/teleport/files/fix-desktop.patch           |   12 --
>   recipes/teleport/files/makefile-fix.patch          |   13 --
>   recipes/teleport/files/remove-tododb.patch         |   12 --
>   recipes/teleport/teleport-0.33/crypt.c             |  158 ++++++++++++++++++++
>   recipes/teleport/teleport-0.33/fix-desktop.patch   |   12 ++
>   recipes/teleport/teleport-0.33/makefile-fix.patch  |   13 ++
>   recipes/teleport/teleport-0.33/remove-tododb.patch |   12 ++
>   recipes/teleport/teleport-0.34/makefile-fix.patch  |   13 ++
>   9 files changed, 208 insertions(+), 195 deletions(-)
>   delete mode 100644 recipes/teleport/files/crypt.c
>   delete mode 100644 recipes/teleport/files/fix-desktop.patch
>   delete mode 100644 recipes/teleport/files/makefile-fix.patch
>   delete mode 100644 recipes/teleport/files/remove-tododb.patch
>   create mode 100644 recipes/teleport/teleport-0.33/crypt.c
>   create mode 100644 recipes/teleport/teleport-0.33/fix-desktop.patch
>   create mode 100644 recipes/teleport/teleport-0.33/makefile-fix.patch
>   create mode 100644 recipes/teleport/teleport-0.33/remove-tododb.patch
>   create mode 100644 recipes/teleport/teleport-0.34/makefile-fix.patch
>
> diff --git a/recipes/teleport/files/crypt.c b/recipes/teleport/files/crypt.c
> deleted file mode 100644
> index 359c5ee..0000000
> --- a/recipes/teleport/files/crypt.c
> +++ /dev/null
> @@ -1,158 +0,0 @@
> -/*
> - * Copyright (C) 2003 Philip Blundell<philb@gnu.org>
> - *
> - * This program is free software; you can redistribute it and/or
> - * modify it under the terms of the GNU General Public License
> - * as published by the Free Software Foundation; either version
> - * 2 of the License, or (at your option) any later version.
> - */
> -
> -#include<stdlib.h>
> -#include<string.h>
> -#include<glib.h>
> -#include<assert.h>
> -
> -#include "libdisplaymigration/auth.h"
> -#include "libdisplaymigration/crypt.h"
> -
> -static gcry_mpi_t
> -mpi_from_sexp (gcry_sexp_t r, char *tag)
> -{
> -  gcry_sexp_t s = gcry_sexp_find_token (r, tag, 0);
> -  return gcry_sexp_nth_mpi (s, 1, GCRYMPI_FMT_USG);
> -}
> -
> -static char *
> -hex_from_mpi (gcry_mpi_t m)
> -{
> -  char *buf;
> -  gcry_mpi_aprint (GCRYMPI_FMT_HEX, (void *)&buf, NULL, m);
> -  return buf;
> -}
> -
> -void
> -displaymigration_crypt_create_hash (char *display, char *challenge, size_t len, char *result)
> -{
> -  size_t dlen = strlen (display);
> -  gchar *buf = g_malloc (dlen + 1 + len);
> -  strcpy (buf, display);
> -  memcpy (buf + dlen + 1, challenge, len);
> -  gcry_md_hash_buffer (GCRY_MD_SHA1, result, buf, len + dlen + 1);
> -  g_free (buf);
> -}
> -
> -static int
> -do_encode_md (const unsigned char *digest, size_t digestlen, int algo,
> -              unsigned int nbits, gcry_mpi_t *r_val)
> -{
> -  int nframe = (nbits+7) / 8;
> -  unsigned char *frame;
> -  int i, n;
> -  unsigned char asn[100];
> -  size_t asnlen;
> -
> -  asnlen = sizeof(asn);
> -  if (gcry_md_algo_info (algo, GCRYCTL_GET_ASNOID, asn,&asnlen))
> -    return -1;
> -
> -  if (digestlen + asnlen + 4>  nframe )
> -    return -1;
> -
> -  /* We encode the MD in this way:
> -   *
> -   *	   0  1 PAD(n bytes)   0  ASN(asnlen bytes)  MD(len bytes)
> -   *
> -   * PAD consists of FF bytes.
> -   */
> -  frame = g_malloc (nframe);
> -  n = 0;
> -  frame[n++] = 0;
> -  frame[n++] = 1; /* block type */
> -  i = nframe - digestlen - asnlen -3 ;
> -  assert ( i>  1 );
> -  memset ( frame+n, 0xff, i ); n += i;
> -  frame[n++] = 0;
> -  memcpy ( frame+n, asn, asnlen ); n += asnlen;
> -  memcpy ( frame+n, digest, digestlen ); n += digestlen;
> -  assert ( n == nframe );
> -
> -  gcry_mpi_scan (r_val, GCRYMPI_FMT_USG, frame, nframe,&nframe);
> -  g_free (frame);
> -  return 0;
> -}
> -
> -gboolean
> -displaymigration_crypt_sign_hash (struct rsa_key *k, char *hash, gchar **result)
> -{
> -  gcry_mpi_t mpi;
> -  gcry_sexp_t data, sig, key;
> -  int rc;
> -  char *hex;
> -
> -  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024,&mpi);
> -
> -  if (gcry_sexp_build (&data, NULL, "(data (value %m))", mpi))
> -    return FALSE;
> -
> -  gcry_mpi_release (mpi);
> -
> -  if (gcry_sexp_build (&key, NULL, "(private-key (rsa (n %m) (e %m) (d %m) (p %m) (q %m) (u %m)))",
> -		       k->n, k->e, k->d, k->p, k->q, k->u))
> -    {
> -      gcry_sexp_release (data);
> -      return FALSE;
> -    }
> -
> -  rc = gcry_pk_sign (&sig, data, key);
> -
> -  gcry_sexp_release (data);
> -  gcry_sexp_release (key);
> -
> -  if (rc)
> -    return FALSE;
> -
> -  mpi = mpi_from_sexp (sig, "s");
> -  hex = hex_from_mpi (mpi);
> -  *result = g_strdup (hex);
> -  gcry_free (hex);
> -  gcry_mpi_release (mpi);
> -  gcry_sexp_release (sig);
> -
> -  return TRUE;
> -}
> -
> -gboolean
> -displaymigration_crypt_check_signature (struct rsa_key *k, char *hash, char *sigbuf)
> -{
> -  gcry_mpi_t mpi, mpi2;
> -  gcry_sexp_t data, sig, key;
> -  int rc;
> -
> -  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024,&mpi);
> -
> -  gcry_sexp_build (&data, NULL, "(data (value %m))", mpi);
> -
> -  gcry_mpi_release (mpi);
> -
> -  gcry_sexp_build (&key, NULL, "(public-key (rsa (n %m) (e %m)))", k->n, k->e);
> -
> -  if (gcry_mpi_scan (&mpi2, GCRYMPI_FMT_HEX, sigbuf, 0, NULL))
> -    {
> -      gcry_sexp_release (data);
> -      return FALSE;
> -    }
> -
> -  gcry_sexp_build (&sig, NULL, "(sig-val (rsa (s %m)))", mpi2);
> -
> -  rc = gcry_pk_verify (sig, data, key);
> -
> -  gcry_sexp_release (data);
> -  gcry_sexp_release (key);
> -  gcry_sexp_release (sig);
> -  gcry_mpi_release (mpi2);
> -
> -  if (rc)
> -    return FALSE;
> -
> -  return TRUE;
> -}
> diff --git a/recipes/teleport/files/fix-desktop.patch b/recipes/teleport/files/fix-desktop.patch
> deleted file mode 100644
> index c12434f..0000000
> --- a/recipes/teleport/files/fix-desktop.patch
> +++ /dev/null
> @@ -1,12 +0,0 @@
> ---- teleport-0.33/teleport.desktop      2003-07-06 23:47:14.000000000 +0200
> -+++ /tmp/teleport.desktop       2005-03-04 17:34:32.193817208 +0100
> -@@ -1,7 +1,7 @@
> - [Desktop Entry]
> - Name=Teleport
> - Comment=Move applications between displays
> --Exec=monolaunch -k /usr/share/pixmaps/teleport.png teleport
> -+Exec=mb-applet-launcher -k /usr/share/pixmaps/teleport.png teleport
> - Type=PanelApp
> - Icon=teleport.png
> - Categories=Panel;Utility;GPE
> -
> diff --git a/recipes/teleport/files/makefile-fix.patch b/recipes/teleport/files/makefile-fix.patch
> deleted file mode 100644
> index 9dc232d..0000000
> --- a/recipes/teleport/files/makefile-fix.patch
> +++ /dev/null
> @@ -1,13 +0,0 @@
> ---- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
> -+++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
> -@@ -37,8 +37,8 @@
> -
> - install-program: all
> - 	install -d $(DESTDIR)$(PREFIX)/bin
> --	install -s teleport $(DESTDIR)$(PREFIX)/bin/
> --	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
> -+	install teleport $(DESTDIR)$(PREFIX)/bin/
> -+	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
> - 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> - 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
> - 	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/teleport/files/remove-tododb.patch b/recipes/teleport/files/remove-tododb.patch
> deleted file mode 100644
> index 87e4f74..0000000
> --- a/recipes/teleport/files/remove-tododb.patch
> +++ /dev/null
> @@ -1,12 +0,0 @@
> ---- teleport-0.33/Makefile    2004-07-20 22:01:25.000000000 +0200
> -+++ teleport-0.33/Makefile       2005-03-04 17:03:17.316841832 +0100
> -@@ -13,7 +13,7 @@
> - endif
> - PACKAGE_CPPFLAGS += $(STANDARD_CPPFLAGS)
> - PACKAGE_CFLAGS += $(STANDARD_CFLAGS) $(GPECFLAGS) `libgcrypt-config --cflags`
> --PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ltododb -ldisplaymigration -lgpepimc `libgcrypt-config --libs` -lsqlite
> -+PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ldisplaymigration `libgcrypt-config --libs` -lsqlite
> -
> - MEMBERS = teleport crypt displays keygen tp-keygen
> -
> -
> diff --git a/recipes/teleport/teleport-0.33/crypt.c b/recipes/teleport/teleport-0.33/crypt.c
> new file mode 100644
> index 0000000..359c5ee
> --- /dev/null
> +++ b/recipes/teleport/teleport-0.33/crypt.c
> @@ -0,0 +1,158 @@
> +/*
> + * Copyright (C) 2003 Philip Blundell<philb@gnu.org>
> + *
> + * This program is free software; you can redistribute it and/or
> + * modify it under the terms of the GNU General Public License
> + * as published by the Free Software Foundation; either version
> + * 2 of the License, or (at your option) any later version.
> + */
> +
> +#include<stdlib.h>
> +#include<string.h>
> +#include<glib.h>
> +#include<assert.h>
> +
> +#include "libdisplaymigration/auth.h"
> +#include "libdisplaymigration/crypt.h"
> +
> +static gcry_mpi_t
> +mpi_from_sexp (gcry_sexp_t r, char *tag)
> +{
> +  gcry_sexp_t s = gcry_sexp_find_token (r, tag, 0);
> +  return gcry_sexp_nth_mpi (s, 1, GCRYMPI_FMT_USG);
> +}
> +
> +static char *
> +hex_from_mpi (gcry_mpi_t m)
> +{
> +  char *buf;
> +  gcry_mpi_aprint (GCRYMPI_FMT_HEX, (void *)&buf, NULL, m);
> +  return buf;
> +}
> +
> +void
> +displaymigration_crypt_create_hash (char *display, char *challenge, size_t len, char *result)
> +{
> +  size_t dlen = strlen (display);
> +  gchar *buf = g_malloc (dlen + 1 + len);
> +  strcpy (buf, display);
> +  memcpy (buf + dlen + 1, challenge, len);
> +  gcry_md_hash_buffer (GCRY_MD_SHA1, result, buf, len + dlen + 1);
> +  g_free (buf);
> +}
> +
> +static int
> +do_encode_md (const unsigned char *digest, size_t digestlen, int algo,
> +              unsigned int nbits, gcry_mpi_t *r_val)
> +{
> +  int nframe = (nbits+7) / 8;
> +  unsigned char *frame;
> +  int i, n;
> +  unsigned char asn[100];
> +  size_t asnlen;
> +
> +  asnlen = sizeof(asn);
> +  if (gcry_md_algo_info (algo, GCRYCTL_GET_ASNOID, asn,&asnlen))
> +    return -1;
> +
> +  if (digestlen + asnlen + 4>  nframe )
> +    return -1;
> +
> +  /* We encode the MD in this way:
> +   *
> +   *	   0  1 PAD(n bytes)   0  ASN(asnlen bytes)  MD(len bytes)
> +   *
> +   * PAD consists of FF bytes.
> +   */
> +  frame = g_malloc (nframe);
> +  n = 0;
> +  frame[n++] = 0;
> +  frame[n++] = 1; /* block type */
> +  i = nframe - digestlen - asnlen -3 ;
> +  assert ( i>  1 );
> +  memset ( frame+n, 0xff, i ); n += i;
> +  frame[n++] = 0;
> +  memcpy ( frame+n, asn, asnlen ); n += asnlen;
> +  memcpy ( frame+n, digest, digestlen ); n += digestlen;
> +  assert ( n == nframe );
> +
> +  gcry_mpi_scan (r_val, GCRYMPI_FMT_USG, frame, nframe,&nframe);
> +  g_free (frame);
> +  return 0;
> +}
> +
> +gboolean
> +displaymigration_crypt_sign_hash (struct rsa_key *k, char *hash, gchar **result)
> +{
> +  gcry_mpi_t mpi;
> +  gcry_sexp_t data, sig, key;
> +  int rc;
> +  char *hex;
> +
> +  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024,&mpi);
> +
> +  if (gcry_sexp_build (&data, NULL, "(data (value %m))", mpi))
> +    return FALSE;
> +
> +  gcry_mpi_release (mpi);
> +
> +  if (gcry_sexp_build (&key, NULL, "(private-key (rsa (n %m) (e %m) (d %m) (p %m) (q %m) (u %m)))",
> +		       k->n, k->e, k->d, k->p, k->q, k->u))
> +    {
> +      gcry_sexp_release (data);
> +      return FALSE;
> +    }
> +
> +  rc = gcry_pk_sign (&sig, data, key);
> +
> +  gcry_sexp_release (data);
> +  gcry_sexp_release (key);
> +
> +  if (rc)
> +    return FALSE;
> +
> +  mpi = mpi_from_sexp (sig, "s");
> +  hex = hex_from_mpi (mpi);
> +  *result = g_strdup (hex);
> +  gcry_free (hex);
> +  gcry_mpi_release (mpi);
> +  gcry_sexp_release (sig);
> +
> +  return TRUE;
> +}
> +
> +gboolean
> +displaymigration_crypt_check_signature (struct rsa_key *k, char *hash, char *sigbuf)
> +{
> +  gcry_mpi_t mpi, mpi2;
> +  gcry_sexp_t data, sig, key;
> +  int rc;
> +
> +  do_encode_md (hash, 20, GCRY_MD_SHA1, 1024,&mpi);
> +
> +  gcry_sexp_build (&data, NULL, "(data (value %m))", mpi);
> +
> +  gcry_mpi_release (mpi);
> +
> +  gcry_sexp_build (&key, NULL, "(public-key (rsa (n %m) (e %m)))", k->n, k->e);
> +
> +  if (gcry_mpi_scan (&mpi2, GCRYMPI_FMT_HEX, sigbuf, 0, NULL))
> +    {
> +      gcry_sexp_release (data);
> +      return FALSE;
> +    }
> +
> +  gcry_sexp_build (&sig, NULL, "(sig-val (rsa (s %m)))", mpi2);
> +
> +  rc = gcry_pk_verify (sig, data, key);
> +
> +  gcry_sexp_release (data);
> +  gcry_sexp_release (key);
> +  gcry_sexp_release (sig);
> +  gcry_mpi_release (mpi2);
> +
> +  if (rc)
> +    return FALSE;
> +
> +  return TRUE;
> +}
> diff --git a/recipes/teleport/teleport-0.33/fix-desktop.patch b/recipes/teleport/teleport-0.33/fix-desktop.patch
> new file mode 100644
> index 0000000..c12434f
> --- /dev/null
> +++ b/recipes/teleport/teleport-0.33/fix-desktop.patch
> @@ -0,0 +1,12 @@
> +--- teleport-0.33/teleport.desktop      2003-07-06 23:47:14.000000000 +0200
> ++++ /tmp/teleport.desktop       2005-03-04 17:34:32.193817208 +0100
> +@@ -1,7 +1,7 @@
> + [Desktop Entry]
> + Name=Teleport
> + Comment=Move applications between displays
> +-Exec=monolaunch -k /usr/share/pixmaps/teleport.png teleport
> ++Exec=mb-applet-launcher -k /usr/share/pixmaps/teleport.png teleport
> + Type=PanelApp
> + Icon=teleport.png
> + Categories=Panel;Utility;GPE
> +
> diff --git a/recipes/teleport/teleport-0.33/makefile-fix.patch b/recipes/teleport/teleport-0.33/makefile-fix.patch
> new file mode 100644
> index 0000000..31973c4
> --- /dev/null
> +++ b/recipes/teleport/teleport-0.33/makefile-fix.patch
> @@ -0,0 +1,13 @@
> +--- /tmp/Makefile.old	2004-07-20 22:01:25.000000000 +0200
> ++++ teleport-0.33/Makefile	2009-05-02 00:16:57.000000000 +0200
> +@@ -40,8 +40,8 @@
> +
> + install-program: all
> + 	mkdir -p $(DESTDIR)$(PREFIX)/bin
> +-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
> +-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
> ++	install teleport $(DESTDIR)$(PREFIX)/bin/
> ++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications
> diff --git a/recipes/teleport/teleport-0.33/remove-tododb.patch b/recipes/teleport/teleport-0.33/remove-tododb.patch
> new file mode 100644
> index 0000000..87e4f74
> --- /dev/null
> +++ b/recipes/teleport/teleport-0.33/remove-tododb.patch
> @@ -0,0 +1,12 @@
> +--- teleport-0.33/Makefile    2004-07-20 22:01:25.000000000 +0200
> ++++ teleport-0.33/Makefile       2005-03-04 17:03:17.316841832 +0100
> +@@ -13,7 +13,7 @@
> + endif
> + PACKAGE_CPPFLAGS += $(STANDARD_CPPFLAGS)
> + PACKAGE_CFLAGS += $(STANDARD_CFLAGS) $(GPECFLAGS) `libgcrypt-config --cflags`
> +-PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ltododb -ldisplaymigration -lgpepimc `libgcrypt-config --libs` -lsqlite
> ++PACKAGE_LDFLAGS += $(STANDARD_LDFLAGS) $(GPELIBS) -ldisplaymigration `libgcrypt-config --libs` -lsqlite
> +
> + MEMBERS = teleport crypt displays keygen tp-keygen
> +
> +
> diff --git a/recipes/teleport/teleport-0.34/makefile-fix.patch b/recipes/teleport/teleport-0.34/makefile-fix.patch
> new file mode 100644
> index 0000000..9dc232d
> --- /dev/null
> +++ b/recipes/teleport/teleport-0.34/makefile-fix.patch
> @@ -0,0 +1,13 @@
> +--- /tmp/Makefile.old	2005-03-04 20:19:01.000000000 +0100
> ++++ teleport-0.34/Makefile	2009-05-01 22:19:16.000000000 +0200
> +@@ -37,8 +37,8 @@
> +
> + install-program: all
> + 	install -d $(DESTDIR)$(PREFIX)/bin
> +-	install -s teleport $(DESTDIR)$(PREFIX)/bin/
> +-	install -s tp-keygen $(DESTDIR)$(PREFIX)/bin/
> ++	install teleport $(DESTDIR)$(PREFIX)/bin/
> ++	install tp-keygen $(DESTDIR)$(PREFIX)/bin/
> + 	install -d $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -m 644 teleport.png $(DESTDIR)$(PREFIX)/share/pixmaps
> + 	install -d $(DESTDIR)$(PREFIX)/share/applications





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

* Re: [STABLE][PATCH 37/37] monit: add patch to remove -s in install.
  2009-05-13  9:39 ` [STABLE][PATCH 37/37] monit: add patch to remove -s in install koen.kooi
@ 2009-05-14  7:00   ` Koen Kooi
  2009-05-14 12:35     ` Philip Balister
  0 siblings, 1 reply; 78+ messages in thread
From: Koen Kooi @ 2009-05-14  7:00 UTC (permalink / raw)
  To: openembedded-devel

On 13-05-09 11:39, koen.kooi@gmail.com wrote:
> From: Mike Westerhof<mwester@dls.net>

ping

> Signed-off-by: Koen Kooi<koen@openembedded.org>
> ---
>   .../monit/monit-4.10.1/no-strip-in-makefile.patch  |   11 +++++++++++
>   recipes/monit/monit_4.10.1.bb                      |    2 ++
>   2 files changed, 13 insertions(+), 0 deletions(-)
>   create mode 100644 recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
>
> diff --git a/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
> new file mode 100644
> index 0000000..26f5108
> --- /dev/null
> +++ b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
> @@ -0,0 +1,11 @@
> +--- monit-4.10.1/Makefile.in.orig	2009-05-10 21:19:00.000000000 -0500
> ++++ monit-4.10.1/Makefile.in	2009-05-10 21:19:11.000000000 -0500
> +@@ -39,7 +39,7 @@ MODE_CONF       = 600
> + MODE_DIRS       = 755
> +
> + INSTALL         = @INSTALL@
> +-INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS) -s
> ++INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS)
> + INSTALL_FILE    = $(INSTALL) -m $(MODE_FILES)
> + INSTALL_DIR     = $(INSTALL) -m $(MODE_DIRS) -d
> +
> diff --git a/recipes/monit/monit_4.10.1.bb b/recipes/monit/monit_4.10.1.bb
> index bb18491..06d382f 100644
> --- a/recipes/monit/monit_4.10.1.bb
> +++ b/recipes/monit/monit_4.10.1.bb
> @@ -1,7 +1,9 @@
>   LICENSE = "GPL"
>   DEPENDS = "openssl"
> +PR = "r1"
>
>   SRC_URI = "http://www.tildeslash.com/monit/dist/monit-${PV}.tar.gz\
> +	file://no-strip-in-makefile.patch;patch=1 \
>   	file://init"
>
>   INITSCRIPT_NAME = "monit"





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

* Re: [STABLE][PATCH 37/37] monit: add patch to remove -s in install.
  2009-05-14  7:00   ` Koen Kooi
@ 2009-05-14 12:35     ` Philip Balister
  0 siblings, 0 replies; 78+ messages in thread
From: Philip Balister @ 2009-05-14 12:35 UTC (permalink / raw)
  To: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2027 bytes --]

Acked-by: Philip Balister <philip@balister.org>

Thought I did this one yesterday .....

Koen Kooi wrote:
> On 13-05-09 11:39, koen.kooi@gmail.com wrote:
>> From: Mike Westerhof<mwester@dls.net>
> 
> ping
> 
>> Signed-off-by: Koen Kooi<koen@openembedded.org>
>> ---
>>   .../monit/monit-4.10.1/no-strip-in-makefile.patch  |   11 +++++++++++
>>   recipes/monit/monit_4.10.1.bb                      |    2 ++
>>   2 files changed, 13 insertions(+), 0 deletions(-)
>>   create mode 100644 
>> recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
>>
>> diff --git a/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch 
>> b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
>> new file mode 100644
>> index 0000000..26f5108
>> --- /dev/null
>> +++ b/recipes/monit/monit-4.10.1/no-strip-in-makefile.patch
>> @@ -0,0 +1,11 @@
>> +--- monit-4.10.1/Makefile.in.orig    2009-05-10 21:19:00.000000000 -0500
>> ++++ monit-4.10.1/Makefile.in    2009-05-10 21:19:11.000000000 -0500
>> +@@ -39,7 +39,7 @@ MODE_CONF       = 600
>> + MODE_DIRS       = 755
>> +
>> + INSTALL         = @INSTALL@
>> +-INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS) -s
>> ++INSTALL_PROG    = $(INSTALL) -m $(MODE_PROGS)
>> + INSTALL_FILE    = $(INSTALL) -m $(MODE_FILES)
>> + INSTALL_DIR     = $(INSTALL) -m $(MODE_DIRS) -d
>> +
>> diff --git a/recipes/monit/monit_4.10.1.bb 
>> b/recipes/monit/monit_4.10.1.bb
>> index bb18491..06d382f 100644
>> --- a/recipes/monit/monit_4.10.1.bb
>> +++ b/recipes/monit/monit_4.10.1.bb
>> @@ -1,7 +1,9 @@
>>   LICENSE = "GPL"
>>   DEPENDS = "openssl"
>> +PR = "r1"
>>
>>   SRC_URI = "http://www.tildeslash.com/monit/dist/monit-${PV}.tar.gz\
>> +    file://no-strip-in-makefile.patch;patch=1 \
>>       file://init"
>>
>>   INITSCRIPT_NAME = "monit"
> 
> 
> 
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-devel
> 

[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/x-pkcs7-signature, Size: 3303 bytes --]

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

end of thread, other threads:[~2009-05-14 12:42 UTC | newest]

Thread overview: 78+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-13  9:38 [STABLE][PATCH 00/37] Fix install -s problems koen.kooi
2009-05-13  9:38 ` [STABLE][PATCH 01/37] ipaq-sleep: don't strip during install - using coreutils this now breaks (strip: unable to recognise the format of the input file) koen.kooi
2009-05-13 13:56   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 02/37] gpe-question: don't strip during install - this breaks now with new install - strip is done in packaging koen.kooi
2009-05-13 13:56   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 03/37] gpe-othello: " koen.kooi
2009-05-13 13:57   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 04/37] gpe-nmf: " koen.kooi
2009-05-13 14:03   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 05/37] gpe-lights: " koen.kooi
2009-05-13 14:04   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 06/37] gpe-go: " koen.kooi
2009-05-13 14:05   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 07/37] gpe-soundbite: " koen.kooi
2009-05-13 14:05   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 08/37] gpe-calculator: " koen.kooi
2009-05-13 14:06   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 09/37] libdisplaymigration: Makefile fix - don't strip on install koen.kooi
2009-05-13 14:06   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 10/37] gpe-confd: " koen.kooi
2009-05-13 14:07   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 11/37] xst: " koen.kooi
2009-05-13 14:10   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 12/37] gpe-su: " koen.kooi
2009-05-13 14:12   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 13/37] minilite: " koen.kooi
2009-05-13 14:13   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 14/37] keylaunch: " koen.kooi
2009-05-13 14:13   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 15/37] gpe-taskmanager: " koen.kooi
2009-05-13 14:14   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 16/37] teleport: " koen.kooi
2009-05-13 14:14   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 17/37] gpe-autostarter: " koen.kooi
2009-05-13 14:15   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 18/37] gpe-soundserver: " koen.kooi
2009-05-13 14:15   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 19/37] gpe-aerial: fix Makefiles " koen.kooi
2009-05-13 14:15   ` Philip Balister
2009-05-13  9:38 ` [STABLE][PATCH 20/37] teleport: reorder patches for old version 0.33 (still breaks compiling) koen.kooi
2009-05-14  7:00   ` Koen Kooi
2009-05-13  9:39 ` [STABLE][PATCH 21/37] gpe-autostarter_svn: remove 'no strip patch' and hope they fix upstream koen.kooi
2009-05-13 14:17   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 22/37] gpe-su: remove unused entries from checksums.ini koen.kooi
2009-05-13 13:07   ` Frans Meulenbroeks
2009-05-13 14:02     ` Koen Kooi
2009-05-13  9:39 ` [STABLE][PATCH 23/37] libart-lgpl: fix install issue, switch to INC_PR scheme koen.kooi
2009-05-13 14:18   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 24/37] xdemineur: Don't do "install -s" koen.kooi
2009-05-13 14:19   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 25/37] libart-lgpl: remove INSTALL variable as install should be provided by autotools koen.kooi
2009-05-13 14:19   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 26/37] gsoko: don't do "install -s" koen.kooi
2009-05-13 14:19   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 27/37] gpe-plucker: Fix install koen.kooi
2009-05-13 14:20   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 28/37] gpe-plucker: Add patch koen.kooi
2009-05-13 14:20   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 29/37] gpe-announce: Fix install: don't do install -s koen.kooi
2009-05-13 14:21   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 30/37] gpe-clock: Fix install: Don't " koen.kooi
2009-05-13 14:22   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 31/37] gpe-tetris: Fix install: don't di " koen.kooi
2009-05-13 14:22   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 32/37] gpe-watch: Fix install: don't do " koen.kooi
2009-05-13 14:23   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 33/37] gpe-mixer: fix Makefile - don't strip on install koen.kooi
2009-05-13 14:23   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 34/37] startup-monitor: fix makefile " koen.kooi
2009-05-13 14:23   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 35/37] netpbm: remove -s on install (sigh) koen.kooi
2009-05-13 14:24   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 36/37] logrotate: remove -s on install koen.kooi
2009-05-13 14:24   ` Philip Balister
2009-05-13  9:39 ` [STABLE][PATCH 37/37] monit: add patch to remove -s in install koen.kooi
2009-05-14  7:00   ` Koen Kooi
2009-05-14 12:35     ` Philip Balister
2009-05-13 14:05 ` [STABLE][PATCH 00/37] Fix install -s problems Koen Kooi

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.