suspend-desktop: New package providing a desktop entry to suspend some devices using...
authorFlorian Boor <florian.boor@kernelconcepts.de>
Mon, 21 Nov 2005 11:41:15 +0000 (11:41 +0000)
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>
Mon, 21 Nov 2005 11:41:15 +0000 (11:41 +0000)
packages/suspend-desktop/.mtn2git_empty [new file with mode: 0644]
packages/suspend-desktop/suspend-desktop_1.0.bb [new file with mode: 0644]
packages/suspend-desktop/suspend.desktop [new file with mode: 0644]
packages/suspend-desktop/suspend.sh [new file with mode: 0644]

diff --git a/packages/suspend-desktop/.mtn2git_empty b/packages/suspend-desktop/.mtn2git_empty
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/packages/suspend-desktop/suspend-desktop_1.0.bb b/packages/suspend-desktop/suspend-desktop_1.0.bb
new file mode 100644 (file)
index 0000000..4586b61
--- /dev/null
@@ -0,0 +1,26 @@
+PR          = "r0"
+SECTION     = "gpe"
+PRIORITY    = "optional"
+DESCRIPTION = "Suspend feature for the application launcher menu."
+MAINTAINER  = "Florian Boor <florian@kernelconcepts.de>"
+LICENSE     = "GPL"
+DEPENDS     = "gpe-conf"
+RDEPENDS    = "gpe-conf"
+RRECOMMENDS = "apm"
+PACKAGES    = ${PN}
+
+
+SRC_URI = "file://suspend.desktop \
+           file://suspend.sh"
+
+FILES_${PN} = "${bindir} ${datadir}"
+
+do_compile() {
+}
+
+do_install() {
+       install -d ${D}/${bindir}
+       install -d ${D}/${datadir}/applications
+       install -m644 ${WORKDIR}/suspend.desktop ${D}/${datadir}/applications/suspend.desktop
+       install -m755 ${WORKDIR}/suspend.sh ${D}/${bindir}/suspend.sh
+}
diff --git a/packages/suspend-desktop/suspend.desktop b/packages/suspend-desktop/suspend.desktop
new file mode 100644 (file)
index 0000000..21da51a
--- /dev/null
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Suspend
+Comment=Suspend device
+Exec=/usr/bin/suspend.sh
+Terminal=0
+Type=Application
+Icon=gpe-config-sleep.png
+Categories=Utility;GPE;Action
+StartupNotify=False
diff --git a/packages/suspend-desktop/suspend.sh b/packages/suspend-desktop/suspend.sh
new file mode 100644 (file)
index 0000000..990bc09
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/sh
+if [ -x /usr/bin/apm ]
+then
+       /usr/bin/apm --suspend
+else
+       if [ -x /usr/bin/pm ]
+       then
+               /usr/bin/pm -pp
+       fi
+fi