summaryrefslogtreecommitdiff
path: root/libraries
diff options
context:
space:
mode:
authorHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-12 11:47:52 +0200
committerHeinz Wiesinger <pprkut@slackbuilds.org>2010-05-12 11:47:52 +0200
commite4cbe506e092d107370a20cee295056a4df8d285 (patch)
treec36e6afe10c3481392c7f6fc827d9720664b6ae8 /libraries
parent7e61d41e4b9d9af67de4583c8699e26c784239ac (diff)
downloadslackbuilds-e4cbe506e092d107370a20cee295056a4df8d285.tar.gz
libraries/gtkspell: Removed from 12.2 repository
Diffstat (limited to 'libraries')
-rw-r--r--libraries/gtkspell/README7
-rw-r--r--libraries/gtkspell/doinst.sh3
-rw-r--r--libraries/gtkspell/gtkspell.SlackBuild103
-rw-r--r--libraries/gtkspell/gtkspell.info8
-rw-r--r--libraries/gtkspell/slack-desc19
5 files changed, 0 insertions, 140 deletions
diff --git a/libraries/gtkspell/README b/libraries/gtkspell/README
deleted file mode 100644
index 3a039c1bca..0000000000
--- a/libraries/gtkspell/README
+++ /dev/null
@@ -1,7 +0,0 @@
-GtkSpell provides word-processor-style highlighting and replacement of misspelled words in a GtkTextView widget.
-Right-clicking a misspelled word pops up a menu of suggested replacements.
-
-GtkSpell depends on
- * GTK+ 2.0 or greater.
- * Either Kevin Atkinson's pspell library, or its successor, GNU Aspell.
-GTKSPELL IS requiered by sylpheed for spell checking function to work
diff --git a/libraries/gtkspell/doinst.sh b/libraries/gtkspell/doinst.sh
deleted file mode 100644
index 34be13eb65..0000000000
--- a/libraries/gtkspell/doinst.sh
+++ /dev/null
@@ -1,3 +0,0 @@
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database usr/share/applications >/dev/null 2>&1
-fi
diff --git a/libraries/gtkspell/gtkspell.SlackBuild b/libraries/gtkspell/gtkspell.SlackBuild
deleted file mode 100644
index c29246f54a..0000000000
--- a/libraries/gtkspell/gtkspell.SlackBuild
+++ /dev/null
@@ -1,103 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for gtkspell - requiered by sylpheed for spell checking
-
-# Written by (Boricua) (boricua at despiertapr dot com)
-
-# license : public domain
-
-# Exit on most errors
-set -e
-
-PRGNAM=gtkspell # replace with name of program
-VERSION=2.0.11 # replace with version of program
-ARCH=${ARCH:-i686} # this should not change
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo} # the "_SBo" is required
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo} # For consistency's sake, use this
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp} # Drop the package in /tmp
-
-if [ "$ARCH" = "i486" ]; then
- SLKCFLAGS="-O2 -march=i486 -mtune=i686"
-elif [ "$ARCH" = "i686" ]; then
- SLKCFLAGS="-O2 -march=i686 -mtune=i686"
-fi
-
-rm -rf $PKG
-mkdir -p $TMP $PKG $OUTPUT
-cd $TMP
-rm -rf $PRGNAM-$VERSION
-tar -xzvf $CWD/$PRGNAM-$VERSION.tar.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-chmod -R u+w,go+r-w,a-s .
-
-
-# Your application will probably need different configure flags;
-# these are provided as an example only.
-# Be sure to build only shared libraries unless there's some need for
-# static.
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var
-
-# Compile the application and install it into the $PKG directory
-make
-make install DESTDIR=$PKG
-
-# Strip binaries and libraries - this can be done with 'make install-strip'
-# in many source trees, and that's preferable if so, but if not, use this
-( cd $PKG
- find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
- find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null
-)
-
-# Compress man pages
-# For kde programs, you'll need to do this for /opt/kde/share/man instead
-# If the man pages are installed to /usr/share/man instead, you'll need to either
-# add the --mandir=/usr/man flag to configure or move them manually after the
-# make install process is run.
-#( cd $PKG/usr/man
-# find . -type f -exec gzip -9 {} \;
-# for i in $(find . -type l) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
-#)
-
-# Compress info pages and remove the package's dir file
-# If no info pages are installed by the software, don't leave this in the script
-#rm -f $PKG/usr/info/dir
-#gzip -9 $PKG/usr/info/*.info*
-
-# Remove perllocal.pod and other special files that don't need to be installed,
-# as they will overwrite what's already on the system. If this is not needed,
-# remove it from the script.
-( cd $PKG
- # Remove 'special' files
- find . -name perllocal.pod \
- -o -name ".packlist" \
- -o -name "*.bs" \
- | xargs rm -f
-)
-
-# Copy program documentation into the package
-# The included documentation varies from one application to another, so be sure
-# to adjust your script as needed
-# Also, include the SlackBuild script in the documentation directory
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-#cp -a <documentation> $PKG/usr/doc/$PRGNAM-$VERSION
-#cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
-
-# Copy the slack-desc (and a custom doinst.sh if necessary) into ./install
-mkdir -p $PKG/install
-cat $CWD/slack-desc > $PKG/install/slack-desc
-
-# Make the package; be sure to leave it in $OUTPUT
-# If package symlinks need to be created during install *before*
-# your custom contents of doinst.sh runs, then add the -p switch to
-# the makepkg command below -- see makepkg(8) for details
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz
diff --git a/libraries/gtkspell/gtkspell.info b/libraries/gtkspell/gtkspell.info
deleted file mode 100644
index 2b54d8c32f..0000000000
--- a/libraries/gtkspell/gtkspell.info
+++ /dev/null
@@ -1,8 +0,0 @@
-PRGNAM="gtkspell"
-VERSION="2.0.11"
-HOMEPAGE="http://gtkspell.sourceforge.net/"
-DOWNLOAD="http://gtkspell.sourceforge.net/download/gtkspell-2.0.11.tar.gz"
-MD5SUM="494869f67146a12a3f17a958f51aeb05"
-MAINTAINER="Boricua"
-EMAIL="boricua@despiertapr.com"
-APPROVED="BP{k}" \ No newline at end of file
diff --git a/libraries/gtkspell/slack-desc b/libraries/gtkspell/slack-desc
deleted file mode 100644
index 1bc11750cb..0000000000
--- a/libraries/gtkspell/slack-desc
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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------------------------------------------------------|
-gtkspell: gtkspell (gtk spell check widget)
-gtkspell:
-gtkspell: GtkSpell provides word-processor-style highlighting
-gtkspell: and replacement of misspelled words in a GtkTextView widget.
-gtkspell:
-gtkspell: homepage: gtkspell.sourceforge.net
-gtkspell:
-gtkspell:
-gtkspell:
-gtkspell:
-gtkspell: