slackbuilds_ponce/network/postfix/postfix.SlackBuild
David Somero 51d37ded39 network/postfix: Misc automated cleanups.
Signed-off-by: David Somero <xgizzmo@slackbuilds.org>
2010-06-04 01:13:58 -04:00

251 lines
7.8 KiB
Bash

#!/bin/bash
# Copyright 2006, Alan Hicks, Lizella, GA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
# EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
PRGNAM="postfix"
VERSION="2.6.1"
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
# Unless $ARCH is already set, use uname -m for all other archs:
*) 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
CFLAGS=${CFLAGS:-$SLKCFLAGS}
config_directory=/etc/postfix
daemon_directory=/usr/libexec/postfix
command_directory=/usr/sbin
queue_directory=/var/spool/postfix
sendmail_path=/usr/sbin/sendmail
newaliases_path=/usr/bin/newaliases
mailq_path=/usr/bin/mailq
html_directory=/usr/doc/$PRGNAM-$VERSION/html
manpage_directory=/usr/man
readme_directory=/usr/doc/$PRGNAM-$VERSION/README_FILES
mail_owner=postfix
setgid_group=postdrop
# Bail if user or group isn't valid on your system
if ! grep ^postfix: /etc/passwd 2>&1 > /dev/null; then
cat << EOF
You must have a postfix user to run this script
# groupadd -g 200 postfix
# useradd -u 200 -d /dev/null -s /bin/false -g postfix postfix
EOF
exit
elif ! grep ^postdrop: /etc/group 2>&1 > /dev/null; then
cat << EOF
You must have a postdrop group to run this script
# groupadd -g 201 postdrop
EOF
exit
fi
# Alan Hicks, 2008.03.26
# This should be phased out by now, but I'm leaving it in here
# for historical purposes only.
fix_perms() {
config_directory=$PKG/etc/postfix
daemon_directory=$PKG/usr/libexec/postfix
command_directory=$PKG/usr/sbin
queue_directory=$PKG/var/spool/postfix
sendmail_path=$PKG/usr/sbin/sendmail
newaliases_path=$PKG/usr/bin/newaliases
mailq_path=$PKG/usr/bin/mailq
html_directory=$PKG/usr/doc/$PRGNAM-$VERSION/html
manpage_directory=$PKG/usr/man
readme_directory=$PKG/usr/doc/$PRGNAM-$VERSION/README_FILES
mail_owner=postfix
setgid_group=postdrop
# Any line beginning with # is a comment.
if echo $line | grep -v "^#" 2>&1 > /dev/null; then
FILE="$(echo $line | awk -F: '{ print $1 }')"
FILE_PREFIX="$(echo $FILE | cut -f 1 -d '/')"
FILE_SUFFIX="$(echo $FILE | cut -f 2- -d '/')"
TYPE="$(echo $line | awk -F: '{ print $2 }')"
OWNER="$(echo $line | awk -F: '{ print $3 }')"
GROUP="$(echo $line | awk -F: '{ print $4 }')"
PERMS="$(echo $line | awk -F: '{ print $5 }')"
# skip this interation if the line we're fed is no good
if [ "$TYPE" = "h" ]; then
continue
elif [ "$TYPE" = "l" ]; then
continue
elif [ "$FILE_PREFIX" = "\$sample_directory" ]; then
continue
fi
# Tag the actual groups
if [ "$GROUP" = "-" ]; then
GROUP=root
elif [ "$GROUP" = "\$setgid_group" ]; then
GROUP="$setgid_group"
fi
# Tag the postfix owner
if [ "$OWNER" = "\$mail_owner" ]; then
OWNER="$mail_owner"
fi
if [ "$FILE_SUFFIX" = "$FILE_PREFIX" ]; then
FILE_SUFFIX=""
fi
if [ "$FILE_PREFIX" = "\$config_directory" ]; then
chown $OWNER:$GROUP $config_directory/$FILE_SUFFIX
chmod $PERMS $config_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$daemon_directory" ]; then
chown $OWNER:$GROUP $daemon_directory/$FILE_SUFFIX
chmod $PERMS $daemon_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$command_directory" ]; then
chown $OWNER:$GROUP $command_directory/$FILE_SUFFIX
chmod $PERMS $command_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$queue_directory" ]; then
chown $OWNER:$GROUP $queue_directory/$FILE_SUFFIX
chmod $PERMS $queue_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$html_directory" ]; then
chown $OWNER:$GROUP $html_directory/$FILE_SUFFIX
chmod $PERMS $html_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$manpage_directory" ]; then
chown $OWNER:$GROUP $manpage_directory/$FILE_SUFFIX
chmod $PERMS $manpage_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$readme_directory" ]; then
chown $OWNER:$GROUP $readme_directory/$FILE_SUFFIX
chmod $PERMS $readme_directory/$FILE_SUFFIX
elif [ "$FILE_PREFIX" = "\$sendmail_path" ]; then
chown $OWNER:$GROUP $sendmail_path
chmod $PERMS $sendmail_path
else
echo "NOT FOUND!!! : $FILE_PREFIX"
fi
fi
}
rm -fr $PKG $TMP/$PRGNAM-$VERSION
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
# TLS, and SASL support
# Postfix unfortunately does not use a handy ./configure script so you
# must generate the makefiles using (what else?) "make makefiles". The
# following includes support for TLS and SASL. It should automatically
# find PCRE and DB3 support. The docs have information for adding
# additional support such as MySQL or LDAP.
make makefiles \
CCARGS='-DUSE_SASL_AUTH -DDEF_SERVER_SASL_TYPE=\"dovecot\" -DUSE_TLS' \
AUXLIBS="-lssl -lcrypto"
make
make non-interactive-package \
install_root=$PKG \
tempdir=$TMP/$PRGNAM-temp \
config_directory=$config_directory \
daemon_directory=$daemon_directory \
command_directory=$command_directory \
queue_directory=$queue_directory \
sendmail_path=$sendmail_path \
newaliases_path=$newaliases \
mailq_path=$mailq_path \
mail_owner=$mail_owner \
setgid_group=$setgid_group \
html_directory=$html_directory \
manpage_directory=$manpage_directory \
readme_directory=$readme_directory
mkdir -p $PKG/install $PKG/etc/rc.d $PKG/usr/doc/$PRGNAM-$VERSION
cp -r AAAREADME COMPATIBILITY COPYRIGHT HISTORY IPv6-ChangeLog LICENSE \
PORTING RELEASE_NOTES TLS_ACKNOWLEDGEMENTS TLS_CHANGES TLS_LICENSE \
US_PATENT_6321267 implementation-notes examples \
$PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/postfix.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/postfix.SlackBuild
install -m 0755 $CWD/rc.postfix $PKG/etc/rc.d/rc.postfix.new
cat $CWD/slack-desc > $PKG/install/slack-desc
cat $CWD/doinst.sh > $PKG/install/doinst.sh
find $PKG -type f | \
( while read LINE; do
if file $LINE | egrep "ELF.*(executable|shared object).*not stripped" \
&> /dev/null; then
strip $LINE
fi
done )
gzip -9 $PKG/usr/man/*/*
cd $PKG/etc/postfix
# Since we gzip the manpages, let's fix the postfix-files to reflect that
# so it won't throw errors during post-install
( cd $PKG/usr/libexec/postfix
grep manpage postfix-files | while read line;
do MANPAGE="$(echo "$line" | cut -d: -f1)"
sed -i s#"$MANPAGE"#"$MANPAGE.gz"# postfix-files ;
done
)
# Create .new files
for i in \
access aliases canonical generic header_checks main.cf main.cf.default \
makedefs.out master.cf relocated transport virtual ;
do \
mv $i $i.new ;
done
cd $PKG
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}