diff options
Diffstat (limited to 'opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe')
-rw-r--r-- | opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe b/opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe index e69de29bb2..432d1bd9dd 100644 --- a/opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe +++ b/opie-brightnessapplet/opie-brightnessapplet_1.1.7.oe @@ -0,0 +1,37 @@ +DESCRIPTION = "Brightness Applet" +SECTION = "opie/applets" +PRIORITY = "optional" +MAINTAINER = "Team Opie <opie@handhelds.org>" +LICENSE = "GPL" + +APPNAME = "brightnessapplet" + + +TAG = "${@'v' + oe.data.getVar('PV',d,1).replace('.', '_')}" +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/noncore/applets/brightnessapplet \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;tag=${TAG};module=opie/pics" +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +do_install() { + install -d ${D}/${palmtopdir}/pics/${APPNAME} + install -m 0655 ${WORKDIR}/pics/${APPNAME}/*.png ${D}/${palmtopdir}/pics/${APPNAME}/ +} + +pkg_postinst() { +#!/bin/sh +if [ -n "$D" ]; then exit 1; fi +if pidof -s qpe >/dev/null; then + /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +else + exit 0 +fi +} + +pkg_postrm() { +#!/bin/sh +if [ -n "$D" ]; then exit 1; fi +/opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" +} + |