summaryrefslogtreecommitdiff
path: root/community/fcitx
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
committerroot <root@rshg054.dnsready.net>2013-08-11 01:21:34 -0700
commit18a41d682d6e91e0d28fce23eb75292f477bd620 (patch)
treebce8f660d7d0b6541cadbc49bf1bac2434e4c0c6 /community/fcitx
parent0ade1da67addf154d93c6a6399b0a3d5a18a3336 (diff)
Sun Aug 11 01:21:31 PDT 2013
Diffstat (limited to 'community/fcitx')
-rw-r--r--community/fcitx/PKGBUILD121
-rw-r--r--community/fcitx/fcitx-gtk2.install11
-rw-r--r--community/fcitx/fcitx-gtk3.install11
-rw-r--r--community/fcitx/fcitx.install14
4 files changed, 0 insertions, 157 deletions
diff --git a/community/fcitx/PKGBUILD b/community/fcitx/PKGBUILD
deleted file mode 100644
index 40e623d1a..000000000
--- a/community/fcitx/PKGBUILD
+++ /dev/null
@@ -1,121 +0,0 @@
-# $Id: PKGBUILD 94235 2013-07-17 12:26:33Z fyan $
-# Maintainer: Felix Yan <felixonmars@gmail.com>
-# Contributor: Andrea Scarpino <andrea@archlinux.org>
-# Contributor: csslayer <wengxt AT gmail com>
-
-pkgbase=fcitx
-pkgname=('fcitx' 'fcitx-gtk2' 'fcitx-gtk3' 'fcitx-qt4')
-pkgver=4.2.8.1
-pkgrel=2
-groups=('fcitx-im')
-arch=('i686' 'x86_64')
-url="http://fcitx-im.org"
-license=('GPL')
-makedepends=('cmake' 'doxygen' 'gtk2' 'gtk3' 'qt4' 'icu' 'mesa' \
- 'iso-codes' 'gobject-introspection' 'libxkbfile')
-source=(http://download.fcitx-im.org/$pkgbase/$pkgbase-${pkgver}_dict.tar.xz)
-
-build() {
- cd "$srcdir"
- mkdir -p build
- cd build
-
- cmake ../${pkgbase}-${pkgver} \
- -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_INSTALL_PREFIX=/usr \
- -DFORCE_OPENCC=ON \
- -DFORCE_PRESAGE=ON \
- -DFORCE_ENCHANT=ON \
- -DENABLE_TEST=ON \
- -DENABLE_GTK2_IM_MODULE=ON \
- -DENABLE_GTK3_IM_MODULE=ON \
- -DENABLE_QT_IM_MODULE=ON \
- -DQT_QMAKE_EXECUTABLE=qmake-qt4
- make
-}
-
-check() {
- cd "${srcdir}/build"
- make test
-}
-
-package_fcitx() {
- pkgdesc="Flexible Context-aware Input Tool with eXtension"
- depends=('pango' 'libxinerama' 'gtk-update-icon-cache' 'shared-mime-info' \
- 'hicolor-icon-theme' 'desktop-file-utils' 'libxkbfile' \
- 'libxfixes' 'dbus-core' 'icu')
- optdepends=('enchant: for word predication support'
- 'opencc: optional engine to do chinese convert'
- 'fcitx-anthy: Hiragana text to Kana Kanji mixed text Japanese input method'
- 'fcitx-chewing: Intelligent Zhuyin input method library for traditional Chinese'
- 'fcitx-cloudpinyin: Standalone module for fcitx that uses pinyin API on the internet to provide additional input candidates'
- 'fcitx-configtool: GTK based config tool for Fcitx'
- 'fcitx-fbterm: Fbterm support for Fcitx'
- 'fcitx-googlepinyin: A fork from google pinyin on android for Fcitx'
- 'fcitx-gtk2: GTK2 IM Module for fcitx'
- 'fcitx-gtk3: GTK3 IM Module for fcitx'
- 'fcitx-hangul: Hangul (Korean) support for fcitx'
- 'fcitx-kkc: libkkc (Japanese Kana Kanji input method) engine for fcitx'
- 'fcitx-libpinyin: Fcitx Wrapper for libpinyin, Library to deal with pinyin'
- 'fcitx-m17n: Multilingual text processing library'
- 'fcitx-mozc: Fcitx Module of A Japanese Input Method for Chromium OS, Windows, Mac and Linux (the Open Source Edition of Google Japanese Input)'
- 'fcitx-qt4: QT4 IM Module for fcitx'
- 'fcitx-qt5: QT5 IM Module for fcitx'
- 'fcitx-rime: Rime input method engine (Traditional Chinese)'
- 'fcitx-sayura: Sinhala Transe IME engine for fcitx'
- 'fcitx-sunpinyin: Statistical Language Model based pinyin IME by Sun'
- 'fcitx-table-extra: Extra tables for Fcitx, including Boshiamy, Zhengma, Cangjie3, Cangjie5'
- 'fcitx-table-other: Provides some other tables for Fcitx, fork from ibus-table-others, scim-tables'
- 'fcitx-ui-light: Light weight xlib and xft based ui for fcitx'
- 'fcitx-unikey: Fcitx Wrapper for unikey'
- 'kcm-fcitx: KDE Config Module for Fcitx'
- 'gettext: for fcitx-po-parser')
- install=fcitx.install
-
- cd "${srcdir}/build"
- make DESTDIR="${pkgdir}" install
-
- rm -r "${pkgdir}/usr/lib/"{gtk-2.0,gtk-3.0,qt4}
- rm -r "${pkgdir}/usr/lib/fcitx/qt"
- rm -r "${pkgdir}/usr/include/fcitx-qt"
- rm "${pkgdir}/usr/lib/fcitx/libexec/fcitx-qt-gui-wrapper"
- rm "${pkgdir}/usr/lib/"libfcitx-qt.so*
- rm "${pkgdir}/usr/lib/pkgconfig/fcitx-qt.pc"
-}
-
-package_fcitx-gtk2() {
- pkgdesc='GTK2 IM Module for fcitx'
- depends=('gtk2' "fcitx>=$pkgver")
- install=fcitx-gtk2.install
-
- cd "${srcdir}/build/src/frontend/gtk2"
- make DESTDIR="${pkgdir}" install
-}
-
-package_fcitx-gtk3() {
- pkgdesc='GTK3 IM Module for fcitx'
- depends=('gtk3' "fcitx>=$pkgver")
- install=fcitx-gtk3.install
-
- cd "${srcdir}/build/src/frontend/gtk3"
- make DESTDIR="${pkgdir}" install
-}
-
-package_fcitx-qt4() {
- pkgdesc='QT4 IM Module for fcitx'
- depends=('qt4' "fcitx>=$pkgver")
- replaces=('fcitx-qt')
- provides=('fcitx-qt')
- conflicts=('fcitx-qt')
-
- cd "${srcdir}/build/src/frontend/qt"
- make DESTDIR="${pkgdir}" install
-
- cd "${srcdir}/build/tools/gui"
- make DESTDIR="${pkgdir}" install
-
- cd "${srcdir}/build/src/lib/fcitx-qt"
- make DESTDIR="${pkgdir}" install
-}
-
-sha512sums=('981e07830693b9525f8f8c7f18579477c066a19ae9358d8aa96ae5439cc3d40f7af2ad24b8cbd24410a5472d002a02eccb8c9d042019cd8459fd094e302d5a72')
diff --git a/community/fcitx/fcitx-gtk2.install b/community/fcitx/fcitx-gtk2.install
deleted file mode 100644
index 6fd3be681..000000000
--- a/community/fcitx/fcitx-gtk2.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- usr/bin/gtk-query-immodules-2.0 --update-cache
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
diff --git a/community/fcitx/fcitx-gtk3.install b/community/fcitx/fcitx-gtk3.install
deleted file mode 100644
index b44958797..000000000
--- a/community/fcitx/fcitx-gtk3.install
+++ /dev/null
@@ -1,11 +0,0 @@
-post_install() {
- usr/bin/gtk-query-immodules-3.0 --update-cache
-}
-
-post_upgrade() {
- post_install
-}
-
-post_remove() {
- post_install
-}
diff --git a/community/fcitx/fcitx.install b/community/fcitx/fcitx.install
deleted file mode 100644
index 59e1d7012..000000000
--- a/community/fcitx/fcitx.install
+++ /dev/null
@@ -1,14 +0,0 @@
-post_upgrade() {
- gtk-update-icon-cache -q -t -f usr/share/icons/hicolor
- update-desktop-database -q
- update-mime-database usr/share/mime &> /dev/null
-}
-
-post_install() {
- echo "You should at least install one of kcm-fcitx (For Qt/KDE users) or fcitx-configtool (For GTK+ users) to enable Fcitx configuration GUI."
- post_upgrade
-}
-
-post_remove() {
- post_upgrade
-}