diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-06-08 19:58:49 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-06-08 19:58:49 +0000 |
commit | 1f7cdc4cde47c580381e7a11b9e5520cf0e6ffaa (patch) | |
tree | 9d48347ad3b25cc82c7c1cb187baf3c1d2905a67 | |
parent | e85117372080e3e1a0b4c3b1f4c234d9afd3764a (diff) |
set APPNAME or else opie.oeclass doesn't get the right libname. fixed for opie-memoryapplet.
BKrev: 40c61a79hfRNT6VZhZYp1o2fvDQfHQ
-rw-r--r-- | opie-memoryapplet/opie-memoryapplet_cvs.oe | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/opie-memoryapplet/opie-memoryapplet_cvs.oe b/opie-memoryapplet/opie-memoryapplet_cvs.oe index e69de29bb2..6d0387a65e 100644 --- a/opie-memoryapplet/opie-memoryapplet_cvs.oe +++ b/opie-memoryapplet/opie-memoryapplet_cvs.oe @@ -0,0 +1,37 @@ +DESCRIPTION = "Memory Applet. \ +This applet displays the amount of free memory and manages the swap partition" +SECTION = "opie/applets" +PRIORITY = "optional" +LICENSE = "GPL" +PV = "1.1.4-cvs-${CVSDATE}" +APPNAME = "memoryapplet" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/applets/memoryapplet;date=${CVSDATE} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/settings/sysinfo;date=${CVSDATE} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/pics;date=${CVSDATE} \ + file://memoryapplet.pro.patch;patch=1" + +S = "${WORKDIR}/memoryapplet" + +inherit opie + +pkg_postinst() { +#!/bin/sh +if pidof -s qpe >/dev/null; then + /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +fi + if [ -n "$D" ]; then false; fi +} + +pkg_postrm() { +#!/bin/sh +/opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" + if [ -n "$D" ]; then false; fi +} + +do_install() { + install -d ${D}/${palmtopdir}/plugins/applets ${D}/${palmtopdir}/pics/memory/ + install -m 0644 ${WORKDIR}/pics/memory/*.png ${D}/${palmtopdir}/pics/memory/ + oe_libinstall -so libmemoryapplet ${D}/${palmtopdir}/plugins/applets/ +} + |