#!/bin/sh # Set initial variables: CWD=`pwd` if [ "$TMP" = "" ]; then TMP=/tmp fi PKG=$TMP/package-sendmail VERSION=8.13.7 ARCH=${ARCH:-i486} BUILD=1_slack10.0 if [ "$ARCH" = "i386" ]; then SLKCFLAGS="-O2 -march=i386 -mcpu=i686" elif [ "$ARCH" = "i486" ]; then SLKCFLAGS="-O2 -march=i486 -mcpu=i686" elif [ "$ARCH" = "s390" ]; then SLKCFLAGS="-O2" elif [ "$ARCH" = "x86_64" ]; then SLKCFLAGS="-O2" fi if [ ! -d $TMP ]; then mkdir -p $TMP # location to build the source fi rm -rf $PKG mkdir -p $PKG # Explode the package framework: cd $PKG explodepkg $CWD/_sendmail.tar.gz echo "+=================+" echo "| sendmail.$VERSION |" echo "+=================+" OSCPU="`uname -srm | tr ' ' '.'`" cd $TMP rm -rf sendmail-$VERSION tar xzvf $CWD/sendmail.$VERSION.tar.gz cd sendmail-$VERSION chown -R root.root . find . -perm 664 -exec chmod 644 {} \; find . -perm 600 -exec chmod 644 {} \; find . -perm 444 -exec chmod 644 {} \; find . -perm 400 -exec chmod 644 {} \; find . -perm 440 -exec chmod 644 {} \; find . -perm 777 -exec chmod 755 {} \; find . -perm 775 -exec chmod 755 {} \; find . -perm 511 -exec chmod 755 {} \; find . -perm 711 -exec chmod 755 {} \; find . -perm 555 -exec chmod 755 {} \; # Add TLS support to the sendmail binary: cat $CWD/site.config.m4 > devtools/Site/site.config.m4 # Build .cf files for Linux: cd $TMP/sendmail-$VERSION/cf/cf cp $CWD/*.mc . cp linux.uucp.mc config.mc sh Build config.cf mv config.cf $PKG/usr/share/sendmail/linux.uucp.cf cp sendmail-slackware.mc config.mc sh Build config.cf mv config.cf $PKG/usr/share/sendmail/sendmail-slackware.cf cp sendmail-slackware-tls.mc config.mc sh Build config.cf mv config.cf $PKG/usr/share/sendmail/sendmail-slackware-tls.cf # Add a sample sendmail.cf: cat $PKG/usr/share/sendmail/sendmail-slackware.cf > $PKG/etc/mail/sendmail.cf.new cat submit.cf > $PKG/etc/mail/submit.cf.new cd $TMP/sendmail-$VERSION ## All "Build" does is call make while screwing up the options :-) ## sh Build make O="$SLKCFLAGS" #O="$SLKCFLAGS" sh Build cat sendmail/mailq.1 | gzip -9c > $PKG/usr/man/man1/mailq.1.gz cat sendmail/newaliases.1 | gzip -9c > $PKG/usr/man/man1/newaliases.1.gz mkdir -p $PKG/usr/doc/sendmail-$VERSION #wget -N -k -r http://www.sendmail.org/faq/faq.txt #cp -a www.sendmail.org/faq/faq.txt $PKG/usr/doc/sendmail-$VERSION ( cd $PKG/usr/doc/sendmail-$VERSION ; lftpget http://www.sendmail.org/faq/faq.txt ; chmod 644 faq.txt ) cp -a FAQ INSTALL KNOWNBUGS LICENSE PGPKEYS README RELEASE_NOTES $PKG/usr/doc/sendmail-$VERSION ( cd doc ; cp -a op $PKG/usr/doc/sendmail-$VERSION ) cd obj.$OSCPU/sendmail cat sendmail > $PKG/usr/sbin/sendmail.new cat aliases.5 | gzip -9c > $PKG/usr/man/man5/aliases.5.gz cat sendmail.8 | gzip -9c > $PKG/usr/man/man8/sendmail.8.gz cat statistics > $PKG/etc/mail/statistics cat ../../sendmail/helpfile > $PKG/etc/mail/helpfile cd ../makemap cat makemap > $PKG/usr/sbin/makemap cat makemap.8 | gzip -9c > $PKG/usr/man/man8/makemap.8.gz cd ../mailstats cat mailstats > $PKG/usr/sbin/mailstats cat mailstats.8 | gzip -9c > $PKG/usr/man/man8/mailstats.8.gz cd ../praliases cat praliases > $PKG/usr/bin/praliases cat praliases.8 | gzip -9c > $PKG/usr/man/man8/praliases.8.gz cd ../rmail cat rmail > $PKG/usr/bin/rmail cat rmail.8 | gzip -9c > $PKG/usr/man/man8/rmail.8.gz cd ../smrsh cat smrsh > $PKG/usr/sbin/smrsh cat smrsh.8 | gzip -9c > $PKG/usr/man/man8/smrsh.8.gz cd ../mail.local cat mail.local > $PKG/usr/sbin/mail.local cat mail.local.8 | gzip -9c > $PKG/usr/man/man8/mail.local.8.gz cd ../vacation cat vacation > $PKG/usr/bin/vacation cat vacation.1 | gzip -9c > $PKG/usr/man/man1/vacation.1.gz cd ../editmap cat editmap > $PKG/usr/sbin/editmap cat editmap.8 | gzip -9c > $PKG/usr/man/man8/editmap.8.gz # Add libmilter: cd $TMP/sendmail-$VERSION/libmilter ./Build cd .. mkdir -p $PKG/usr/include mkdir -p $PKG/usr/include/libmilter cp -a include/libmilter/mfapi.h $PKG/usr/include/libmilter cp -a include/libmilter/mfdef.h $PKG/usr/include/libmilter cp -a obj.*/libmilter/libmilter.a $PKG/usr/lib strip -g $PKG/usr/lib/libmilter.a chmod 644 $PKG/usr/lib/libmilter.a $PKG/usr/include/libmilter/* mkdir -p $PKG/usr/doc/sendmail-$VERSION/libmilter cp -a libmilter/README $PKG/usr/doc/sendmail-$VERSION/libmilter ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) mkdir -p $PKG/install cat $CWD/slack-desc.sendmail > $PKG/install/slack-desc # Build the package: cd $PKG makepkg -l y -c n $TMP/sendmail-$VERSION-$ARCH-$BUILD.tgz ## Clean up the extra stuff: #if [ "$1" = "--cleanup" ]; then # rm -rf $TMP/sendmail-$VERSION # rm -rf $PKG #fi