diff options
-rw-r--r-- | recipes-gnome/gnome/gconf_2.28.0.bb | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/recipes-gnome/gnome/gconf_2.28.0.bb b/recipes-gnome/gnome/gconf_2.28.0.bb new file mode 100644 index 0000000000..fcc2606591 --- /dev/null +++ b/recipes-gnome/gnome/gconf_2.28.0.bb | |||
@@ -0,0 +1,38 @@ | |||
1 | DESCRIPTION = "GNOME configuration database system" | ||
2 | SECTION = "x11/gnome" | ||
3 | LICENSE = "LGPL" | ||
4 | DEPENDS = "gtk+ orbit2 glib-2.0 libxml2 policykit" | ||
5 | ORBIT_IDL_SRC = "${STAGING_BINDIR_NATIVE}/orbit-idl-2" | ||
6 | |||
7 | S = "${WORKDIR}/GConf-${PV}" | ||
8 | |||
9 | SRC_URI = "http://ftp.gnome.org/pub/GNOME/sources/GConf/2.28/GConf-${PV}.tar.bz2;name=archive" | ||
10 | SRC_URI[archive.md5sum] = "ad2aeb9c7d906b274954c51a615caeac" | ||
11 | SRC_URI[archive.sha256sum] = "d057dcfe2bfb2a80e592349c2a78d7dce12d19542aeced466c64fb701c806ac8" | ||
12 | |||
13 | PR = "r2" | ||
14 | |||
15 | RDEPENDS_${PN} += "dbus-x11" | ||
16 | |||
17 | EXTRA_OECONF = " --without-openldap --disable-gtk-doc --enable-gtk POLKIT_POLICY_FILE_VALIDATE=true" | ||
18 | |||
19 | inherit autotools gettext | ||
20 | |||
21 | EXTRA_OEMAKE = 'ORBIT_IDL="${ORBIT_IDL_SRC}"' | ||
22 | |||
23 | do_install_append() { | ||
24 | # this directory need to be created to avoid an Error 256 at gdm launch | ||
25 | install -d ${D}${sysconfdir}/gconf/gconf.xml.system | ||
26 | |||
27 | # this stuff is unusable | ||
28 | rm ${D}${libdir}/GConf/*/*.*a | ||
29 | } | ||
30 | |||
31 | FILES_${PN} += "${libdir}/GConf/* \ | ||
32 | ${datadir}/polkit* \ | ||
33 | ${datadir}/dbus-1/services/*.service \ | ||
34 | ${datadir}/dbus-1/system-services/*.service \ | ||
35 | " | ||
36 | |||
37 | FILES_${PN}-dbg += "${libdir}/*/*/.debug" | ||
38 | FILES_${PN}-dev += "${datadir}/sgml/gconf/gconf-1.0.dtd" | ||