diff options
author | Andreas Müller <schnitzeltony@gmx.de> | 2012-01-08 19:02:23 +0000 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2012-01-09 10:31:00 +0100 |
commit | 5b8522e3b592c96ec9325aff4bbaa68972e52d5b (patch) | |
tree | 4b4fb90a11c5fc3ecf3bd6f7ae8a649eaca26a48 /meta-gnome/recipes-gnome/gvfs/gvfs.inc | |
parent | 6ae89951a73c97f6f1b4bbde39f3dadb72fa3dcd (diff) | |
download | meta-openembedded-5b8522e3b592c96ec9325aff4bbaa68972e52d5b.tar.gz |
gvfs: rework and add recipe for gvfs-gdu-volume-monitor
To make gvfs work with removable devices/volumes, gvfs-gdu-volume-monitor
( gdu = gnome-disk-utility ) is required. During a build from scratch
gvfs-configure disables gdu because it can not find gnome-disk-utility.
It can not be added to gvfs DEPENDS because this causes circular dependencies:
nautilus DEPENDS gvfs
gvfs DEPENDS gnome-disk-utility
gnome-disk-utility DEPENDS nautilus
The solution is a new recipe for gvfs-gdu-volume-monitor. To reduce maintenance
efforts and to ensure that gvfs-gdu-volume-monitor is build under same
conditions as gvfs, as much settings as possible were moved to gvfs.inc. INC_PR
is started at 6 to ensure rebuilding.
run-tested for incremental build and build from scratch.
Signed-off-by: Andreas Müller <schnitzeltony@gmx.de>
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-gnome/recipes-gnome/gvfs/gvfs.inc')
-rw-r--r-- | meta-gnome/recipes-gnome/gvfs/gvfs.inc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/meta-gnome/recipes-gnome/gvfs/gvfs.inc b/meta-gnome/recipes-gnome/gvfs/gvfs.inc new file mode 100644 index 000000000..b6a0526f4 --- /dev/null +++ b/meta-gnome/recipes-gnome/gvfs/gvfs.inc | |||
@@ -0,0 +1,19 @@ | |||
1 | DESCRIPTION = "gvfs is a userspace virtual filesystem" | ||
2 | LICENSE = "LGPLv2" | ||
3 | LIC_FILES_CHKSUM = "file://COPYING;md5=3bf50002aefd002f49e7bb854063f7e7" | ||
4 | |||
5 | inherit gnome | ||
6 | |||
7 | INC_PR = "r6" | ||
8 | |||
9 | SRC_URI[archive.md5sum] = "402f94b187b197b403d25c85caeb9562" | ||
10 | SRC_URI[archive.sha256sum] = "0895ac8f6d416e1b15433b6b6b68eb119c6e8b04fdb66db665d684355ef89345" | ||
11 | |||
12 | EXTRA_OECONF = "--disable-samba \ | ||
13 | --with-samba-includes=${STAGING_INCDIR} \ | ||
14 | --with-samba-libs=${STAGING_LIBDIR} \ | ||
15 | --with-archive-includes=${STAGING_INCDIR} \ | ||
16 | " | ||
17 | |||
18 | FILES_${PN} += "${datadir}/dbus-1/services/*" | ||
19 | |||