diff options
Diffstat (limited to 'meta-demoapps/recipes-sato/clipboard-manager/clipboard-manager_0.6.4.bb')
| -rw-r--r-- | meta-demoapps/recipes-sato/clipboard-manager/clipboard-manager_0.6.4.bb | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-demoapps/recipes-sato/clipboard-manager/clipboard-manager_0.6.4.bb b/meta-demoapps/recipes-sato/clipboard-manager/clipboard-manager_0.6.4.bb new file mode 100644 index 0000000000..82dd1d047f --- /dev/null +++ b/meta-demoapps/recipes-sato/clipboard-manager/clipboard-manager_0.6.4.bb | |||
| @@ -0,0 +1,33 @@ | |||
| 1 | LICENSE = "GPL" | ||
| 2 | DESCRIPTION = "clipboard manager" | ||
| 3 | DEPENDS = "virtual/libx11" | ||
| 4 | |||
| 5 | SRC_URI = "svn://stage.maemo.org/svn/maemo/projects/haf/tags/clipboard-manager/;module=${PV};proto=https \ | ||
| 6 | file://makefile.patch;patch=1 \ | ||
| 7 | file://script.patch;patch=1 \ | ||
| 8 | file://daemonize.patch;patch=1 \ | ||
| 9 | " | ||
| 10 | |||
| 11 | S = "${WORKDIR}/${PV}" | ||
| 12 | |||
| 13 | inherit autotools pkgconfig | ||
| 14 | |||
| 15 | do_install_append () { | ||
| 16 | mv ${D}/${sysconfdir}/X11/Xsession.d/clipboard.sh ${D}/${sysconfdir}/X11/Xsession.d/70clipboard | ||
| 17 | chmod u+x ${D}/${sysconfdir}/X11/Xsession.d/70clipboard | ||
| 18 | } | ||
| 19 | |||
| 20 | pkg_postinst_clipboard-manager () { | ||
| 21 | #!/bin/sh -e | ||
| 22 | if [ x"$D" = "x" ]; then | ||
| 23 | { | ||
| 24 | if [ x$(pidof clipboard-manager) != x ]; then | ||
| 25 | kill -TERM $(pidof clipboard-manager) | ||
| 26 | fi | ||
| 27 | |||
| 28 | ${sysconfdir}/X11/Xsession.d/70clipboard | ||
| 29 | } > /dev/null | ||
| 30 | else | ||
| 31 | exit 1 | ||
| 32 | fi | ||
| 33 | } | ||
