diff options
Diffstat (limited to 'opie-memoryapplet/opie-memoryapplet_1.1.7.oe')
-rw-r--r-- | opie-memoryapplet/opie-memoryapplet_1.1.7.oe | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/opie-memoryapplet/opie-memoryapplet_1.1.7.oe b/opie-memoryapplet/opie-memoryapplet_1.1.7.oe index e69de29bb2..4d323bee28 100644 --- a/opie-memoryapplet/opie-memoryapplet_1.1.7.oe +++ b/opie-memoryapplet/opie-memoryapplet_1.1.7.oe @@ -0,0 +1,38 @@ +DESCRIPTION = "Memory Applet. \ +This applet displays the amount of free memory and manages the swap partition" +SECTION = "opie/applets" +PRIORITY = "optional" +LICENSE = "GPL" + +APPNAME = "memoryapplet" + +TAG = "${@'v' + oe.data.getVar('PV',d,1).replace('.', '_')}" +SRC_URI = "${HANDHELDS_CVS};tag=${TAG};module=opie/noncore/applets/memoryapplet \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/noncore/settings/sysinfo \ + ${HANDHELDS_CVS};tag=${TAG};module=opie/pics \ + 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/ +} + |