office/kbgoffice: Added (KDE frontend for the BG Office project)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
This commit is contained in:
parent
3172d5b786
commit
8f9308644d
|
@ -0,0 +1,7 @@
|
|||
KBGOffice is inheritor of the popular dictionary KBEDictionary.
|
||||
It provides easy to use interface for the dictionaries from the
|
||||
Bulgarian Office project. Currently KBGOffice supports all the five
|
||||
dictionaries (English <=> Bulgarian, Polytechnical, Computer Terms,
|
||||
Thesaurus and Dialect)
|
||||
|
||||
This requires the "full-pack" package (runtime-only dependency).
|
|
@ -0,0 +1,80 @@
|
|||
#!/bin/sh
|
||||
#
|
||||
# SlackBuild for KBGOffice Assistant
|
||||
# Written by Georgi D. Sotirov <gdsotirov@dir.bg>
|
||||
# Modified by Martin A. Ivanov <tramni@abv.bg>
|
||||
#
|
||||
|
||||
PRGNAM=kbgoffice
|
||||
VERSION=2.0
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
case "$( uname -m )" in
|
||||
i?86) ARCH=i686 ;;
|
||||
arm*) ARCH=arm ;;
|
||||
*) ARCH=$( uname -m ) ;;
|
||||
esac
|
||||
fi
|
||||
|
||||
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"
|
||||
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.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 {} \;
|
||||
|
||||
cd src
|
||||
sed "s:/usr/local:/usr:" -i.orig $PRGNAM.pro
|
||||
sed "s:/usr/local:/usr:" -i.orig main.cpp
|
||||
qmake -config release
|
||||
CFLAGS="$SLKCFLAGS" CXXFLAGS="$SLKCFLAGS" make
|
||||
make INSTALL_ROOT=$PKG install
|
||||
cd ..
|
||||
|
||||
mkdir -p $PKG/usr/share/applications
|
||||
cat $CWD/$PRGNAM.desktop > $PKG/usr/share/applications/$PRGNAM.desktop
|
||||
|
||||
# er, no.
|
||||
rm -rf $PKG/root
|
||||
|
||||
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cp -a \
|
||||
COPYING* ChangeLog INSTALL README THANKS TODO \
|
||||
$PKG/usr/doc/$PRGNAM-$VERSION
|
||||
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
||||
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -exec chown root:root {} \; -exec chmod 644 {} \;
|
||||
|
||||
mkdir -p $PKG/install
|
||||
cat $CWD/slack-desc > $PKG/install/slack-desc
|
||||
|
||||
cd $PKG
|
||||
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|
|
@ -0,0 +1,13 @@
|
|||
#!/usr/bin/env xdg-open
|
||||
[Desktop Entry]
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Name=KBGOffice
|
||||
Name[bg]=КБГОфис
|
||||
GenericName=BG Office Assistant
|
||||
GenericName[bg]=БГ Офис помощник
|
||||
TryExec=kbgoffice
|
||||
Exec=kbgoffice %F
|
||||
Icon=kbgoffice_icon
|
||||
Categories=Office;TextTools;KDE;Qt;Utility;Dictionary;
|
||||
Terminal=false
|
|
@ -0,0 +1,10 @@
|
|||
PRGNAM="kbgoffice"
|
||||
VERSION="2.0"
|
||||
HOMEPAGE="http://bgoffice.sourceforge.net/assistant/"
|
||||
DOWNLOAD="http://downloads.sourceforge.net/bgoffice/kbgoffice-2.0.tar.gz"
|
||||
MD5SUM="c8764b2b3224209ec8025dd3c9c45e37"
|
||||
DOWNLOAD_x86_64=""
|
||||
MD5SUM_x86_64=""
|
||||
MAINTAINER="Martin A. Ivanov"
|
||||
EMAIL="tramni@abv.bg"
|
||||
APPROVED="rworkman"
|
|
@ -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 ':'.
|
||||
|
||||
|-----handy-ruler------------------------------------------------------|
|
||||
kbgoffice: KBGOffice (A KDE frontend for the BG Office project)
|
||||
kbgoffice:
|
||||
kbgoffice: KBGOffice is inheritor of the popular dictionary KBEDictionary.
|
||||
kbgoffice: It provides easy to use interface for the dictionaries from the
|
||||
kbgoffice: Bulgarian Office project. Currently KBGOffice supports all the five
|
||||
kbgoffice: dictionaries (English <=> Bulgarian, Polytechnical, Computer Terms,
|
||||
kbgoffice: Thesaurus and Dialect), which should be downloaded and installed
|
||||
kbgoffice: separately.
|
||||
kbgoffice:
|
||||
kbgoffice: Homepage: http://bgoffice.sourceforge.net/
|
||||
kbgoffice:
|
Loading…
Reference in New Issue