diff options
-rw-r--r-- | meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb index 4ac75cbef..3b4cbf57f 100644 --- a/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb +++ b/meta-gnome/recipes-gnome/gnome-keyring/gnome-keyring_2.32.1.bb | |||
@@ -20,6 +20,8 @@ SRC_URI += "file://egg-asn1x.patch" | |||
20 | DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} intltool-native" | 20 | DEPENDS = "gtk+ libgcrypt libtasn1 libtasn1-native gconf ${@bb.utils.contains('DISTRO_FEATURES', 'pam', 'libpam', '', d)} intltool-native" |
21 | RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" | 21 | RDEPENDS_${PN} = "libgnome-keyring glib-2.0-utils" |
22 | 22 | ||
23 | LDFLAGS += "-lgmodule-2.0" | ||
24 | |||
23 | EXTRA_OECONF = "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)}" | 25 | EXTRA_OECONF = "${@bb.utils.contains('DISTRO_FEATURES', 'pam', '--enable-pam --with-pam-dir=${base_libdir}/security', '--disable-pam', d)}" |
24 | 26 | ||
25 | SRC_URI[archive.md5sum] = "9a8aa74e03361676f29d6e73155786fc" | 27 | SRC_URI[archive.md5sum] = "9a8aa74e03361676f29d6e73155786fc" |
@@ -42,4 +44,11 @@ FILES_${PN}-dbg += "${libdir}/${BPN}/standalone/.debug/ \ | |||
42 | ${libdir}/${BPN}/devel/.debug/ \ | 44 | ${libdir}/${BPN}/devel/.debug/ \ |
43 | ${base_libdir}/security/.debug/" | 45 | ${base_libdir}/security/.debug/" |
44 | 46 | ||
45 | PNBLACKLIST[gnome-keyring] ?= "This version conflicts with gcr from oe-core - the recipe will be removed on 2017-09-01 unless the issue is fixed" | 47 | # Make compatible with gcr version 3 or newer by removing |
48 | # org.gnome.crypto.pgp.*, which is the provider for this optional | ||
49 | # functionality. | ||
50 | |||
51 | do_install_append() { | ||
52 | rm ${D}${datadir}/GConf/gsettings/org.gnome.crypto.pgp.convert | ||
53 | rm ${D}${datadir}/glib-2.0/schemas/org.gnome.crypto.pgp.gschema.xml | ||
54 | } | ||