blob: 810f369dd0529f2aafdf8236352c3a48b2256a27 [file] [log] [blame]
Brad Bishop868407c2019-11-04 13:24:47 -05001SUMMARY = "Intelligent Input Bus for Linux/Unix"
2HOMEPAGE = "https://github.com/ibus/ibus/wiki"
3LICENSE = "LGPLv2.1"
4LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
5
6inherit autotools-brokensep pkgconfig gobject-introspection gettext gtk-doc vala
7
Andrew Geissler4b7c1152020-11-30 19:55:29 -06008PV = "1.5.23+git${SRCPV}"
Brad Bishop868407c2019-11-04 13:24:47 -05009
10DEPENDS = "unicode-ucd"
11
12SRC_URI = " \
13 git://github.com/ibus/ibus.git \
14 file://0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch \
15"
Andrew Geissler4b7c1152020-11-30 19:55:29 -060016SRCREV = "dd4cc5b028c35f9bb8fa9d3bdc8f26bcdfc43d40"
Brad Bishop868407c2019-11-04 13:24:47 -050017S = "${WORKDIR}/git"
18
19PACKAGECONFIG[appindicator] = "--enable-appindicator,--disable-appindicator,qtbase"
20PACKAGECONFIG[dconf] = "--enable-dconf,--disable-dconf,dconf"
21PACKAGECONFIG[gtk2] = "--enable-gtk2,--disable-gtk2,gtk+"
22PACKAGECONFIG[gtk3] = "--enable-gtk3,--disable-gtk3,gtk+3"
23PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland"
24PACKAGECONFIG[vala] = "--enable-vala,--disable-vala"
25PACKAGECONFIG[x11] = "--enable-xim --enable-ui,--disable-xim --disable-ui,virtual/libx11"
26
27EXTRA_OECONF = " \
28 --disable-tests \
29 --disable-emoji-dict \
30 --disable-python2 \
31"
32
Patrick Williams213cb262021-08-07 19:21:33 -050033do_configure:prepend() {
Brad Bishop868407c2019-11-04 13:24:47 -050034 touch ${S}/ChangeLog
35 touch ${S}/ABOUT-NLS
36}