summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Robby Workman <rworkman@slackbuilds.org>2013-07-09 23:15:15 -0500
committer Robby Workman <rworkman@slackbuilds.org>2013-10-29 23:31:34 -0500
commit0ddf83bd0b09354451bf1d905cca902109b5739a (patch)
tree210049f74e99616838667a301e2e9e1f095a4dff
parent4eeb0b0b74702b68b81def7a6de75b2e2f6b18ce (diff)
downloadslackbuilds-0ddf83bd0b09354451bf1d905cca902109b5739a.tar.gz
slackbuilds-0ddf83bd0b09354451bf1d905cca902109b5739a.tar.xz
misc/itstool: Removed (included in Slackware 14.1)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
-rw-r--r--misc/itstool/README4
-rw-r--r--misc/itstool/itstool.SlackBuild80
-rw-r--r--misc/itstool/itstool.info10
-rw-r--r--misc/itstool/slack-desc19
4 files changed, 0 insertions, 113 deletions
diff --git a/misc/itstool/README b/misc/itstool/README
deleted file mode 100644
index 1709a23fad..0000000000
--- a/misc/itstool/README
+++ /dev/null
@@ -1,4 +0,0 @@
-ITS Tool allows you to translate your XML documents with PO
-files, using rules from the W3C Internationalization Tag Set
-(ITS) to determine what to translate and how to separate it
-into PO file messages.
diff --git a/misc/itstool/itstool.SlackBuild b/misc/itstool/itstool.SlackBuild
deleted file mode 100644
index e509cd430d..0000000000
--- a/misc/itstool/itstool.SlackBuild
+++ /dev/null
@@ -1,80 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for itstool
-
-# Written by Sebastián Salazar Molina <sebastian@sebastian.cl>
-# All rights reserved.
-#
-
-
-PRGNAM=itstool
-VERSION=1.2.0
-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 .
-chmod -R u+w,go+r-w,a-s .
-
-CFLAGS="$SLKCFLAGS" \
-CXXFLAGS="$SLKCFLAGS" \
-./configure \
- --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --mandir=/usr/man \
- --libdir=/usr/lib${LIBDIRSUFFIX} \
- --docdir=/usr/doc/$PRGNAM-$VERSION \
- --build=$ARCH-slackware-linux
-
-make
-make install-strip DESTDIR=$PKG
-
-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
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a \
- AUTHORS COPYING COPYING.GPL3 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
-
-cd $PKG
-/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
diff --git a/misc/itstool/itstool.info b/misc/itstool/itstool.info
deleted file mode 100644
index c58b8944dc..0000000000
--- a/misc/itstool/itstool.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="itstool"
-VERSION="1.2.0"
-HOMEPAGE="http://itstool.org"
-DOWNLOAD="http://files.itstool.org/itstool/itstool-1.2.0.tar.bz2"
-MD5SUM="c0925f6869e33af8e7fe56848c129152"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Sebastián Salazar Molina"
-EMAIL="sebastian@sebastian.cl"
diff --git a/misc/itstool/slack-desc b/misc/itstool/slack-desc
deleted file mode 100644
index 937c49bedd..0000000000
--- a/misc/itstool/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------------------------------------------------------|
-itstool: itstool (Translate XML documents with PO files)
-itstool:
-itstool: ITS Tool allows you to translate your XML documents with PO
-itstool: files, using rules from the W3C Internationalization Tag Set
-itstool: (ITS) to determine what to translate and how to separate it
-itstool: into PO file messages.
-itstool:
-itstool: Homepage: http://itstool.org/
-itstool:
-itstool:
-itstool: