From 03095a13a209e9582589e75648d37921a355f340 Mon Sep 17 00:00:00 2001 From: ltlnx Date: Fri, 25 Nov 2022 08:38:59 +0700 Subject: misc/fcitx5: Added (Input Method Framework). Signed-off-by: Willy Sudiarto Raharjo --- misc/fcitx5/README | 30 ++++++++++++ misc/fcitx5/doinst.sh | 13 +++++ misc/fcitx5/fcitx5-autostart | 36 ++++++++++++++ misc/fcitx5/fcitx5.SlackBuild | 110 ++++++++++++++++++++++++++++++++++++++++++ misc/fcitx5/fcitx5.info | 10 ++++ misc/fcitx5/slack-desc | 19 ++++++++ 6 files changed, 218 insertions(+) create mode 100644 misc/fcitx5/README create mode 100644 misc/fcitx5/doinst.sh create mode 100644 misc/fcitx5/fcitx5-autostart create mode 100644 misc/fcitx5/fcitx5.SlackBuild create mode 100644 misc/fcitx5/fcitx5.info create mode 100644 misc/fcitx5/slack-desc (limited to 'misc') diff --git a/misc/fcitx5/README b/misc/fcitx5/README new file mode 100644 index 000000000000..c58caad2c3bd --- /dev/null +++ b/misc/fcitx5/README @@ -0,0 +1,30 @@ +Fcitx is an input method framework with extension support. Currently it +supports Linux and Unix systems like freebsd. Fcitx supports typing +with many languages all over the world with a large number of engines. + +Fcitx has a slim core while provides powerful features with addons. It +is easy to customize fcitx to satisfy your own needs. + +Fcitx5 is the next generation of fcitx. + +Some cmake options to keep in mind before building are: + +- ENABLE_WAYLAND: Wayland support. Defaults to On and should be fine + for desktop environments such as KDE and GNOME. Users running + X11-based window managers will need to turn it off. + +- ENABLE_ENCHANT: Enchant support. Defaults to On. Used for word + prediction (hinting). Depends on libenchant, which is provided by + most distributions. + +The user is encouraged to check the contents of CMakeLists.txt for an +exhaustive list of options. + +For example, an i3 user who wishes to install it to /opt would run +(likely with sudo privileges): + + cmake -DENABLE_WAYLAND=Off \ + -DCMAKE_INSTALL_PREFIX=/your/install/path . + make + sudo make install + diff --git a/misc/fcitx5/doinst.sh b/misc/fcitx5/doinst.sh new file mode 100644 index 000000000000..138e27de17a5 --- /dev/null +++ b/misc/fcitx5/doinst.sh @@ -0,0 +1,13 @@ +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then + if [ -x /usr/bin/gtk-update-icon-cache ]; then + /usr/bin/gtk-update-icon-cache -f usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi diff --git a/misc/fcitx5/fcitx5-autostart b/misc/fcitx5/fcitx5-autostart new file mode 100644 index 000000000000..22d8c056d33b --- /dev/null +++ b/misc/fcitx5/fcitx5-autostart @@ -0,0 +1,36 @@ +#!/bin/bash + +START="no" + +if [ "$XIM" = "fcitx" ]; then + START="yes" +fi + +if [ "$XIM_PROGRAM" = "fcitx" ]; then + START="yes" +fi + +if [ "$GTK_IM_MODULE" = "fcitx" ]; then + START="yes" +fi + +if [ "$QT_IM_MODULE" = "fcitx" ]; then + START="yes" +fi + +if [ "$START" = "no" ]; then + exit 0 +fi + +# sleep for a little while to avoid duplicate startup +sleep 2 + +# Test whether fcitx is running correctly with dbus... +fcitx5-remote > /dev/null 2>&1 + +if [ $? = "1" ]; then + echo "Fcitx seems is not running" + fcitx5 +else + echo "Fcitx is running correctly." +fi diff --git a/misc/fcitx5/fcitx5.SlackBuild b/misc/fcitx5/fcitx5.SlackBuild new file mode 100644 index 000000000000..e067338a2742 --- /dev/null +++ b/misc/fcitx5/fcitx5.SlackBuild @@ -0,0 +1,110 @@ +#!/bin/bash + +# Copyright 2022 Wen-Wei Kao (ltlnx), Taichung, Taiwan +# All rights reserved. +# +# Redistribution and use of this script, with or without modification, is +# permitted provided that the following conditions are met: +# +# 1. Redistributions of this script must retain the above copyright +# notice, this list of conditions and the following disclaimer. +# +# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ''AS IS'' AND ANY EXPRESS OR IMPLIED +# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO +# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, +# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; +# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, +# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR +# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF +# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + +cd $(dirname $0) ; CWD=$(pwd) + +PRGNAM=fcitx5 +VERSION=${VERSION:-5.0.19} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} +PKGTYPE=${PKGTYPE:-txz} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i586 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + +if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then + echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" + exit 0 +fi + +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i586" ]; then + SLKCFLAGS="-O2 -march=i586 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +else + SLKCFLAGS="-O2" + LIBDIRSUFFIX="" +fi + +set -e + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-${VERSION}_dict.tar.xz +cd $PRGNAM-$VERSION +chown -R root:root . +find -L . \ + \( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \ + -o -perm 511 \) -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ + -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; + +mkdir -p build +cd build + cmake \ + -DCMAKE_CXX_FLAGS="${SLKCFLAGS}" \ + -DCMAKE_C_FLAGS="${SLKCFLAGS}" \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DCMAKE_INSTALL_LIBDIR=lib${LIBDIRSUFFIX} .. + make + make install/strip DESTDIR=$PKG +cd .. + + +# Use our own autostart script to autostart fcitx5 +install -m 755 $CWD/fcitx5-autostart $PKG/usr/bin/ +sed -i "s|Exec=/usr/bin/fcitx5|Exec=/usr/bin/fcitx5-autostart|" \ + $PKG/etc/xdg/autostart/org.fcitx.Fcitx5.desktop + +rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la + +find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + +find $PKG -name perllocal.pod -o -name ".packlist" -o -name "*.bs" | xargs rm -f || true + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a LICENSES/* README* $PKG/usr/doc/$PRGNAM-$VERSION +cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild + +mkdir -p $PKG/install +cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh + +cd $PKG +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE diff --git a/misc/fcitx5/fcitx5.info b/misc/fcitx5/fcitx5.info new file mode 100644 index 000000000000..5c85bd7e6ee9 --- /dev/null +++ b/misc/fcitx5/fcitx5.info @@ -0,0 +1,10 @@ +PRGNAM="fcitx5" +VERSION="5.0.19" +HOMEPAGE="https://fcitx-im.org/wiki/Fcitx_5" +DOWNLOAD="https://download.fcitx-im.org/fcitx5/fcitx5/fcitx5-5.0.19_dict.tar.xz" +MD5SUM="fe302419e1e2cbff4fc7ed6f8ec159d5" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +REQUIRES="fmt xcb-imdkit" +MAINTAINER="ltlnx" +EMAIL="ltlnx.tw@gmail.com" diff --git a/misc/fcitx5/slack-desc b/misc/fcitx5/slack-desc new file mode 100644 index 000000000000..eaccae7994f3 --- /dev/null +++ b/misc/fcitx5/slack-desc @@ -0,0 +1,19 @@ +# HOW TO EDIT THIS FILE: +# The "handy ruler" below makes it easier to edit a package description. +# Line up the first '|' above the ':' following the base package name, and +# the '|' on the right side marks the last column you can put a character in. +# You must make exactly 11 lines for the formatting to be correct. It's also +# customary to leave one space after the ':' except on otherwise blank lines. + + |-----handy-ruler------------------------------------------------------| +fcitx5: fcitx5 (Input Method Framework) +fcitx5: +fcitx5: Fcitx is an input method framework with extension support. Currently +fcitx5: it supports Linux and Unix systems like freebsd. It has three built- +fcitx5: in Input Method Engine, Pinyin, QuWei and Table-based input methods. +fcitx5: Fcitx tries to provide a native feeling under all desktop as well as +fcitx5: a light weight core. You can easily customize it to fit your +fcitx5: requirements. +fcitx5: +fcitx5: Homepage: https://fcitx-im.org/wiki/Fcitx_5 +fcitx5: -- cgit v1.2.3