citadel/meta-gnome/recipes-support/ibus/ibus.bb

42 lines
956 B
BlitzBasic
Raw Normal View History

require ${BPN}.inc
DEPENDS += " \
${BPN}-native \
glib-2.0-native \
glib-2.0 \
dbus \
iso-codes \
"
2024-05-21 12:55:51 -04:00
inherit gtk-icon-cache bash-completion features_check
# for unicode-ucd
EXTRA_OECONF += "--with-ucd-dir=${STAGING_DATADIR}/unicode/ucd"
PACKAGECONFIG ??= " \
dconf vala \
2024-05-21 12:55:51 -04:00
${@bb.utils.contains_any('DISTRO_FEATURES', [ 'wayland', 'x11' ], 'gtk3 gtk4', '', d)} \
${@bb.utils.filter('DISTRO_FEATURES', 'systemd wayland x11', d)} \
"
2024-05-21 12:55:51 -04:00
REQUIRED_DISTRO_FEATURES = "${@bb.utils.contains('PACKAGECONFIG', 'gtk4', 'opengl', '', d)}"
do_configure:prepend() {
# run native unicode-parser
sed -i 's:$(builddir)/unicode-parser:unicode-parser:g' ${S}/src/Makefile.am
}
FILES:${PN} += " \
${datadir}/dbus-1 \
${datadir}/GConf \
${datadir}/glib-2.0 \
${libdir}/gtk-3.0 \
2024-05-21 12:55:51 -04:00
${libdir}/gtk-4.0 \
${systemd_user_unitdir} \
"
FILES:${PN}-dev += " \
${datadir}/gettext \
"
2024-05-21 12:55:51 -04:00
RDEPENDS:${PN} += "python3-core"