DESCRIPTION = "A secondary system tray for those people who like having a lot of applets loaded at once." SECTION = "opie/applets" PRIORITY = "optional" LICENSE = "GPL" MAINTAINER = "Marcin Juszkiewicz " HOMEPAGE = "http://sourceforge.net/projects/subapplet/" PR = "r3" SRC_URI = "${SOURCEFORGE_MIRROR}/subapplet/subapplet-1.0.8.tar.gz" S = "${WORKDIR}/SubApplet-1.0.8" inherit palmtop QMAKE_PROFILES = "subapplet.pro" do_install() { install -d ${D}/${palmtopdir}/plugins/applets ${D}/${palmtopdir}/pics/subapplet/ install -m 0644 *.png ${D}/${palmtopdir}/pics/subapplet/ oe_libinstall -so -C rel${palmtopdir}/plugins/applets libsubapplet ${D}/${palmtopdir}/plugins/applets/ } pkg_postinst() { #!/bin/sh if pidof -s qpe >/dev/null; then /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" else exit 0 fi if [ -n "$D" ]; then false; fi } pkg_postrm() { #!/bin/sh /opt/QtPalmtop/bin/qcop QPE/TaskBar "reloadApplets()" if [ -n "$D" ]; then false; fi }