# Maintainer: Felix Yan # Contributor: ponsfoot # Contributor: UTUMI Hirosi ## Mozc compile option _bldtype=Release _zipcode_rel=201810 _pkgbase=mozc pkgname=fcitx-mozc pkgdesc="Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)" pkgver=2.23.2815.102 _fcitx_patchver=${pkgver}.1 pkgrel=4 arch=('x86_64') url="https://github.com/google/mozc" license=('custom') depends=('qt5-base' 'fcitx' 'zinnia') makedepends=('clang' 'gyp' 'ninja' 'pkg-config' 'python' 'curl' 'gtk2' 'qt5-base' 'zinnia' 'fcitx' 'libxcb' 'glib2' 'bzip2' 'unzip') replaces=('mozc-fcitx') conflicts=('mozc' 'mozc-server' 'mozc-utils-gui' 'mozc-fcitx') source=( http://ftp.jp.debian.org/debian/pool/main/m/mozc/mozc_${pkgver}+dfsg.orig.tar.xz protobuf-3.5.2.tar.gz::https://github.com/protocolbuffers/protobuf/archive/v3.5.2.tar.gz https://salsa.debian.org/debian/mozc/-/raw/master/debian/patches/usage_dict.txt.patch https://salsa.debian.org/debian/mozc/-/raw/master/debian/patches/Fix-build-with-gcc8.patch https://salsa.debian.org/debian/mozc/-/raw/master/debian/patches/Change-from-python2-code-to-python3.patch https://salsa.debian.org/debian/mozc/-/raw/master/debian/patches/add_support_new_japanese_era.patch https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-${_fcitx_patchver}.patch https://download.fcitx-im.org/fcitx-mozc/fcitx-mozc-icon.tar.gz ) sha512sums=( 'b31c01c4ff5bc57b3f636f4c86446d0ded2ff7215f1ffe6ebb05b034a476ac62014d4484f33f9bc5cb4860e5e813504805073a3dfd7a78218d1ae7a210fcb41c' '09d10cf0c07a0ba249428bbf20f5dbed840965fa06b3c09682f286a4dee9d84bb96f3b5b50e993d48ef1f20440531255ce7d0e60a648bf3fe536a5f2b0b74181' '0553131d8ad2b94f97b89be1a3a8f70b60f6255a1f107bb1ba5099378130a3423584422e03d776e408990700d53ca368f6c6ce5448a49dd19f426a7ea4f90247' '93b2e3a83e3a8fe3882d82ec8ef216ea45ed576949d37d7b1f160fb22ba9e8dc2db21fbdd0081da0a351cc88c64db72bb71f02d049884ead714513451921e930' '232c02bc7236f3355eff7b17fcddf240af4307c399435cf7ce11b3bb51033a0c1c9dc418eddfef96fa4c18267c2c49eced5e809785ed8800679b791a07bcab7d' 'a268fa85f3542f274e2a3f4656b70f2936d7502c88bf16f82a79b5399c60947b4b3bc64ccfdda77fd0e39ee6a965627703b2513917bd164b48d5a7b04ff65cc4' 'e0d4645df919838f0fe31a97bf6dd759c222a696f68133f7584d2c771f70734ea634a25bebb03a756221000d3552423207ee5163d75778dbf480b6e267ba4cd0' '5507c637e5a65c44ccf6e32118b6d16647ece865171b9a77dd3c78e6790fbd97e6b219e68d2e27750e22074eb536bccf8d553c295d939066b72994b86b2f251a' ) prepare() { cd mozc-${pkgver}+dfsg mkdir -p src/third_party mv ${srcdir}/protobuf-3.5.2 src/third_party/protobuf patch -Np1 -i ${srcdir}/usage_dict.txt.patch patch -Np1 -i ${srcdir}/Fix-build-with-gcc8.patch patch -Np1 -i ${srcdir}/Change-from-python2-code-to-python3.patch patch -Np1 -i ${srcdir}/add_support_new_japanese_era.patch patch -Np1 -i ${srcdir}/fcitx-mozc-${_fcitx_patchver}.patch # Disable fcitx5 specific building rm -rf src/unix/fcitx5/ } build() { # Fix compatibility with google-glog 0.3.3 (symbol conflict) CFLAGS="${CFLAGS} -fvisibility=hidden" CXXFLAGS="${CXXFLAGS} -fvisibility=hidden" cd mozc-${pkgver}+dfsg/src _targets="server/server.gyp:mozc_server gui/gui.gyp:mozc_tool unix/fcitx/fcitx.gyp:fcitx-mozc" QTDIR=/usr GYP_DEFINES="document_dir=/usr/share/licenses/$pkgname use_libzinnia=1" python build_mozc.py gyp --gypdir=/usr/bin --target_platform=Linux python build_mozc.py build -c $_bldtype $_targets # Extract license part of mozc head -n 29 server/mozc_server.cc > LICENSE } package() { cd mozc-${pkgver}+dfsg/src/ install -D -m 755 out_linux/${_bldtype}/mozc_server "${pkgdir}/usr/lib/mozc/mozc_server" install -m 755 out_linux/${_bldtype}/mozc_tool "${pkgdir}/usr/lib/mozc/mozc_tool" install -d "${pkgdir}/usr/share/licenses/$pkgname/" install -m 644 LICENSE data/installer/*.html "${pkgdir}/usr/share/licenses/${pkgname}/" for mofile in out_linux/${_bldtype}/gen/unix/fcitx/po/*.mo do filename=`basename $mofile` lang=${filename/.mo/} install -D -m 644 "$mofile" "${pkgdir}/usr/share/locale/$lang/LC_MESSAGES/fcitx-mozc.mo" done install -D -m 755 out_linux/${_bldtype}/fcitx-mozc.so "${pkgdir}/usr/lib/fcitx/fcitx-mozc.so" install -D -m 644 unix/fcitx/fcitx-mozc.conf "${pkgdir}/usr/share/fcitx/addon/fcitx-mozc.conf" install -D -m 644 unix/fcitx/mozc.conf "${pkgdir}/usr/share/fcitx/inputmethod/mozc.conf" install -d "${pkgdir}/usr/share/fcitx/mozc/icon" install -m 644 "$srcdir/fcitx-mozc-icons/mozc.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-alpha_full.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-alpha_full.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-alpha_half.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-alpha_half.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-direct.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-direct.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-hiragana.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-hiragana.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-katakana_full.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-katakana_full.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-katakana_half.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-katakana_half.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-dictionary.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-dictionary.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-properties.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-properties.png" install -m 644 "$srcdir/fcitx-mozc-icons/mozc-tool.png" "${pkgdir}/usr/share/fcitx/mozc/icon/mozc-tool.png" }