diff options
author | Richard Purdie <richard@openedhand.com> | 2006-01-18 19:08:01 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-01-18 19:08:01 +0000 |
commit | eeb0244d2b1f6f62b2bbc95f7b22146bb3698312 (patch) | |
tree | 9f02e904c3fcda0df5a18fb3afe9c04ba4b25680 /openembedded/packages | |
parent | 3f4950c6c70a519c8a2ef4ce17b13188200f939f (diff) | |
download | poky-eeb0244d2b1f6f62b2bbc95f7b22146bb3698312.tar.gz |
Add gconf-vfs_svn and gnome-vfs-dbus_2.8.4.4.bb from OE and add gconf-lossage patch.
git-svn-id: https://svn.o-hand.com/repos/poky@223 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages')
5 files changed, 147 insertions, 8 deletions
diff --git a/openembedded/packages/gnome/gconf-dbus_cvs.bb b/openembedded/packages/gnome/gconf-dbus_cvs.bb index 39908692ec..13241bdc21 100755 --- a/openembedded/packages/gnome/gconf-dbus_cvs.bb +++ b/openembedded/packages/gnome/gconf-dbus_cvs.bb | |||
@@ -1,5 +1,3 @@ | |||
1 | DEFAULT_PREFERENCE = "-1" | ||
2 | |||
3 | SECTION = "x11/utils" | 1 | SECTION = "x11/utils" |
4 | DEPENDS = "gtk+ glib-2.0 dbus libxml2 popt" | 2 | DEPENDS = "gtk+ glib-2.0 dbus libxml2 popt" |
5 | DESCRIPTION = "Settings daemon using DBUS for communication." | 3 | DESCRIPTION = "Settings daemon using DBUS for communication." |
@@ -9,19 +7,17 @@ PROVIDES = "gconf" | |||
9 | RPROVIDES_${PN} = "gconf" | 7 | RPROVIDES_${PN} = "gconf" |
10 | RPROVIDES_${PN}-dev = "gconf-dev" | 8 | RPROVIDES_${PN}-dev = "gconf-dev" |
11 | 9 | ||
12 | PV = "0.0cvs${CVSDATE}" | 10 | PV = "0.0+cvs${CVSDATE}" |
13 | PR = "r6" | 11 | PR = "r8" |
14 | 12 | ||
15 | SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gconf;tag=gconf-dbus-2-6 \ | 13 | SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gconf;tag=gconf-dbus-2-6 \ |
16 | file://gconf-dbus-update.patch;patch=1;pnum=0 \ | 14 | file://gconf-dbus-update.patch;patch=1;pnum=0 \ |
17 | file://69gconfd-dbus" | 15 | file://69gconfd-dbus" |
18 | 16 | ||
19 | FILES_${PN} += " ${libdir}/GConf/2/*.so ${libdir}/dbus-1.0 ${sysconfdir}" | 17 | inherit pkgconfig autotools |
20 | |||
21 | S = "${WORKDIR}/gconf" | 18 | S = "${WORKDIR}/gconf" |
22 | 19 | ||
23 | 20 | FILES_${PN} += " ${libdir}/GConf/2/*.so ${libdir}/dbus-1.0 ${sysconfdir} ${datadir}/dbus*" | |
24 | inherit pkgconfig autotools | ||
25 | 21 | ||
26 | EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static" | 22 | EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static" |
27 | 23 | ||
@@ -37,4 +33,6 @@ do_stage() { | |||
37 | do_install_append () { | 33 | do_install_append () { |
38 | install -d ${D}/${sysconfdir}/X11/Xsession.d | 34 | install -d ${D}/${sysconfdir}/X11/Xsession.d |
39 | install -m 755 ${WORKDIR}/69gconfd-dbus ${D}/${sysconfdir}/X11/Xsession.d/ | 35 | install -m 755 ${WORKDIR}/69gconfd-dbus ${D}/${sysconfdir}/X11/Xsession.d/ |
36 | install -d ${D}/${datadir}/dbus-1.0/services/ | ||
37 | install -m 644 gconf/gconf.service ${D}${datadir}/dbus-1.0/services/ | ||
40 | } | 38 | } |
diff --git a/openembedded/packages/gnome/gconf-dbus_svn.bb b/openembedded/packages/gnome/gconf-dbus_svn.bb new file mode 100644 index 0000000000..675b655412 --- /dev/null +++ b/openembedded/packages/gnome/gconf-dbus_svn.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | SECTION = "x11/utils" | ||
2 | DEPENDS = "gtk+ glib-2.0 dbus libxml2 popt" | ||
3 | DESCRIPTION = "Settings daemon using DBUS for communication." | ||
4 | LICENSE = "GPL" | ||
5 | MAINTAINER = "Florian Boor <florian@kernelconcepts.de>" | ||
6 | PROVIDES = "gconf" | ||
7 | RPROVIDES_${PN} = "gconf" | ||
8 | RPROVIDES_${PN}-dev = "gconf-dev" | ||
9 | |||
10 | PV = "0.0+svn${CVSDATE}" | ||
11 | PR = "r0" | ||
12 | |||
13 | SRC_URI = "svn://developer.imendio.com/svn/gconf-dbus;module=trunk;proto=http \ | ||
14 | file://gconf-dbus-update.patch;patch=1;pnum=0 \ | ||
15 | file://69gconfd-dbus" | ||
16 | |||
17 | inherit pkgconfig autotools | ||
18 | S = "${WORKDIR}/trunk" | ||
19 | |||
20 | FILES_${PN} += " ${libdir}/GConf/2/*.so ${libdir}/dbus-1.0 ${sysconfdir} ${datadir}/dbus*" | ||
21 | |||
22 | EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static" | ||
23 | |||
24 | HEADERS = "gconf.h gconf-changeset.h gconf-listeners.h gconf-schema.h gconf-value.h gconf-error.h gconf-engine.h gconf-client.h gconf-enum-types.h" | ||
25 | |||
26 | do_stage() { | ||
27 | oe_libinstall -so -C gconf libgconf-2 ${STAGING_LIBDIR} | ||
28 | install -d ${STAGING_INCDIR}/gconf/2/gconf/ | ||
29 | ( cd gconf; for i in ${HEADERS}; do install -m 0644 $i ${STAGING_INCDIR}/gconf/2/gconf/$i; done ) | ||
30 | install -m 0644 gconf.m4 ${STAGING_DATADIR}/aclocal/gconf-2.m4 | ||
31 | } | ||
32 | |||
33 | do_install_append () { | ||
34 | install -d ${D}/${sysconfdir}/X11/Xsession.d | ||
35 | install -m 755 ${WORKDIR}/69gconfd-dbus ${D}/${sysconfdir}/X11/Xsession.d/ | ||
36 | install -d ${D}/${datadir}/dbus-1.0/services/ | ||
37 | install -m 644 gconf/gconf.service ${D}${datadir}/dbus-1.0/services/ | ||
38 | } | ||
diff --git a/openembedded/packages/gnome/gnome-vfs-dbus/gconftool-lossage.patch b/openembedded/packages/gnome/gnome-vfs-dbus/gconftool-lossage.patch new file mode 100644 index 0000000000..3dbc130ddc --- /dev/null +++ b/openembedded/packages/gnome/gnome-vfs-dbus/gconftool-lossage.patch | |||
@@ -0,0 +1,11 @@ | |||
1 | --- gnome-vfs-2.6.0/configure.in~ 2004-03-22 12:36:23.000000000 +0000 | ||
2 | +++ gnome-vfs-2.6.0/configure.in 2004-06-07 16:04:34.000000000 +0100 | ||
3 | @@ -154,7 +154,7 @@ | ||
4 | AC_PATH_PROG(GCONFTOOL, gconftool-2, no) | ||
5 | |||
6 | if test x"$GCONFTOOL" = xno; then | ||
7 | - AC_MSG_ERROR([gconftool-2 executable not found in your path - should be installed with GConf]) | ||
8 | + AC_MSG_WARN([gconftool-2 executable not found in your path - should be installed with GConf]) | ||
9 | fi | ||
10 | |||
11 | AM_GCONF_SOURCE_2 | ||
diff --git a/openembedded/packages/gnome/gnome-vfs-dbus_2.8.4.4.bb b/openembedded/packages/gnome/gnome-vfs-dbus_2.8.4.4.bb new file mode 100644 index 0000000000..4f2a861eb2 --- /dev/null +++ b/openembedded/packages/gnome/gnome-vfs-dbus_2.8.4.4.bb | |||
@@ -0,0 +1,91 @@ | |||
1 | LICENSE = "GPL" | ||
2 | SECTION = "x11/gnome" | ||
3 | PR = "r1" | ||
4 | PROVIDES = "gnome-vfs" | ||
5 | RPROVIDES = "gnome-vfs" | ||
6 | |||
7 | inherit gnome pkgconfig | ||
8 | |||
9 | DEPENDS = "libxml2 gconf-dbus dbus bzip2 gnome-mime-data zlib samba-3.0.14a" | ||
10 | RRECOMMENDS = "gnome-vfs-plugin-file shared-mime-info" | ||
11 | |||
12 | |||
13 | SRC_URI = "http://ftp.imendio.com/pub/extra/${PN}/${PN}-${PV}.tar.gz \ | ||
14 | file://gssapi.patch;patch=1;pnum=1 \ | ||
15 | file://gconftool-lossage.patch;patch=1;pnum=1" | ||
16 | |||
17 | EXTRA_OECONF = "--with-ipc=dbus" | ||
18 | |||
19 | FILES_${PN} += " ${libdir}/vfs" | ||
20 | FILES_${PN}-dev += " ${libdir}/gnome-vfs-2.0/modules/*.a ${libdir}/gnome-vfs-2.0/modules/*.la ${libdir}/gnome-vfs-2.0/include" | ||
21 | FILES_${PN}-doc += " ${datadir}/gtk-doc" | ||
22 | |||
23 | GNOME_VFS_HEADERS = " \ | ||
24 | gnome-vfs-utils.h \ | ||
25 | gnome-vfs-application-registry.h \ | ||
26 | gnome-vfs-async-ops.h \ | ||
27 | gnome-vfs-ops.h \ | ||
28 | gnome-vfs-uri.h \ | ||
29 | gnome-vfs-standard-callbacks.h \ | ||
30 | gnome-vfs-module-callback.h \ | ||
31 | gnome-vfs-context.h \ | ||
32 | gnome-vfs-file-info.h \ | ||
33 | gnome-vfs-directory.h \ | ||
34 | gnome-vfs-mime-monitor.h \ | ||
35 | gnome-vfs-mime-handlers.h \ | ||
36 | gnome-vfs-result.h \ | ||
37 | gnome-vfs-job-limit.h \ | ||
38 | gnome-vfs-file-size.h \ | ||
39 | gnome-vfs-mime-utils.h \ | ||
40 | gnome-vfs-find-directory.h \ | ||
41 | gnome-vfs-init.h \ | ||
42 | gnome-vfs-handle.h \ | ||
43 | gnome-vfs.h \ | ||
44 | gnome-vfs-cancellation.h \ | ||
45 | gnome-vfs-xfer.h \ | ||
46 | gnome-vfs-monitor.h \ | ||
47 | gnome-vfs-types.h \ | ||
48 | gnome-vfs-volume-monitor.h \ | ||
49 | gnome-vfs-drive.h \ | ||
50 | gnome-vfs-volume.h \ | ||
51 | gnome-vfs-enum-types.h \ | ||
52 | gnome-vfs-address.h \ | ||
53 | gnome-vfs-dns-sd.h \ | ||
54 | gnome-vfs-mime-info-cache.h \ | ||
55 | gnome-vfs-resolve.h" | ||
56 | |||
57 | GNOME_VFS_MODULE_HEADERS = " \ | ||
58 | gnome-vfs-mime-info.h \ | ||
59 | gnome-vfs-transform.h \ | ||
60 | gnome-vfs-ssl.h \ | ||
61 | gnome-vfs-inet-connection.h \ | ||
62 | gnome-vfs-socket.h \ | ||
63 | gnome-vfs-parse-ls.h \ | ||
64 | gnome-vfs-method.h \ | ||
65 | gnome-vfs-cancellable-ops.h \ | ||
66 | gnome-vfs-module.h \ | ||
67 | gnome-vfs-module-shared.h \ | ||
68 | gnome-vfs-module-callback-module-api.h \ | ||
69 | gnome-vfs-mime.h \ | ||
70 | gnome-vfs-socket-buffer.h" | ||
71 | |||
72 | do_stage() { | ||
73 | oe_libinstall -so -C libgnomevfs libgnomevfs-2 ${STAGING_LIBDIR} | ||
74 | install -d ${STAGING_INCDIR}/gnome-vfs-2.0/libgnomevfs | ||
75 | for i in ${GNOME_VFS_HEADERS}; do install -m 0644 libgnomevfs/$i ${STAGING_INCDIR}/gnome-vfs-2.0/libgnomevfs/; done | ||
76 | install -d ${STAGING_INCDIR}/gnome-vfs-module-2.0/libgnomevfs | ||
77 | for i in ${GNOME_VFS_MODULE_HEADERS}; do install -m 0644 libgnomevfs/$i ${STAGING_INCDIR}/gnome-vfs-module-2.0/libgnomevfs/; done | ||
78 | } | ||
79 | |||
80 | do_install() { | ||
81 | oe_runmake ORBIT_IDL="${ORBIT_IDL_SRC}" DESTDIR="${D}" install | ||
82 | } | ||
83 | |||
84 | PACKAGES_DYNAMIC = "gnome=vfs-plugin-*" | ||
85 | |||
86 | python populate_packages_prepend () { | ||
87 | print bb.data.getVar('FILES_gnome-vfs', d, 1) | ||
88 | |||
89 | plugindir = bb.data.expand('${libdir}/gnome-vfs-2.0/modules/', d) | ||
90 | do_split_packages(d, plugindir, '^lib(.*)\.so$', 'gnome-vfs-plugin-%s', 'GNOME VFS plugin for %s') | ||
91 | } | ||
diff --git a/openembedded/packages/gnome/gnome-vfs-dbus_cvs.bb b/openembedded/packages/gnome/gnome-vfs-dbus_cvs.bb index 244f6516f2..87def47a2d 100755 --- a/openembedded/packages/gnome/gnome-vfs-dbus_cvs.bb +++ b/openembedded/packages/gnome/gnome-vfs-dbus_cvs.bb | |||
@@ -15,6 +15,7 @@ PR = "r4" | |||
15 | 15 | ||
16 | SRC_URI = "svn://anonymous@developer.imendio.com/svn/gnome-vfs-dbus;module=trunk;proto=http \ | 16 | SRC_URI = "svn://anonymous@developer.imendio.com/svn/gnome-vfs-dbus;module=trunk;proto=http \ |
17 | file://no-gtk-doc.patch;patch=1 \ | 17 | file://no-gtk-doc.patch;patch=1 \ |
18 | file://gconftool-lossage.patch;patch=1 \ | ||
18 | file://gssapi.patch;patch=1" | 19 | file://gssapi.patch;patch=1" |
19 | S = "${WORKDIR}/trunk" | 20 | S = "${WORKDIR}/trunk" |
20 | 21 | ||