aboutsummaryrefslogtreecommitdiff
path: root/network/exim-html/exim-html.SlackBuild
diff options
context:
space:
mode:
authorThomas Morper <thomas@beingboiled.info>2011-05-10 15:44:47 -0500
committerRobby Workman <rworkman@slackbuilds.org>2011-05-10 15:44:47 -0500
commit49c0d6564bd00f6d99c462af1934728cf03807e1 (patch)
tree51a5cf2a26d76a9c00c9998201604715271459e5 /network/exim-html/exim-html.SlackBuild
parent882b8f060b10ea2386dc5b26167f0b5c3db0a8a7 (diff)
network/exim-html: Removed (hopefully temporarily)
In 4.73 the Exim developers changed the build process for the documentation, which turned "exim-html" from a convenient standalone package to just a dump of the exim.org Website with stylesheets and images missing. So here we are... - 4.72 is not up-to-date any more - 4.73 and up is not convenient any more - trying to fix it doesn't feel like "the Slackware way" - full documentation is still there (spec.txt in the Exim package or online on exim.org and its mirrors), even without exim-html. In conclusion I'd rather see exim-html removed from SBo for now. The Exim git repository said it's not a permanent change, so if there is a standalone doc again in a future version, I'll prepare a new package. Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'network/exim-html/exim-html.SlackBuild')
-rw-r--r--network/exim-html/exim-html.SlackBuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/network/exim-html/exim-html.SlackBuild b/network/exim-html/exim-html.SlackBuild
deleted file mode 100644
index 9b490b31f7d7a..0000000000000
--- a/network/exim-html/exim-html.SlackBuild
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-# Slackware build script for the Exim HTML Documentation
-
-# Written by Thomas Morper <thomas@beingboiled.info>
-
-PRGNAM=exim-html
-VERSION=${VERSION:-4.72}
-ARCH=noarch
-BUILD=${BUILD:-1}
-TAG=${TAG:-_SBo}
-
-CWD=$(pwd)
-TMP=${TMP:-/tmp/SBo}
-PKG=$TMP/package-$PRGNAM
-OUTPUT=${OUTPUT:-/tmp}
-
-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 {} \;
-
-mkdir -p $PKG/usr/doc
-cp -a doc/html $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}