Merge bk://oe-devel.bkbits.net/openembedded
authornslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>
Sat, 1 Jan 2005 22:40:06 +0000 (22:40 +0000)
committernslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net>
Sat, 1 Jan 2005 22:40:06 +0000 (22:40 +0000)
into bkbits.net:/repos/n/nslu2-linux/openembedded

2005/01/01 22:06:40+00:00 nexus.co.uk!pb
Merge bk://oe-devel@oe-devel.bkbits.net/openembedded
into stealth.nexus.co.uk:/home/pb/oe/oe

2005/01/01 22:06:00+00:00 nexus.co.uk!pb
update bluez-utils to 2.13

2005/01/01 22:44:04+01:00 handhelds.org!CoreDump
Allow for spaces in file names

BKrev: 41d726c6z999yguquTBR29BzDKWOxw

packages/bluez-utils/bluez-utils-common_2.13.inc [new file with mode: 0644]
packages/bluez-utils/bluez-utils-dbus-2.13/dbus.patch [new file with mode: 0644]
packages/bluez-utils/bluez-utils-dbus-2.13/smash.patch [new file with mode: 0644]
packages/bluez-utils/bluez-utils-dbus_2.13.bb [new file with mode: 0644]
packages/bluez-utils/bluez-utils-nodbus_2.13.bb [new file with mode: 0644]
packages/opie-sh-snes/files/opie-sh-snes.sh
packages/opie-sh-snes/opie-sh-snes_0.2.bb

diff --git a/packages/bluez-utils/bluez-utils-common_2.13.inc b/packages/bluez-utils/bluez-utils-common_2.13.inc
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/bluez-utils/bluez-utils-dbus-2.13/dbus.patch b/packages/bluez-utils/bluez-utils-dbus-2.13/dbus.patch
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/bluez-utils/bluez-utils-dbus-2.13/smash.patch b/packages/bluez-utils/bluez-utils-dbus-2.13/smash.patch
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/bluez-utils/bluez-utils-dbus_2.13.bb b/packages/bluez-utils/bluez-utils-dbus_2.13.bb
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/bluez-utils/bluez-utils-nodbus_2.13.bb b/packages/bluez-utils/bluez-utils-nodbus_2.13.bb
new file mode 100644 (file)
index 0000000..e69de29
index e69de29..0d5c3e0 100644 (file)
@@ -0,0 +1,50 @@
+#!/bin/sh
+#Path to your Roms if you want to disable the menu
+#LOCATION=/mnt/card/games/snes
+
+# Give a default
+if test -e /root/Settings/opie-sh-snes.conf
+then
+       LOCATION="`cat /root/Settings/opie-sh-snes.conf`"
+else
+       echo "/mnt/card/games/snes" > /root/Settings/opie-sh-snes.conf
+       #Enable Menu Rom Finder
+       LOCATION="` opie-sh -i -t "Path to Roms" -g -E -l -F /root/Settings/opie-sh-snes.conf `"
+       ! test -z "$LOCATION" && echo $LOCATION > /root/Settings/opie-sh-snes.conf
+fi     
+
+echo "LOCATION = [$LOCATION]"
+if [ "$LOCATION" = "" ]; then exit; fi
+
+
+#Load a game from your list
+ROM=`  cd "$LOCATION" ; ls -1 *.zip \
+       | opie-sh -i -l -t "Snes9x" -F  -g `
+if [ "$ROM" = "" ]; then exit; fi
+
+echo "ROM = [$ROM]"
+
+#Enable Sound Button
+setsound () {
+       opie-sh -m -t "Sound"   \
+       -M "Do you want sound?" \
+       -g -0 Yes -1 No
+RETURNCODE=$?
+
+case $RETURNCODE in
+        0)  SOUND="-sound" ;;
+        1)  SOUND="-nosound" ;;
+esac
+
+echo "SOUND = [$SOUND] / RC = [$?]"
+}
+
+
+setsound
+
+
+
+if [ "$SOUND" = "" ]; then exit; fi
+
+
+snes9x $SOUND "$LOCATION/$ROM"
index e69de29..a18d187 100644 (file)
@@ -0,0 +1,29 @@
+MAINTAINER = "Matthias 'CoreDump' Hentges <coredump@handhelds.org>
+DESCRIPTION = "Displays a list of available ROMs for use with snes9x."
+SECTION = "opie/shell"
+PRIORITY = "optional"
+LICENSE = "GPL"
+
+RDEPENDS = "opie-sh"
+
+
+PR = "r1"
+
+FILES_${PN} = "/opt/QtPalmtop"
+
+SRC_URI = "file://snes.desktop \
+           file://snes.png \
+          file://opie-sh-snes.sh"
+          
+
+do_install() {
+
+       for dir in apps apps/Games bin pics
+       do
+               install -d ${D}/opt/QtPalmtop/$dir
+       done
+       
+       install -m 755 ${WORKDIR}/opie-sh-snes.sh ${D}/opt/QtPalmtop/bin
+       install -m 644 ${WORKDIR}/*.png ${D}/opt/QtPalmtop/pics
+       install -m 644 ${WORKDIR}/*.desktop ${D}/opt/QtPalmtop/apps/Games
+}