blob: 1d183996a0557c1e4c6f2da5ddbe412efea87529 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
LICENSE = "GPL"
DEPENDS = "libxml2 gconf gnutls avahi dbus dbus-glib bzip2 gnome-mime-data zlib gtk-doc-native"
RRECOMMENDS = "gnome-vfs-plugin-file shared-mime-info"
# Some legacy packages will require gnome-mime-data to be installed, but use of
# it is deprecated.
PR = "r2"
inherit gnome
SRC_URI += "file://gconftool-lossage.patch;apply=yes \
file://gnome-vfs-no-kerberos.patch;apply=yes;striplevel=0 \
file://03_gnutls27.patch;apply=yes"
# This is to provide compatibility with the gnome-vfs DBus fork
PROVIDES = "gnome-vfs-plugin-dbus"
RREPLACES = "gnome-vfs-dbus"
EXTRA_OECONF = " \
--disable-openssl \
--enable-gnutls \
--enable-avahi \
--with-samba-includes=${STAGING_INCDIR} \
"
do_configure_prepend() {
sed -i -e 's: doc ::g' Makefile.am
}
do_stage () {
autotools_stage_all
}
PACKAGES_DYNAMIC = "gnome-vfs-plugin-*"
python populate_packages_prepend () {
print bb.data.getVar('FILES_gnome-vfs', d, 1)
plugindir = bb.data.expand('${libdir}/gnome-vfs-2.0/modules/', d)
do_split_packages(d, plugindir, '^lib(.*)\.so$', 'gnome-vfs-plugin-%s', 'GNOME VFS plugin for %s')
}
FILES_${PN} += "${libdir}/vfs ${datadir}/dbus-1/services"
FILES_${PN}-dbg += "${libdir}/gnome-vfs-2.0/modules/.debug"
FILES_${PN}-dev += "${libdir}/gnome-vfs-2.0/include \
${libdir}/gnome-vfs-2.0/modules/*.a \
${libdir}/gnome-vfs-2.0/modules/*.la \
"
FILES_${PN}-doc += "${datadir}/gtk-doc"
SRC_URI[archive.md5sum] = "100f9af16dc659e375ee8da45175a28d"
SRC_URI[archive.sha256sum] = "bc59144e303b152b84b86f209347a3e87a91d5ed7172d8503ee19c232dcabeb6"
|