diff options
Diffstat (limited to 'opie-volumeapplet/opie-volumeapplet_cvs.oe')
-rw-r--r-- | opie-volumeapplet/opie-volumeapplet_cvs.oe | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/opie-volumeapplet/opie-volumeapplet_cvs.oe b/opie-volumeapplet/opie-volumeapplet_cvs.oe index e69de29bb2..60b7a1f440 100644 --- a/opie-volumeapplet/opie-volumeapplet_cvs.oe +++ b/opie-volumeapplet/opie-volumeapplet_cvs.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "Volume applet" +SECTION = "opie/applets" +PRIORITY = "optional" +MAINTAINER = "Open Embedded <oe@handhelds.org>" +LICENSE = "GPL" +DEPENDS = "" +PV = "1.1.4-cvs-${CVSDATE}" +APPNAME = "volumeapplet" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/core/applets/volumeapplet;date=${CVSDATE} \ + cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/apps;date=${CVSDATE}" + +S = "${WORKDIR}/${APPNAME}" + +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 +} + +# FILES plugins/applets/libvolumeapplet.so* +do_install() { +} + |