blob: ae7e920a91e2a048153553850cc98ff569e63990 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
DESCRIPTION = "Password and keyring managing daemon"
HOMEPAGE = "http://www.gnome.org/"
BUGTRACKER = "https://bugzilla.gnome.org/"
LICENSE = "GPLv2+ & LGPLv2+ & LGPLv2.1+"
SECTION = "x11/gnome"
PR = "r1"
inherit autotools gnome pkgconfig
DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf"
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"
FILES_${PN}-dbg += "${libdir}/gnome-keyring/standalone/.debug/"
FILES_${PN}-dbg += "${libdir}/gnome-keyring/devel/.debug/"
|