blob: bb662f2ec9936331a5c5c8a1dc4759e896bfbcee [file] [log] [blame]
Brad Bishop868407c2019-11-04 13:24:47 -05001SUMMARY = "Intelligent Input Bus for Linux/Unix"
2HOMEPAGE = "https://github.com/ibus/ibus/wiki"
Andrew Geissler9aee5002022-03-30 16:27:02 +00003LICENSE = "LGPL-2.1-only"
Brad Bishop868407c2019-11-04 13:24:47 -05004LIC_FILES_CHKSUM = "file://COPYING;md5=fbc093901857fcd118f065f900982c24"
5
6inherit autotools-brokensep pkgconfig gobject-introspection gettext gtk-doc vala
7
Patrick Williams03907ee2022-05-01 06:28:52 -05008PV = "1.5.26"
Brad Bishop868407c2019-11-04 13:24:47 -05009
10DEPENDS = "unicode-ucd"
11
12SRC_URI = " \
Patrick Williams92b42cb2022-09-03 06:53:57 -050013 git://github.com/ibus/ibus.git;branch=main;protocol=https \
Brad Bishop868407c2019-11-04 13:24:47 -050014 file://0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch \
15"
Patrick Williams03907ee2022-05-01 06:28:52 -050016SRCREV = "6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3"
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"
Patrick Williams03907ee2022-05-01 06:28:52 -050023PACKAGECONFIG[gtk4] = "--enable-gtk4,--disable-gtk4,gtk4"
24PACKAGECONFIG[systemd] = "--enable-systemd-services,--disable-systemd-services,systemd"
Brad Bishop868407c2019-11-04 13:24:47 -050025PACKAGECONFIG[wayland] = "--enable-wayland,--disable-wayland,wayland"
26PACKAGECONFIG[vala] = "--enable-vala,--disable-vala"
27PACKAGECONFIG[x11] = "--enable-xim --enable-ui,--disable-xim --disable-ui,virtual/libx11"
28
29EXTRA_OECONF = " \
30 --disable-tests \
31 --disable-emoji-dict \
32 --disable-python2 \
33"
34
Patrick Williams213cb262021-08-07 19:21:33 -050035do_configure:prepend() {
Brad Bishop868407c2019-11-04 13:24:47 -050036 touch ${S}/ChangeLog
37 touch ${S}/ABOUT-NLS
38}