diff options
author | Steve Sakoman <steve@sakoman.com> | 2009-08-09 21:46:59 -0700 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2009-08-10 11:34:12 +0200 |
commit | 76069e339ea0eec6794893e146d1361632214fe5 (patch) | |
tree | 8d37a1f937c476bb48515c2a8b7e9b71a71d55f7 /recipes/gnome | |
parent | 60f1515945cb56843e8c0f110310aaa2e735f40f (diff) |
gnome-vfs: add 2.24.1, share patches with 2.22.0
Diffstat (limited to 'recipes/gnome')
-rw-r--r-- | recipes/gnome/gnome-vfs/gconftool-lossage.patch (renamed from recipes/gnome/gnome-vfs-2.22.0/gconftool-lossage.patch) | 0 | ||||
-rw-r--r-- | recipes/gnome/gnome-vfs/gnome-vfs-no-kerberos.patch (renamed from recipes/gnome/gnome-vfs-2.22.0/gnome-vfs-no-kerberos.patch) | 0 | ||||
-rw-r--r-- | recipes/gnome/gnome-vfs_2.24.1.bb | 49 |
3 files changed, 49 insertions, 0 deletions
diff --git a/recipes/gnome/gnome-vfs-2.22.0/gconftool-lossage.patch b/recipes/gnome/gnome-vfs/gconftool-lossage.patch index 3dbc130ddc..3dbc130ddc 100644 --- a/recipes/gnome/gnome-vfs-2.22.0/gconftool-lossage.patch +++ b/recipes/gnome/gnome-vfs/gconftool-lossage.patch diff --git a/recipes/gnome/gnome-vfs-2.22.0/gnome-vfs-no-kerberos.patch b/recipes/gnome/gnome-vfs/gnome-vfs-no-kerberos.patch index e25ecdd66f..e25ecdd66f 100644 --- a/recipes/gnome/gnome-vfs-2.22.0/gnome-vfs-no-kerberos.patch +++ b/recipes/gnome/gnome-vfs/gnome-vfs-no-kerberos.patch diff --git a/recipes/gnome/gnome-vfs_2.24.1.bb b/recipes/gnome/gnome-vfs_2.24.1.bb new file mode 100644 index 0000000000..511aabe5a7 --- /dev/null +++ b/recipes/gnome/gnome-vfs_2.24.1.bb @@ -0,0 +1,49 @@ +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 = "r1" + +inherit gnome + +SRC_URI += "file://gconftool-lossage.patch;patch=1;pnum=1 \ + file://gnome-vfs-no-kerberos.patch;patch=1;pnum=0" + +# 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" + + |