diff options
-rw-r--r-- | classes/base.bbclass | 4 | ||||
-rw-r--r-- | packages/opie-lockapplet/opie-lockapplet.inc | 33 |
2 files changed, 35 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index 1ce9918cb8..0d29de144a 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -324,7 +324,7 @@ python base_do_fetch() { return 1 try: - bb.fetch.init(src_uri.split()) + bb.fetch.init(src_uri.split(),d) except bb.fetch.NoMethodError: (type, value, traceback) = sys.exc_info() raise bb.build.FuncFailed("No method: %s" % value) @@ -438,7 +438,7 @@ python base_do_patch() { if not "patch" in parm: continue - bb.fetch.init([url]) + bb.fetch.init([url], d) url = bb.encodeurl((type, host, path, user, pswd, [])) local = os.path.join('/', bb.fetch.localpath(url, d)) 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/ +} + |