pkgsrc/inputmethod/ibus-python/Makefile
tsutsui 0ed627d29a ibus: update to 1.5.23.
pkgsrc changes:
- require the latest unicode database packages

Upstream changes:
 https://github.com/ibus/ibus/releases/tag/1.5.23

1.5.23

Features & Bug Fixes:

* Generate simple.xml with denylist
* Accept xdigits only for Unicode typing
* Update emoji-parser with CLDR emoji annotation release-31-0-1
* Update ibusunicodegen.h with unicode-ucd 13.0.0
* Delete deprecated ENABLE_APPINDICATOR_ENGINE_ICON check
* Fix SEGV
* Fix some errors in ibus-desktop-testing-runner
* Refactor source files
* Fix string formats in translatable strings

Code Contributors:

* Use WAYLAND_DISPLAY on Wayland sessions to make up IBus socket name (Carlos Garnacho)
* Skip parsing of compose sequence with invalid keysyms (Neil Shepperd)
* Tell Pango about the engine language in the candidate panel (Aaron Muir Hamilton)
* Fix for several error spotted by static analyzer (ntfs.hard)
* Remove glib_check_version() in gtk immodule (Changwoo Ryu)
* Build the Emoji dictionaries in parallel (Changwoo Ryu)

Translation Contributors:

* Update translation (Chinese (Simplified)) (Tian Shixiong)
* Update translation (Chinese (Simplified)) (Boyuan Yang)
* Update translation (Chinese (Simplified)) (Whired Planck)
* Update translation (Chinese (Traditional)) (Yi-Jyun Pan)
* Update translation (Danish) (scootergrisen)
* Update translation (Finnish) (Jiri Grönroos)
* Update translation (French) (Jean-Baptiste Holcroft)
* Update translation (German) (Mike FABIAN)
* Update translation (Hebrew) (Yaron Shahrabani)
* Update translation (Hungarian) (Balázs Meskó)
* Update translation (Japanese)
* Update translation (Korean) (Changwoo Ryu)
* Update translation (Norwegian Bokmål) (Allan Nordhøy)
* Update translation (Odia) (Ankit Behera)
* Update translation (Polish) (Piotr Drąg)
* Update translation (Spanish) (Emilio Herrera)
* Update translation (Swedish) (Allan Nordhøy)
* Update translation (Swedish) (Göran Uddeborg)
* Update translation (Turkish) (Oğuz Ersen)
* Update translation (Ukrainian) (Yuri Chornoivan)
* Update translation (Urdu) (Shehroz Kaleem)
2020-10-03 16:43:17 +00:00

52 lines
1.5 KiB
Makefile

# $NetBSD: Makefile,v 1.21 2020/10/03 16:43:17 tsutsui Exp $
.include "../../inputmethod/ibus/Makefile.common"
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/ibus/ibus-python/}
COMMENT= Python library for Intelligent Input Bus
LICENSE= gnu-lgpl-v2.1
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_PKGLOCALEDIR= yes
USE_TOOLS+= pkg-config intltool msgfmt gmake
GNU_CONFIGURE= yes
DEPENDS+= ibus>=${PKGVERSION_NOREV}:../../inputmethod/ibus
DEPENDS+= ${PYPKGPREFIX}-gobject3-[0-9]*:../../devel/py-gobject3
DEPENDS+= ${PYPKGPREFIX}-gtk2-[0-9]*:../../x11/py-gtk2
PKGCONFIG_OVERRIDE+= ibus-1.0.pc.in
CONFIGURE_ARGS+= --disable-gtk2
CONFIGURE_ARGS+= --disable-gtk3
CONFIGURE_ARGS+= --disable-xim
CONFIGURE_ARGS+= --disable-nls
CONFIGURE_ARGS+= --disable-libnotify
CONFIGURE_ARGS+= --disable-engine
CONFIGURE_ARGS+= --disable-surround-text
CONFIGURE_ARGS+= --disable-emoji-dict
CONFIGURE_ARGS+= --disable-unicode-dict
.include "../../mk/compiler.mk"
.if !empty(CC_VERSION:Mgcc-4.1.[0-9]*)
BUILDLINK_TRANSFORM+= rm:-Wno-unused-but-set-variable
.endif
NO_BUILD= yes
INSTALL_DIRS= bindings ibus
CONFIGURE_ARGS+= --disable-dconf
CONFIGURE_ARGS+= --enable-python-library
CONFIGURE_ENV+= PYTHON2=${PYTHONBIN}
PYTHON_VERSIONS_ACCEPTED= 27 # py-gtk2
PY_PATCHPLIST= yes
.include "../../lang/python/extension.mk"
BUILDLINK_API_DEPENDS.py-dbus+= ${PYPKGPREFIX}-dbus>=0.83.0
.include "../../sysutils/py-dbus/buildlink3.mk"
.include "../../textproc/iso-codes/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"