blob: b1f634c0e95330fab119215e0dd75262b14c88db (
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
|
LICENSE = "GPL"
DEPENDS = "libxml2 gconf gnutls avahi dbus bzip2 gnome-mime-data zlib"
RRECOMMENDS = "gnome-vfs-plugin-file gnome-mime-data shared-mime-info"
PR = "r2"
inherit gnome
# This is to provide compatibility with the gnome-vfs DBus fork
PROVIDES = "gnome-vfs-plugin-dbus"
RREPLACES = "gnome-vfs-dbus"
SRC_URI += "file://gconftool-lossage.patch;patch=1;pnum=1 \
file://gnome-vfs-no-kerberos.patch;patch=1;pnum=0"
EXTRA_OECONF = " \
--disable-openssl \
--enable-gnutls \
--enable-avahi \
--with-samba-includes=${STAGING_INCDIR} \
"
FILES_${PN} += " ${libdir}/vfs"
FILES_${PN}-dev += " ${libdir}/gnome-vfs-2.0/include"
FILES_${PN}-doc += " ${datadir}/gtk-doc"
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')
}
|