diff options
author | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-05-20 20:39:43 +0000 |
---|---|---|
committer | nslu2-linux.adm@bkbits.net <nslu2-linux.adm@bkbits.net> | 2005-05-20 20:39:43 +0000 |
commit | ac90f129cfed9f9761f4f95a8e4d227a7831d270 (patch) | |
tree | 8997aabf4e643e20c9a84ae0331d43f1405ea7a7 /packages/opie-lockapplet | |
parent | 805db11121f7e1d4ba1d6fae44d2199d5f30f088 (diff) |
Merge bk://oe-devel.bkbits.net/openembedded
into bkbits.net:/repos/n/nslu2-linux/openembedded
2005/05/20 21:49:48+02:00 handhelds.org!zecke
opie-lockapplet/opie-security:
lock.png is installed by both opie-lockapplet and opie-security.
As opie-lockapplet depends on opie-security we will leave it
to opie-security to install lock.png
2005/05/20 21:41:54+02:00 handhelds.org!zecke
classes/base.bbclass:
Call the fetcher methods with a data-instance instead of None
BKrev: 428e4b0fK4bxvnkYhyIyuoE_4wi3Gw
Diffstat (limited to 'packages/opie-lockapplet')
-rw-r--r-- | packages/opie-lockapplet/opie-lockapplet.inc | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/opie-lockapplet/opie-lockapplet.inc b/packages/opie-lockapplet/opie-lockapplet.inc index e69de29bb2..10bf61eb4e 100644 --- a/packages/opie-lockapplet/opie-lockapplet.inc +++ b/packages/opie-lockapplet/opie-lockapplet.inc @@ -0,0 +1,33 @@ +DESCRIPTION = "Lock Opie now Button to lock Opie (as configured in the Security settings) on demand." +SECTION = "opie/applets" +PRIORITY = "optional" +LICENSE = "GPL" +MAINTAINER = "Team Opie <opie@handhelds.org>" +APPNAME = "lockapplet" +DEPENDS = "opie-security" +RDEPENDS = "opie-security" + + +S = "${WORKDIR}/lockapplet" + +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/security/ + oe_libinstall -so liblockapplet ${D}${palmtopdir}/plugins/applets/ +} + |