gnome-keyring: add a DBus service file so the daemon is auto-started when needed

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2784 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Ross Burton
2007-09-25 14:26:49 +00:00
parent 86fa4f7c19
commit c99719d7e1
2 changed files with 14 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
[D-BUS Service]
Name=org.gnome.keyring
Exec=/usr/bin/gnome-keyring-daemon

View File

@@ -1,12 +1,23 @@
LICENSE = "GPL"
SECTION = "x11/gnome"
PR = "r1"
inherit autotools gnome pkgconfig
DEPENDS = "gtk+ libgcrypt"
EXTRA_OECONF = "--disable-gtk-doc"
SRC_URI += "file://org.gnome.keyring.service"
do_install_append () {
install -d ${D}${datadir}/dbus-1/services
install -m 0644 ${WORKDIR}/org.gnome.keyring.service ${D}${datadir}/dbus-1/services
}
FILES_${PN} += "${datadir}/dbus-1/services"
do_stage() {
autotools_stage_all
}