diff options
author | Ross Burton <ross@openedhand.com> | 2007-08-01 13:22:57 +0000 |
---|---|---|
committer | Ross Burton <ross@openedhand.com> | 2007-08-01 13:22:57 +0000 |
commit | 69f5314ac4302c308d785ff6a8264b85a1c84fdb (patch) | |
tree | 421ba76b69050977640213ebac176fd7adb24859 | |
parent | d5d3fa46eb15034dc758d1859651c5ef3408e349 (diff) | |
download | poky-69f5314ac4302c308d785ff6a8264b85a1c84fdb.tar.gz |
Remove old gconf-dbus from cvs
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2284 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rwxr-xr-x | meta/packages/gnome/gconf-dbus_cvs.bb | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/meta/packages/gnome/gconf-dbus_cvs.bb b/meta/packages/gnome/gconf-dbus_cvs.bb deleted file mode 100755 index 865379b71c..0000000000 --- a/meta/packages/gnome/gconf-dbus_cvs.bb +++ /dev/null | |||
@@ -1,37 +0,0 @@ | |||
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 | PROVIDES = "gconf" | ||
6 | RPROVIDES_${PN} = "gconf" | ||
7 | RPROVIDES_${PN}-dev = "gconf-dev" | ||
8 | |||
9 | PV = "0.0+cvs${SRCDATE}" | ||
10 | PR = "r8" | ||
11 | |||
12 | SRC_URI = "cvs://anonymous@anoncvs.gnome.org/cvs/gnome;module=gconf;tag=gconf-dbus-2-6 \ | ||
13 | file://gconf-dbus-update.patch;patch=1;pnum=0 \ | ||
14 | file://69gconfd-dbus" | ||
15 | |||
16 | inherit pkgconfig autotools | ||
17 | S = "${WORKDIR}/gconf" | ||
18 | |||
19 | FILES_${PN} += " ${libdir}/GConf/2/*.so ${libdir}/dbus-1.0 ${sysconfdir} ${datadir}/dbus*" | ||
20 | |||
21 | EXTRA_OECONF = " --with-ipc=dbus --disable-gtk-doc --enable-gtk --host=${HOST_SYS} --enable-shared --disable-static" | ||
22 | |||
23 | 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" | ||
24 | |||
25 | do_stage() { | ||
26 | oe_libinstall -so -C gconf libgconf-2 ${STAGING_LIBDIR} | ||
27 | install -d ${STAGING_INCDIR}/gconf/2/gconf/ | ||
28 | ( cd gconf; for i in ${HEADERS}; do install -m 0644 $i ${STAGING_INCDIR}/gconf/2/gconf/$i; done ) | ||
29 | install -m 0644 gconf.m4 ${STAGING_DATADIR}/aclocal/gconf-2.m4 | ||
30 | } | ||
31 | |||
32 | do_install_append () { | ||
33 | install -d ${D}/${sysconfdir}/X11/Xsession.d | ||
34 | install -m 755 ${WORKDIR}/69gconfd-dbus ${D}/${sysconfdir}/X11/Xsession.d/ | ||
35 | install -d ${D}/${datadir}/dbus-1.0/services/ | ||
36 | install -m 644 gconf/gconf.service ${D}${datadir}/dbus-1.0/services/ | ||
37 | } | ||