diff options
author | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:37 +0200 |
---|---|---|
committer | Heinz Wiesinger <pprkut@slackbuilds.org> | 2010-05-13 00:08:37 +0200 |
commit | 88c212d1d4cf1662d5f1053fefcd9c52dae6c48c (patch) | |
tree | 8d8bbbd6a4cbca772122e37a4061b1c1f1b72fc3 /network/esmtp | |
parent | 5e52f0e1ee18691d18efacd9a13ee908ae272155 (diff) | |
download | slackbuilds-88c212d1d4cf1662d5f1053fefcd9c52dae6c48c.tar.gz |
network/esmtp: Removed from 13.0 repository
Diffstat (limited to 'network/esmtp')
-rw-r--r-- | network/esmtp/README | 11 | ||||
-rw-r--r-- | network/esmtp/esmtp.SlackBuild | 65 | ||||
-rw-r--r-- | network/esmtp/esmtp.info | 8 | ||||
-rw-r--r-- | network/esmtp/slack-desc | 19 |
4 files changed, 0 insertions, 103 deletions
diff --git a/network/esmtp/README b/network/esmtp/README deleted file mode 100644 index 04252c67f9..0000000000 --- a/network/esmtp/README +++ /dev/null @@ -1,11 +0,0 @@ -ESMTP is a user-configurable relay-only MTA with a sendmail-compatible syntax, -based on libESMTP and supporting the AUTH (including the CRAM-MD5 and NTLM -SASL mechanisms) and StartTLS SMTP extensions. - -The doinst.sh script will create symlinks from /usr/sbin/sendmail and other -typical sendmail paths to /usr/bin/esmtp if sendmail is not already installed. - -ESMTP requires LibESMTP, also available at SlackBuilds.org - -NOTE: The esmtp package conflicts with the stock sendmail package - you must - uninstall sendmail before installing esmtp. diff --git a/network/esmtp/esmtp.SlackBuild b/network/esmtp/esmtp.SlackBuild deleted file mode 100644 index 0106c7bd9a..0000000000 --- a/network/esmtp/esmtp.SlackBuild +++ /dev/null @@ -1,65 +0,0 @@ -#!/bin/sh - -# Slackware build script for esmtp -# Written by Vasilis Papavasileiou <el03020 at mail dot ntua dot gr> -# Modified by the SlackBuilds.org project - -PRGNAM=esmtp -VERSION=1.0 -ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} -TAG=${TAG:-_SBo} - -CWD=$(pwd) -TMP=${TMP:-/tmp/SBo} -PKG=$TMP/package-$PRGNAM -OUTPUT=${OUTPUT:-/tmp} - -DOCS="AUTHORS COPYING INSTALL NEWS README TODO sample.esmtprc" - -if [ "$ARCH" = "i486" ]; then - SLKCFLAGS="-O2 -march=i486 -mtune=i686" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" -elif [ "$ARCH" = "x86_64" ]; then - SLKFLAGS="-O2 -fPIC" -fi - -set -e - -rm -rf $PKG -mkdir -p $TMP $PKG $OUTPUT -cd $TMP || exit 1 -rm -rf $PRGNAM-$VERSION -tar -xjvf $CWD/$PRGNAM-$VERSION.tar.bz2 || exit 1 -cd $PRGNAM-$VERSION || exit 1 -chown -R root:root . -chmod -R u+w,go+r-w,a-s . - -CFLAGS="$SLKCFLAGS" \ -./configure \ - --prefix=/usr \ - --mandir=/usr/man \ - --sysconfdir=/etc - -make -make install DESTDIR=$PKG - -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) - -( 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 -) - -mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION -cp -a $DOCS $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.tgz diff --git a/network/esmtp/esmtp.info b/network/esmtp/esmtp.info deleted file mode 100644 index 071ddf5e97..0000000000 --- a/network/esmtp/esmtp.info +++ /dev/null @@ -1,8 +0,0 @@ -PRGNAM="esmtp" -VERSION="1.0" -HOMEPAGE="http://esmtp.sourceforge.net/" -DOWNLOAD="http://downloads.sourceforge.net/esmtp/esmtp-1.0.tar.bz2" -MD5SUM="e4c4e00eecb70b528a9d772d2e633b29" -MAINTAINER="Vasilis Papavasileiou" -EMAIL="el03020 at mail dot ntua dot gr" -APPROVED="dsomero" diff --git a/network/esmtp/slack-desc b/network/esmtp/slack-desc deleted file mode 100644 index 9ddcad95c5..0000000000 --- a/network/esmtp/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------------------------------------------------------| -esmtp: esmtp (A simple relay-only MTA) -esmtp: -esmtp: ESMTP is a user-configurable relay-only MTA with a sendmail-compatible -esmtp: syntax, based on libESMTP and supporting the AUTH (including the -esmtp: CRAM-MD5 and NTLM SASL mechanisms) and StartTLS SMTP extensions. -esmtp: -esmtp: Homepage: http://esmtp.sourceforge.net/ -esmtp: -esmtp: -esmtp: -esmtp: |