summaryrefslogtreecommitdiff
path: root/packages/nonworking/maemo/hildon-initscripts
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
committerDenys Dmytriyenko <denis@denix.org>2009-03-17 14:32:59 -0400
commit709c4d66e0b107ca606941b988bad717c0b45d9b (patch)
tree37ee08b1eb308f3b2b6426d5793545c38396b838 /packages/nonworking/maemo/hildon-initscripts
parentfa6cd5a3b993f16c27de4ff82b42684516d433ba (diff)
rename packages/ to recipes/ per earlier agreement
See links below for more details: http://thread.gmane.org/gmane.comp.handhelds.openembedded/21326 http://thread.gmane.org/gmane.comp.handhelds.openembedded/21816 Signed-off-by: Denys Dmytriyenko <denis@denix.org> Acked-by: Mike Westerhof <mwester@dls.net> Acked-by: Philip Balister <philip@balister.org> Acked-by: Khem Raj <raj.khem@gmail.com> Acked-by: Marcin Juszkiewicz <hrw@openembedded.org> Acked-by: Koen Kooi <koen@openembedded.org> Acked-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Diffstat (limited to 'packages/nonworking/maemo/hildon-initscripts')
-rw-r--r--packages/nonworking/maemo/hildon-initscripts/hildon-initscripts-source.patch109
1 files changed, 0 insertions, 109 deletions
diff --git a/packages/nonworking/maemo/hildon-initscripts/hildon-initscripts-source.patch b/packages/nonworking/maemo/hildon-initscripts/hildon-initscripts-source.patch
deleted file mode 100644
index 8e25b5f8a0..0000000000
--- a/packages/nonworking/maemo/hildon-initscripts/hildon-initscripts-source.patch
+++ /dev/null
@@ -1,109 +0,0 @@
-diff -ur af-sb-init.sh.in.old af-sb-init.sh.in
---- af-sb-init.sh.in.old 2005-06-14 16:45:53.000000000 +0200
-+++ af-sb-init.sh.in 2005-06-14 16:48:46.000000000 +0200
-@@ -45,7 +45,7 @@
- exit 2
- fi
-
--source $AF_DEFS
-+. $AF_DEFS
-
- # let's use /var/run as pid dir and make sure it is not a link
- export AF_PIDDIR=/var/run
-@@ -64,14 +64,14 @@
- export HOME="/home/$USER"
- export MYDOCSDIR=$HOME/MyDocs
-
--source $DIR/osso-gtk.defs
-+. $DIR/osso-gtk.defs
-
- # Let's use SB launcher wrapper
- export LAUNCHWRAPPER=/usr/bin/scratchbox-launcher.sh
-
- # Check our environment
- if [ -e /targets/links/scratchbox.config ]; then
-- source /targets/links/scratchbox.config
-+ . /targets/links/scratchbox.config
- if echo $SBOX_CPUTRANSPARENCY_METHOD | grep "sbrsh$" >/dev/null; then
- if [ -z "$SBOX_TARGET_NAME" ]; then
- echo "$0: SBOX_CPUTRANSPARENCY_METHOD defined but SBOX_TARGET_NAME not!"
-@@ -102,7 +102,7 @@
-
- fi
-
--# we need to save these, because the source commands below messes them up
-+# we need to save these, because the . commands below messes them up
- TMPSTART=$START
- TMPSTOP=$STOP
- if [ "$STOP" = "TRUE" ]; then
-@@ -118,16 +118,16 @@
- dbus-systembus;
- do
- if [ -e $DIR/$svc.defs ]; then
-- source $DIR/$svc.defs
-+ . $DIR/$svc.defs
- fi
- if [ -e $DIR/$svc.sh ]; then
-- source $DIR/$svc.sh stop
-+ . $DIR/$svc.sh stop
- fi
- done
-
- # stop
- if [ -r /usr/bin/osso-connectivity-ui.sh ]; then
-- source /usr/bin/osso-connectivity-ui.sh stop
-+ . /usr/bin/osso-connectivity-ui.sh stop
- fi
-
- # remove dbus own dbus pid file
-@@ -193,14 +193,14 @@
- statusbar;
- do
- if [ -e $DIR/$svc.defs ]; then
-- source $DIR/$svc.defs
-+ . $DIR/$svc.defs
- fi
- if [ -e $DIR/$svc.sh ]; then
-- source $DIR/$svc.sh start
-+ . $DIR/$svc.sh start
- fi
- done
-
- if [ -e /usr/bin/osso-connectivity-ui.sh ]; then
-- source /usr/bin/osso-connectivity-ui.sh start
-+ . /usr/bin/osso-connectivity-ui.sh start
- fi
- fi
-diff -ur run-standalone.sh.old run-standalone.sh
---- run-standalone.sh.old 2005-06-14 16:45:53.000000000 +0200
-+++ run-standalone.sh 2005-06-14 16:48:46.000000000 +0200
-@@ -2,7 +2,7 @@
-
- if [ -e /etc/osso-af-init/af-defines.sh ]
- then
-- source /etc/osso-af-init/af-defines.sh
-+ . /etc/osso-af-init/af-defines.sh
- else
- echo "/etc/osso-af-init/af-defines.sh not found!"
- exit 1
-@@ -10,7 +10,7 @@
-
- for i in /etc/osso-af-init/*.defs
- do
-- source $i
-+ . $i
- done
-
- $*
-diff -ur scratchbox-launcher.sh.old scratchbox-launcher.sh
---- scratchbox-launcher.sh.old 2005-06-14 16:45:53.000000000 +0200
-+++ scratchbox-launcher.sh 2005-06-14 16:48:46.000000000 +0200
-@@ -35,7 +35,7 @@
- PIDFILE="$AF_PIDDIR/$BASENAME-$TMPSVC.pid"
-
- if [ -e /targets/links/scratchbox.config ]; then
-- source /targets/links/scratchbox.config
-+ . /targets/links/scratchbox.config
- if echo $SBOX_CPUTRANSPARENCY_METHOD | grep "sbrsh$" >/dev/null; then
- if [ -z "$SBOX_TARGET_NAME" ]; then
- echo "$0: SBOX_CPUTRANSPARENCY_METHOD defined but SBOX_TARGET_NAME not!"