summaryrefslogtreecommitdiffstats
path: root/office
diff options
context:
space:
mode:
author Robby Workman2013-11-11 16:46:31 +0100
committer Robby Workman2013-11-24 07:04:28 +0100
commit07704a2f9403787b59ac0c0fa52a0af0053b5a39 (patch)
treed4e4233bf971824002f5e26a9de67db18306fc5a /office
parent84e9c606646d8346349742f1e1db941f3525f87d (diff)
downloadslackbuilds-07704a2f9403787b59ac0c0fa52a0af0053b5a39.tar.gz
office/auctex: Removed (no SBo maintainer)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office')
-rw-r--r--office/auctex/README11
-rw-r--r--office/auctex/auctex.SlackBuild84
-rw-r--r--office/auctex/auctex.info10
-rw-r--r--office/auctex/doinst.sh5
-rw-r--r--office/auctex/slack-desc19
5 files changed, 0 insertions, 129 deletions
diff --git a/office/auctex/README b/office/auctex/README
deleted file mode 100644
index ccf0a1a53a..0000000000
--- a/office/auctex/README
+++ /dev/null
@@ -1,11 +0,0 @@
-AUCTEX is an extensible package for writing and formatting TeX files in
-GNU Emacs and XEmacs.
-
-It provides the most extensive LaTeX editing support available for a
-general purpose editor. Apart from the customary TeX shell
-functionality, it provides syntax highlighting, smart indentation and
-formatting, previews of mathematics and other stuff right in the editing
-buffer (preview-latex), smart folding of syntactical elements, macro and
-environment completion. It also supports the self-documenting .dtx
-format from the LaTeX project. Support for other TeX-based formats
-includes ConTeXt and plain TeX, but is quite more sketchy.
diff --git a/office/auctex/auctex.SlackBuild b/office/auctex/auctex.SlackBuild
deleted file mode 100644
index 0df7366758..0000000000
--- a/office/auctex/auctex.SlackBuild
+++ /dev/null
@@ -1,84 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for AUCTeX
-
-# Written by Aleksandar Samardzic <asamardzic@matf.bg.ac.yu>
-
-PRGNAM=auctex
-VERSION=${VERSION:-11.86}
-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.gz
-cd $PRGNAM-$VERSION
-chown -R root:root .
-find -L . \
- \( -perm 777 -o -perm 775 -o -perm 750 -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 \
- --infodir=/usr/info \
- --build=$ARCH-slackware-linux
-
-make
-make install DESTDIR=$PKG
-
-# Remove files that are in tetex (and texlive)
-rm -rf $PKG/usr/share/texmf/tex/latex/preview
-
-rm -f $PKG/usr/info/dir
-gzip -9 $PKG/usr/info/*.info*
-
-mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
-cp -a CHANGES COPYING ChangeLog FAQ INSTALL README RELEASE TODO \
- $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/office/auctex/auctex.info b/office/auctex/auctex.info
deleted file mode 100644
index 8ec38d7ed9..0000000000
--- a/office/auctex/auctex.info
+++ /dev/null
@@ -1,10 +0,0 @@
-PRGNAM="auctex"
-VERSION="11.86"
-HOMEPAGE="http://www.gnu.org/software/auctex/"
-DOWNLOAD="http://ftp.gnu.org/pub/gnu/auctex/auctex-11.86.tar.gz"
-MD5SUM="6bc33a67b6ac59db1aa238f3693b36d2"
-DOWNLOAD_x86_64=""
-MD5SUM_x86_64=""
-REQUIRES=""
-MAINTAINER="Aleksandar Samardzic"
-EMAIL="asamardzic@gmail.com"
diff --git a/office/auctex/doinst.sh b/office/auctex/doinst.sh
deleted file mode 100644
index 59c96bd723..0000000000
--- a/office/auctex/doinst.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-if [ -x /usr/bin/install-info ] ; then
- chroot . /usr/bin/install-info --info-dir=/usr/info /usr/info/preview-latex.info.gz 2>/dev/null
- chroot . /usr/bin/install-info --info-dir=/usr/info /usr/info/auctex.info.gz 2>/dev/null
-fi
-
diff --git a/office/auctex/slack-desc b/office/auctex/slack-desc
deleted file mode 100644
index 42ebcf3ae1..0000000000
--- a/office/auctex/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 ':' except on otherwise blank lines.
-
- |-----handy-ruler------------------------------------------------------|
-auctex: AUCTeX (Emacs package for writing and formatting TeX files)
-auctex:
-auctex: AUCTeX is an extensible package for writing and formatting TeX
-auctex: files in GNU Emacs and XEmacs. It supports many different TeX
-auctex: macro packages, including AMS-TeX, LaTeX, Texinfo, ConTeXt, and
-auctex: docTeX (dtx files).
-auctex:
-auctex: Auctex home page is: http://www.gnu.org/software/auctex/
-auctex:
-auctex:
-auctex: