summaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb')
-rw-r--r--meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb15
1 files changed, 11 insertions, 4 deletions
diff --git a/meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb b/meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb
index 9bd5b9d5f1..1e0fed2def 100644
--- a/meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb
+++ b/meta/recipes-gnome/gtk+/gtk+3_3.8.2.bb
@@ -5,9 +5,8 @@ HOMEPAGE = "http://www.gtk.org"
5BUGTRACKER = "https://bugzilla.gnome.org/" 5BUGTRACKER = "https://bugzilla.gnome.org/"
6SECTION = "libs" 6SECTION = "libs"
7 7
8DEPENDS = "glib-2.0 pango atk jpeg libpng libxext libxcursor \ 8DEPENDS = "glib-2.0 cairo pango atk jpeg libpng gdk-pixbuf libgcrypt \
9 docbook-utils-native libxrandr libgcrypt \ 9 docbook-utils-native gdk-pixbuf-native"
10 libxdamage libxrender libxcomposite libxi cairo gdk-pixbuf gdk-pixbuf-native"
11 10
12LICENSE = "LGPLv2 & LGPLv2+ & LGPLv2.1+" 11LICENSE = "LGPLv2 & LGPLv2+ & LGPLv2.1+"
13 12
@@ -18,7 +17,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=5f30f0716dfdd0d91eb439ebec522ec2 \
18 17
19MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}" 18MAJ_VER = "${@oe.utils.trim_version("${PV}", 2)}"
20 19
21SRC_URI = "http://download.gnome.org/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar.xz" 20SRC_URI = "http://download.gnome.org/sources/gtk+/${MAJ_VER}/gtk+-${PV}.tar.xz \
21 file://no-x11-in-wayland.patch"
22
22SRC_URI[md5sum] = "8e878e18fc385f2b813419dc7b40a968" 23SRC_URI[md5sum] = "8e878e18fc385f2b813419dc7b40a968"
23SRC_URI[sha256sum] = "1ca80c9c15a1df95d74cefb8c2afe4682ba272a4b489106f04877be2a7aff297" 24SRC_URI[sha256sum] = "1ca80c9c15a1df95d74cefb8c2afe4682ba272a4b489106f04877be2a7aff297"
24 25
@@ -46,6 +47,12 @@ EXTRA_OECONF += " \
46 --disable-introspection \ 47 --disable-introspection \
47" 48"
48 49
50PACKAGECONFIG ??= "${@base_contains("DISTRO_FEATURES", "x11", "x11", "", d)} \
51 ${@base_contains("DISTRO_FEATURES", "wayland", "wayland", "", d)}"
52
53PACKAGECONFIG[x11] = "--enable-x11-backend,--disable-x11-backend,at-spi2-atk fontconfig libx11 libxext libxcursor libxi libxdamage libxrandr libxrender libxcomposite libxfixes"
54PACKAGECONFIG[wayland] = "--enable-wayland-backend,--disable-wayland-backend,wayland libxkbcommon"
55
49do_install_append() { 56do_install_append() {
50 mv ${D}${bindir}/gtk-update-icon-cache ${D}${bindir}/gtk-update-icon-cache-3.0 57 mv ${D}${bindir}/gtk-update-icon-cache ${D}${bindir}/gtk-update-icon-cache-3.0
51} 58}