summaryrefslogtreecommitdiffstats
path: root/meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb
diff options
context:
space:
mode:
authorAndreas Müller <schnitzeltony@gmail.com>2017-12-17 19:21:37 +0100
committerArmin Kuster <akuster808@gmail.com>2017-12-30 12:32:14 -0800
commit5fc50827f3cab63f1f7deaa3c0210526d7a09daf (patch)
treed6c10bc8c3cb95244570f04df8f0ff83acd50d2a /meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb
parente4be8f4e9e449475644179a8c7b0d4c6c4e5cb16 (diff)
downloadmeta-openembedded-5fc50827f3cab63f1f7deaa3c0210526d7a09daf.tar.gz
gvfs: update 1.32.1 -> 1.34.1
* --with-archive-includes and --with-archive-libs were removed in [1] * --enable-gtk was removed in [2] * build tested with full (except cdda) and empty PACKAGECONFIG * run tested with PACKAGECONFIG = "archive gcr libmtp libgphoto2 samba systemd" * fixes long delay when unmounting memory sticks [1] https://git.gnome.org/browse/gvfs/commit/configure.ac?id=03fbe16aebced70118f070f898d7b459e1125580 [2] https://git.gnome.org/browse/gvfs/commit/configure.ac?id=dff13283c943c8b10265bd3925d86f17cdc4be6f Signed-off-by: Andreas Müller <schnitzeltony@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb')
-rw-r--r--meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb63
1 files changed, 63 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb b/meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb
new file mode 100644
index 0000000000..8d7865fd6f
--- /dev/null
+++ b/meta-gnome/recipes-gnome/gvfs/gvfs_1.34.1.bb
@@ -0,0 +1,63 @@
1DESCRIPTION = "gvfs is a userspace virtual filesystem"
2LICENSE = "LGPLv2"
3LIC_FILES_CHKSUM = "file://COPYING;md5=05df38dd77c35ec8431f212410a3329e"
4
5inherit gnome bash-completion gettext
6
7DEPENDS += "libsecret glib-2.0 gconf intltool-native libgudev udisks2 polkit shadow-native"
8
9SRC_URI = "https://download.gnome.org/sources/${BPN}/${@gnome_verdir("${PV}")}/${BPN}-${PV}.tar.xz;name=archive"
10
11SRC_URI[archive.md5sum] = "44012824aa75797a7d272cd60f07b488"
12SRC_URI[archive.sha256sum] = "7ef9b2aec234004271a575118a0e35b3c36ce3309e5f9da109635651843372b4"
13
14EXTRA_OECONF = " \
15 --disable-gdu \
16 --enable-udisks2 \
17 --disable-documentation \
18"
19
20PACKAGES =+ "gvfsd-ftp gvfsd-sftp gvfsd-trash"
21
22FILES_${PN} += " \
23 ${datadir}/glib-2.0 \
24 ${datadir}/GConf \
25 ${datadir}/dbus-1/services \
26 ${libdir}/gio/modules/*.so \
27 ${libdir}/tmpfiles.d \
28 ${systemd_user_unitdir} \
29"
30RDEPENDS_${PN} = "udisks2"
31
32FILES_${PN}-dbg += "${libdir}/gio/modules/.debug/*"
33FILES_${PN}-dev += "${libdir}/gio/modules/*.la"
34
35FILES_gvfsd-ftp = "${libexecdir}/gvfsd-ftp ${datadir}/gvfs/mounts/ftp.mount"
36FILES_gvfsd-sftp = "${libexecdir}/gvfsd-sftp ${datadir}/gvfs/mounts/sftp.mount"
37FILES_gvfsd-trash = "${libexecdir}/gvfsd-trash ${datadir}/gvfs/mounts/trash.mount"
38
39RRECOMMENDS_gvfsd-ftp += "openssh-sftp openssh-ssh"
40
41PACKAGECONFIG ?= "libgphoto2 ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}"
42
43PACKAGECONFIG[afc] = "--enable-afc, --disable-afc, libimobiledevice libplist"
44PACKAGECONFIG[archive] = "--enable-archive, --disable-archive, libarchive"
45PACKAGECONFIG[avahi] = "--enable-avahi, --disable-avahi, avahi"
46PACKAGECONFIG[gcr] = "--enable-gcr, --disable-gcr, gcr"
47PACKAGECONFIG[http] = "--enable-http, --disable-http, libsoup-2.4"
48PACKAGECONFIG[libmtp] = "--enable-libmtp, --disable-libmtp, libmtp"
49PACKAGECONFIG[libgphoto2] = "--enable-gphoto2, --disable-gphoto2, libgphoto2"
50PACKAGECONFIG[samba] = "--enable-samba, --disable-samba, samba"
51PACKAGECONFIG[systemd] = "--with-systemduserunitdir=${systemd_user_unitdir},--without-systemduserunitdir,systemd"
52
53# needs meta-filesystems
54PACKAGECONFIG[fuse] = "--enable-fuse, --disable-fuse, fuse"
55
56# libcdio-paranoia recipe doesn't exist yet
57PACKAGECONFIG[cdda] = "--enable-cdda, --disable-cdda, libcdio-paranoia"
58
59# Fix up permissions on polkit rules.d to work with rpm4 constraints
60do_install_append() {
61 chmod 700 ${D}/${datadir}/polkit-1/rules.d
62 chown polkitd:root ${D}/${datadir}/polkit-1/rules.d
63}