From 38be0a9c53648508908a38f9263ccaa2529ce0f5 Mon Sep 17 00:00:00 2001 From: Mikhail Zotov Date: Fri, 4 Mar 2011 17:04:34 -0300 Subject: academic/artha: Added (cross-platform thesaurus) Signed-off-by: Niels Horn --- academic/artha/README | 13 ++++++ academic/artha/artha.SlackBuild | 88 +++++++++++++++++++++++++++++++++++++++++ academic/artha/artha.info | 10 +++++ academic/artha/doinst.sh | 9 +++++ academic/artha/slack-desc | 12 ++++++ 5 files changed, 132 insertions(+) create mode 100644 academic/artha/README create mode 100644 academic/artha/artha.SlackBuild create mode 100644 academic/artha/artha.info create mode 100644 academic/artha/doinst.sh create mode 100644 academic/artha/slack-desc (limited to 'academic') diff --git a/academic/artha/README b/academic/artha/README new file mode 100644 index 0000000000..ed87a9a50f --- /dev/null +++ b/academic/artha/README @@ -0,0 +1,13 @@ +Artha is a cross-platform open-source thesaurus with WordNet as its +database. + +The main focus of Artha is high usability, with much simplicity. It has +distinct features like: + +* hotkey press - word look-up (select text and press a hotkey for look-up) +* regex-based search (find words using wild-cards like *, ?, etc.) +* passive desktop notifications (of word definitions for uninterrupted + workflow) +* spelling suggestions (when the exact spelling is vague/not known) + +Artha requires WordNet, which is available at SlackBuilds.org. diff --git a/academic/artha/artha.SlackBuild b/academic/artha/artha.SlackBuild new file mode 100644 index 0000000000..765447c5e1 --- /dev/null +++ b/academic/artha/artha.SlackBuild @@ -0,0 +1,88 @@ +#!/bin/sh +# +# Slackware build script for artha +# +# Written by Mikhail Zotov + +PRGNAM=artha +VERSION=${VERSION:-1.0.2} +BUILD=${BUILD:-1} +TAG=${TAG:-_SBo} + +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + 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.bz2 +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 DESTDIR=$PKG + +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/usr/man -type f -exec gzip -9 {} \; +for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done + +# These directories are empty +rm -rf $PKG/usr/{lib,include} + +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} diff --git a/academic/artha/artha.info b/academic/artha/artha.info new file mode 100644 index 0000000000..b3e7364f58 --- /dev/null +++ b/academic/artha/artha.info @@ -0,0 +1,10 @@ +PRGNAM="artha" +VERSION="1.0.2" +HOMEPAGE="http://artha.sourceforge.net/" +DOWNLOAD="http://downloads.sourceforge.net/artha/artha-1.0.2.tar.bz2" +MD5SUM="8391fc152531d98bc7db6a7695611137" +DOWNLOAD_x86_64="" +MD5SUM_x86_64="" +MAINTAINER="Mikhail Zotov" +EMAIL="mikhail dot ru at gmail dot com" +APPROVED="Niels Horn" diff --git a/academic/artha/doinst.sh b/academic/artha/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/academic/artha/doinst.sh @@ -0,0 +1,9 @@ +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 usr/share/icons/hicolor >/dev/null 2>&1 + fi +fi diff --git a/academic/artha/slack-desc b/academic/artha/slack-desc new file mode 100644 index 0000000000..05481d0759 --- /dev/null +++ b/academic/artha/slack-desc @@ -0,0 +1,12 @@ + |-----handy-ruler------------------------------------------------------| +artha: artha (cross-platform thesaurus) +artha: +artha: Artha is a cross-platform open-source thesaurus with WordNet as its +artha: database. +artha: +artha: http://artha.sourceforge.net/ +artha: +artha: +artha: +artha: +artha: -- cgit v1.2.3