diff options
author | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-24 13:57:56 +0200 |
---|---|---|
committer | Koen Kooi <koen@dominion.thruhere.net> | 2011-06-24 17:50:13 +0200 |
commit | 81acbd957f4061e279975edae16f5235714b75c1 (patch) | |
tree | 5c533dff1423bde5848be3f187548403bc53d91e /meta-gnome | |
parent | 3ade546f0412320d1d37936215b0c05a8a621220 (diff) |
dconf: update to 0.7.5
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-gnome')
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf_0.5.1.bb | 24 | ||||
-rw-r--r-- | meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb | 28 |
2 files changed, 28 insertions, 24 deletions
diff --git a/meta-gnome/recipes-gnome/dconf/dconf_0.5.1.bb b/meta-gnome/recipes-gnome/dconf/dconf_0.5.1.bb deleted file mode 100644 index 0bc55d5..0000000 --- a/meta-gnome/recipes-gnome/dconf/dconf_0.5.1.bb +++ /dev/null @@ -1,24 +0,0 @@ -DESCRIPTION = "configuation database system" -LICENSE = "LGPLv2.1" -LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" - -PR = "r1" - -SECTION = "x11/gnome" - -inherit gnome - -DEPENDS = "glib-2.0" - -inherit vala - -SRC_URI[archive.md5sum] = "c905497d0255fe2ba58564f9655908ab" -SRC_URI[archive.sha256sum] = "0083d70e1b5e540d8d4b3f04fa5d17dff4c574136682fe3bdd9b5ecc196ec4f6" - -PACKAGES =+ "dconf-editor" - -FILES_dconf-editor = "${bindir}/dconf-editor" -FILES_${PN} += "${datadir}/dbus-1/ \ - ${libdir}/gio/modules/*.so \ - " - diff --git a/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb b/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb new file mode 100644 index 0000000..39d68cb --- /dev/null +++ b/meta-gnome/recipes-gnome/dconf/dconf_0.7.5.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "configuation database system" +LICENSE = "LGPLv2.1" +LIC_FILES_CHKSUM = "file://COPYING;md5=2d5025d4aa3495befef8f17206a5b0a1" + +SECTION = "x11/gnome" + +inherit gnome +SRC_URI[archive.md5sum] = "d784f8afca04473d194a72047595c28e" +SRC_URI[archive.sha256sum] = "e2103e8207744903790e9fac6427fa394bb485a0c7f4e0d03b0fb43268c34f33" + +DEPENDS = "glib-2.0 gtk+3" + +inherit vala + +PACKAGES =+ "dconf-editor" + +FILES_dconf-editor = "${bindir}/dconf-editor ${datadir}/dconf-editor/" +FILES_${PN} += "${datadir}/dbus-1/ \ + ${libdir}/gio/modules/*.so \ + " + +pkg_postinst_${PN} () { +if [ -n "$D" ]; then + exit 1 +fi + +glib-compile-schemas ${datadir}/glib-2.0/schemas +} |