diff options
author | Ozan Türkyılmaz <ozan.turkyilmaz@gmail.com> | 2010-05-13 00:59:25 +0200 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2010-05-13 00:59:25 +0200 |
commit | cffa06022cc9c0978104f4cf01cc98170bcafebb (patch) | |
tree | b55d9dcf7e7f341a5c9a2abfb68a534d3963784f /misc/ibus-anthy/ibus-anthy.SlackBuild | |
parent | 77d806225733863f43586474f705265839bf6ea3 (diff) | |
download | slackbuilds-cffa06022cc9c0978104f4cf01cc98170bcafebb.tar.gz |
misc/ibus-anthy: Added to 13.0 repository
Diffstat (limited to 'misc/ibus-anthy/ibus-anthy.SlackBuild')
-rw-r--r-- | misc/ibus-anthy/ibus-anthy.SlackBuild | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/misc/ibus-anthy/ibus-anthy.SlackBuild b/misc/ibus-anthy/ibus-anthy.SlackBuild new file mode 100644 index 0000000000..75bce15575 --- /dev/null +++ b/misc/ibus-anthy/ibus-anthy.SlackBuild @@ -0,0 +1,72 @@ +#!/bin/sh + +# Slackware build script for ibus-anthy + +# Written by Ozan Türkyılmaz ozan.turkyilmaz@gmail.com +# This script is in public domain. + +PRGNAM=ibus-anthy +VERSION=${VERSION:-1.2.0.20100115} +ARCH=${ARCH:-i486} +BUILD=${BUILD:-2} +TAG=${TAG:-_SBo} + +CWD=$(pwd) +TMP=${TMP:-/tmp/SBo} +PKG=$TMP/package-$PRGNAM +OUTPUT=${OUTPUT:-/tmp} + +if [ "$ARCH" = "i486" ]; then + SLKCFLAGS="-O2 -march=i486 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "i686" ]; then + SLKCFLAGS="-O2 -march=i686 -mtune=i686" + LIBDIRSUFFIX="" +elif [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-O2 -fPIC" + LIBDIRSUFFIX="64" +fi + +set -e # Exit on most errors + +rm -rf $PKG +mkdir -p $TMP $PKG $OUTPUT +cd $TMP +rm -rf $PRGNAM-$VERSION +tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +cd $PRGNAM-$VERSION +chown -R root:root . +find . \ + \( -perm 777 -o -perm 775 -o -perm 711 -o -perm 555 -o -perm 511 \) \ + -exec chmod 755 {} \; -o \ + \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ + -exec chmod 644 {} \; + +CFLAGS="$SLKCFLAGS" \ +CXXFLAGS="$SLKCFLAGS" \ +./configure \ + --prefix=/usr \ + --libdir=/usr/lib${LIBDIRSUFFIX} \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --mandir=/usr/man \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --build=$ARCH-slackware-linux + +make +make install-strip DESTDIR=$PKG # ibus-anthy strips itself + +# there's no man pages to compress + +mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION +cp -a \ + AUTHORS COPYING ChangeLog INSTALL NEWS 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:-tgz} |