#!/bin/sh # Set initial variables: CWD=`pwd` if [ "$TMP" = "" ]; then TMP=/tmp fi PKG=$TMP/package-proftpd VERSION=1.2.9 DIRVER=1.2.9 ARCH=${ARCH:-i486} BUILD=3 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 cd $TMP rm -rf proftpd-$VERSION tar xjvf $CWD/proftpd-$VERSION.tar.bz2 cd proftpd-$DIRVER zcat $CWD/proftpd-1.2.9.acl-cidr.diff.gz | patch -p0 --verbose chown -R root.root . CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --prefix=/usr \ --sysconfdir=/etc \ --enable-autoshadow \ --localstatedir=/var/run \ --with-modules=mod_readme:mod_ratio:mod_tls:mod_wrap \ $ARCH-slackware-linux # This caused funny messages about "Quotas off" with every FTP command, # and mod_wrap gets a compile error: # --with-modules= ... mod_quota ... make make install DESTDIR=$PKG rm -f $PKG/etc/* cat $CWD/etc/proftpd.conf > $PKG/etc/proftpd.conf.new cat $CWD/etc/ftpusers > $PKG/etc/ftpusers.new mkdir -p $PKG/home/ftp gzip -9 $PKG/usr/man/man?/*.? chown -R root.bin $PKG/usr/bin $PKG/usr/sbin mkdir -p $PKG/usr/doc/proftpd-$VERSION cp -a COPYING CREDITS ChangeLog INSTALL NEWS README* \ contrib/README.mod_wrap contrib/README.ratio \ $PKG/usr/doc/proftpd-$VERSION cp -a contrib/README $PKG/usr/doc/proftpd-$VERSION/README.contrib cp -a doc sample-configurations $PKG/usr/doc/proftpd-$VERSION ( 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 zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh cat $CWD/slack-desc > $PKG/install/slack-desc # Build the package: cd $PKG makepkg -l y -c n $TMP/proftpd-$VERSION-$ARCH-$BUILD.tgz # Clean up the extra stuff: if [ "$1" = "--cleanup" ]; then rm -rf proftpd-$VERSION rm -rf $PKG fi