f11b03d5f4
* Use renderer for ibus-mozc, new candidates window. Changelog: r171 2013-08-28 1.11.1522.102 FIX: Safari crashes when surrounding text is requested. FIX: Mode symbol on the mode indicator is not rendered on Windows. FIX: Caret position is not updated after commit in WPF's TextBox on Windows. FIX: UI is not placed at proper position when HiDPI is enabled on Windows 8.1 FIX: GDI handles are not destroyed when classic theme is selected on Windows. FIX: Fails to connect to mozc_renderer from explorer.exe on Windows. Enable Touch-optimized on-screen keyboard on Windows 8+. Enable a developer to configure ibus-mozc path and/or ibus-mozc icon path at build time for GNU/Linux build. See the build instruction about how to customize them. ( Issue 41 ) Add Session command for ConvertPrevPage and ConvertNextPage ( Issue 188 ) Remove ibus-mozc-chewing (Issue 194) Remove ibus-mozc-pinyin (Issue 194)
29 lines
869 B
Makefile
29 lines
869 B
Makefile
# $NetBSD: Makefile,v 1.8 2013/09/07 18:42:14 ryoon Exp $
|
|
#
|
|
|
|
PKGNAME= ${EMACS_PKGNAME_PREFIX}${DISTNAME:S/mozc-/mozc-elisp-/}
|
|
CATEGORIES= inputmethod editors
|
|
|
|
EMACS_MODULES= base leim
|
|
|
|
.include "../../editors/emacs/modules.mk"
|
|
|
|
INSTALLATION_DIRS= ${EMACS_LISPPREFIX} bin
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && env ${MAKE_ENV} \
|
|
${PYTHONBIN} build_mozc.py build -c Release ${_MAKE_JOBS} \
|
|
unix/emacs/emacs.gyp:mozc_emacs_helper
|
|
cd ${WRKSRC}/unix/emacs && \
|
|
${EMACS_BIN} -q -batch -no-site-file -no-init-file \
|
|
-f batch-byte-compile mozc.el
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/out_${OSDEST}/Release/mozc_emacs_helper \
|
|
${DESTDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/unix/emacs/mozc.el \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
${INSTALL_DATA} ${WRKSRC}/unix/emacs/mozc.elc \
|
|
${DESTDIR}${EMACS_LISPPREFIX}
|
|
|
|
.include "../../inputmethod/mozc-server/Makefile.common"
|