diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-07-17 22:08:34 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2004-07-17 22:08:34 +0000 |
commit | 177e74f1521190142a321b5c2437cb30ee9996fa (patch) | |
tree | ea330255c28a3532e19eaf49f51d56de4860bb85 /opie-unikeyboard | |
parent | ebbc02d2214b4eae99283e659ebda71eaf30366e (diff) |
Merge bk://openembedded@openembedded.bkbits.net/packages
into home.hrw.one.pl:/home/szczepan/zaurus/oe/packages
2004/07/18 00:08:23+02:00 hrw.one.pl!hrw
"$D" again ;(
BKrev: 40f9a362A2KnsXtA4XFYg0RfrC_YIg
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() { +} + |