mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
misc/ibus: Miscellaneous cleanups.
This commit is contained in:
parent
6cdd7ffe1f
commit
f062299969
2 changed files with 14 additions and 2 deletions
|
@ -6,7 +6,7 @@ After installing at least one engine (e.g. PinYin engine) and enabling it
|
|||
in ibus-setup, ibus itself should be fully functional. If you want to use
|
||||
ibus as your primary input method, you should remove the scim package.
|
||||
|
||||
This requires gconf, notify-python and pyxdg.
|
||||
This requires gconf and pyxdg.
|
||||
If you use qt applications, then you probably want ibus-qt as well.
|
||||
|
||||
After installing, ibus will automatically be started in an xdg-compliant
|
||||
|
|
|
@ -29,10 +29,19 @@
|
|||
|
||||
PRGNAM=ibus
|
||||
VERSION=${VERSION:-1.3.1}
|
||||
ARCH=${ARCH:-i486}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
# Automatically determine the architecture we're building on:
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) export ARCH=i486 ;;
|
||||
arm*) export ARCH=arm ;;
|
||||
# Unless $ARCH is already set, use uname -m for all other archs:
|
||||
*) export ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
if [ "$ARCH" = "i486" ]; then
|
||||
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
||||
LIBDIRSUFFIX=""
|
||||
|
@ -42,6 +51,9 @@ elif [ "$ARCH" = "i686" ]; then
|
|||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
SLKCFLAGS="-O2 -fPIC"
|
||||
LIBDIRSUFFIX="64"
|
||||
else
|
||||
SLKCFLAGS="-O2"
|
||||
LIBDIRSUFFIX=""
|
||||
fi
|
||||
|
||||
CWD=$(pwd)
|
||||
|
|
Loading…
Reference in a new issue