summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lord <chris@openedhand.com>2005-09-19 09:46:09 +0000
committerChris Lord <chris@openedhand.com>2005-09-19 09:46:09 +0000
commit0a28d7e311e13c9a10d9db5f049bac9df23c1762 (patch)
tree842e1f3de3ea8216814406d5ae2a3e67d6afa2b2
parent72d61f6fdd08a41b66554e05855e6043d8291344 (diff)
downloadpoky-0a28d7e311e13c9a10d9db5f049bac9df23c1762.tar.gz
Add gconf-dbus
git-svn-id: https://svn.o-hand.com/repos/poky@24 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-xopenembedded/packages/gnome/gconf-dbus/69gconfd-dbus3
-rwxr-xr-xopenembedded/packages/gnome/gconf-dbus/gconf-dbus-update.patch31
-rwxr-xr-xopenembedded/packages/gnome/gconf-dbus_cvs.bb36
3 files changed, 70 insertions, 0 deletions
diff --git a/openembedded/packages/gnome/gconf-dbus/69gconfd-dbus b/openembedded/packages/gnome/gconf-dbus/69gconfd-dbus
new file mode 100755
index 0000000000..c2add042f6
--- /dev/null
+++ b/openembedded/packages/gnome/gconf-dbus/69gconfd-dbus
@@ -0,0 +1,3 @@
1#!/bin/sh
2
3/usr/libexec/gconfd-2 &
diff --git a/openembedded/packages/gnome/gconf-dbus/gconf-dbus-update.patch b/openembedded/packages/gnome/gconf-dbus/gconf-dbus-update.patch
new file mode 100755
index 0000000000..9870078b86
--- /dev/null
+++ b/openembedded/packages/gnome/gconf-dbus/gconf-dbus-update.patch
@@ -0,0 +1,31 @@
1? gconf/gconf.service
2Index: gconf/Makefile.am
3===================================================================
4RCS file: /cvs/gnome/gconf/gconf/Makefile.am,v
5retrieving revision 1.78.4.8
6diff -u -r1.78.4.8 Makefile.am
7--- gconf/Makefile.am 21 Dec 2003 14:21:15 -0000 1.78.4.8
8+++ gconf/Makefile.am 22 Jan 2005 00:30:13 -0000
9@@ -155,6 +155,7 @@
10
11 libgconf_2_la_LDFLAGS = -version-info $(GCONF_CURRENT):$(GCONF_REVISION):$(GCONF_AGE) -no-undefined
12 libgconf_2_la_LIBADD = $(INTLLIBS) $(DEPENDENT_LIBS) $(GCONF_IPC_LIBS)
13+libgconf_2_la_CFLAGS = $(AM_CFLAGS)
14
15 if HAVE_DBUS
16 servicedir = $(DBUS_SERVICE_DIR)
17Index: backends/Makefile.am
18===================================================================
19RCS file: /cvs/gnome/gconf/backends/Makefile.am,v
20retrieving revision 1.30
21diff -u -r1.30 Makefile.am
22--- backends/Makefile.am 3 Nov 2003 00:19:33 -0000 1.30
23+++ backends/Makefile.am 22 Jan 2005 00:30:14 -0000
24@@ -17,6 +17,7 @@
25
26 libgconfbackend_oldxml_la_LDFLAGS = -avoid-version -module -no-undefined
27 libgconfbackend_oldxml_la_LIBADD = $(DEPENDENT_WITH_XML_LIBS) $(top_builddir)/gconf/libgconf-$(MAJOR_VERSION).la
28+libgconfbackend_oldxml_la_CFLAGS = $(AM_CFLAGS)
29
30 libgconfbackend_xml_la_SOURCES = \
31 markup-backend.c \
diff --git a/openembedded/packages/gnome/gconf-dbus_cvs.bb b/openembedded/packages/gnome/gconf-dbus_cvs.bb
new file mode 100755
index 0000000000..65deaf5b21
--- /dev/null
+++ b/openembedded/packages/gnome/gconf-dbus_cvs.bb
@@ -0,0 +1,36 @@
1SECTION = "x11/utils"
2DEPENDS = "gtk+ glib-2.0 dbus libxml2 popt"
3DESCRIPTION = "Settings daemon using DBUS for communication."
4LICENSE = "GPL"
5MAINTAINER = "Florian Boor <florian@kernelconcepts.de>"
6PROVIDES = "gconf"
7RPROVIDES = "gconf"
8
9PV = "0.0cvs${CVSDATE}"
10
11SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gconf;tag=gconf-dbus-2-6 \
12 file://gconf-dbus-update.patch;patch=1;pnum=0 \
13 file://69gconfd-dbus"
14
15FILES_${PN} += " ${libdir}/GConf/2/*.so ${libdir}/dbus-1.0 ${sysconfdir}"
16
17S = "${WORKDIR}/gconf"
18
19
20inherit pkgconfig autotools
21
22EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static"
23
24HEADERS = "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
26do_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
33do_install_append () {
34 install -d ${D}/${sysconfdir}/X11/Xsession.d
35 install -m 755 ${WORKDIR}/69gconfd-dbus ${D}/${sysconfdir}/X11/Xsession.d/
36}