diff options
-rw-r--r-- | libopietooth/libopietooth_cvs.oe | 0 | ||||
-rw-r--r-- | opie-taskbar/opie-taskbar/corgi/qpe.conf | 0 | ||||
-rw-r--r-- | opie-taskbar/opie-taskbar/husky/qpe.conf | 0 | ||||
-rw-r--r-- | opie-taskbar/opie-taskbar/qpe.conf | 0 | ||||
-rw-r--r-- | opie-taskbar/opie-taskbar/shepherd/qpe.conf | 0 | ||||
-rw-r--r-- | opie-wirelessapplet/opie-wirelessapplet_cvs.oe | 34 |
6 files changed, 34 insertions, 0 deletions
diff --git a/libopietooth/libopietooth_cvs.oe b/libopietooth/libopietooth_cvs.oe new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/libopietooth/libopietooth_cvs.oe diff --git a/opie-taskbar/opie-taskbar/corgi/qpe.conf b/opie-taskbar/opie-taskbar/corgi/qpe.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/opie-taskbar/opie-taskbar/corgi/qpe.conf diff --git a/opie-taskbar/opie-taskbar/husky/qpe.conf b/opie-taskbar/opie-taskbar/husky/qpe.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/opie-taskbar/opie-taskbar/husky/qpe.conf diff --git a/opie-taskbar/opie-taskbar/qpe.conf b/opie-taskbar/opie-taskbar/qpe.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/opie-taskbar/opie-taskbar/qpe.conf diff --git a/opie-taskbar/opie-taskbar/shepherd/qpe.conf b/opie-taskbar/opie-taskbar/shepherd/qpe.conf new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/opie-taskbar/opie-taskbar/shepherd/qpe.conf diff --git a/opie-wirelessapplet/opie-wirelessapplet_cvs.oe b/opie-wirelessapplet/opie-wirelessapplet_cvs.oe index e69de29bb2..05b1da3447 100644 --- a/opie-wirelessapplet/opie-wirelessapplet_cvs.oe +++ b/opie-wirelessapplet/opie-wirelessapplet_cvs.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "Wireless Applet" +SECTION = "opie/applets" +PRIORITY = "optional" +MAINTAINER = "Open Embedded <oe@handhelds.org>" +LICENSE = "GPL" +PV = "1.1.4-cvs-${CVSDATE}" +APPNAME = "wirelessapplet" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/noncore/applets/wirelessapplet;date=${CVSDATE}" + +S = "${WORKDIR}/${APPNAME}" + +inherit opie + +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()" +} + +# FILES plugins/applets/libwirelessapplet.so* +do_install() { +} + |