diff options
Diffstat (limited to 'opie-unikeyboard')
-rw-r--r-- | opie-unikeyboard/opie-unikeyboard_cvs.oe | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/opie-unikeyboard/opie-unikeyboard_cvs.oe b/opie-unikeyboard/opie-unikeyboard_cvs.oe index e69de29bb2..e60d9db2ad 100644 --- a/opie-unikeyboard/opie-unikeyboard_cvs.oe +++ b/opie-unikeyboard/opie-unikeyboard_cvs.oe @@ -0,0 +1,34 @@ +DESCRIPTION = "Unicode input method" +SECTION = "opie/inputmethods" +PRIORITY = "optional" +MAINTAINER = "Open Embedded <oe@handhelds.org>" +LICENSE = "GPL" +PV = "1.1.4-cvs-${CVSDATE}" +APPNAME = "qunikeyboard" + +SRC_URI = "cvs://anoncvs:anoncvs@cvs.handhelds.org/cvs;module=opie/inputmethods/unikeyboard;date=${CVSDATE} " + +S = "${WORKDIR}/unikeyboard" + +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 "reloadInputMethods()" +} + +# FILES plugins/inputmethods/libqunikeyboard.so* +do_install() { +} + |