#!/bin/sh
# Build samba for Slackware.
CWD=`pwd`
TMP=/tmp
PKG=$TMP/package-samba
rm -rf $PKG
mkdir -p $PKG

VERSION=3.0.10
ARCH=${ARCH:-i486}
BUILD=${BUILD:-1}

cd $TMP
rm -rf samba-$VERSION
tar xjvf $CWD/samba-$VERSION.tar.bz2
cd samba-$VERSION
chown -R root.root .
find . -perm 775 | xargs chmod 755
find . -perm 664 | xargs chmod 644

## CUPS is a standard package now, so we *like* this dependency.  :-)
#if [ -r /usr/lib/libcups.so ]; then
#  echo
#  echo "We've found libcups on your system."
#  echo
#  echo "Hit enter to build a version of samba with CUPS support"
#  echo -n "(and with a CUPS dependency):  "
#  read foo
#  CUPS="--enable-cups"
#fi

## NOTE (2003-03-07):  libcrypto no longer defines crypt(), so these
## patches are probably no longer needed (but also likely don't hurt anything)

## We must define LIBS with -lcrypt first, or we will end up using
## the crypt() from libcrypto, which doesn't support MD5.
#zcat $CWD/samba.ssl.diff.gz | patch -p1 --verbose --backup --suffix=.orig

## Same story.  Building with CUPS will put SSL ahead of -lcrypt if we
## don't patch it.  Thanks to Peter Christy for reporting this problem
## and helping to figure out a workaround.
#zcat $CWD/samba.cups.diff.gz | patch -p1 --verbose --backup --suffix=.orig

## This is not needed anymore as Samba 3.0.9 has this patch already applied.
## Fix an abort in smbtree when using a recent glibc:
##zcat $CWD/samba.smbtree.glibc.diff.gz | patch -p1 --verbose --backup --suffix=.orig

cd source
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

# CRUFT:  options no longer supported since Samba 3.0:
#  --with-sambabook=/usr/share/swat/using_samba
#  --with-ssl
#  --with-sslinc=/usr/include/openssl
#  --with-ssllib=/usr
#  --with-msdfs
#  --with-vfs

# Some of these options could be auto-detected, but declaring them
# here doesn't hurt and helps document what features we're trying to
# build in.
CFLAGS="$SLKCFLAGS" ./configure \
  --enable-cups \
  --enable-static=no \
  --enable-shared=yes \
  --with-fhs \
  --with-acl-support=no \
  --with-automount \
  --prefix=/usr \
  --localstatedir=/var \
  --bindir=/usr/bin \
  --sbindir=/usr/sbin \
  --with-lockdir=/var/cache/samba \
  --sysconfdir=/etc \
  --with-configdir=/etc/samba \
  --with-privatedir=/etc/samba/private \
  --with-swatdir=/usr/share/swat \
  --with-smbmount \
  --with-quotas \
  --with-syslog \
  --with-utmp \
  --with-libsmbclient \
  --with-winbind \
  --with-ldap=no \
  $ARCH-slackware-linux

# -j options don't seem to work...
make

mkdir -p \
         $PKG/usr/doc/samba-$VERSION/swat \
         $PKG/var/spool/samba \
         $PKG/var/log/samba \
         $PKG/etc/samba/private \
         $PKG/var/cache/samba
chmod 700 $PKG/etc/samba/private
chmod 1777 $PKG/var/spool/samba

make install DESTDIR=$PKG

# Install libnss_win* libraries:
mkdir -p $PKG/lib
cp -a nsswitch/libnss_winbind.so $PKG/lib/libnss_winbind.so.2
cp -a nsswitch/libnss_wins.so $PKG/lib/libnss_wins.so.2
( cd $PKG/lib
  ln -sf libnss_winbind.so.2 libnss_winbind.so
  ln -sf libnss_wins.so.2 libnss_wins.so
)

# I almost think this is cruft.  Almost.
mkdir -p $PKG/sbin
( cd $PKG/sbin
  rm -f mount.smbfs
  ln -sf /usr/bin/smbmount mount.smbfs
  chown -R root.bin .
)

# Make sure libsmbclient gets installed:
( cd $PKG/usr/lib/samba
  rm -f libsmbclient.a
  mv libsmbclient.so ../libsmbclient.so.0.0
  ln -sf ../libsmbclient.so.0.0 libsmbclient.so
  cd ..
  rm -f libsmbclient.so.0 libsmbclient.so libsmbclient.a
  ln -sf libsmbclient.so.0.0 libsmbclient.so.0
  ln -sf libsmbclient.so.0.0 libsmbclient.so
)
chown root.root $PKG/usr/include/libsmbclient.h
chmod 644 $PKG/usr/include/libsmbclient.h
  
cat $CWD/smb.conf.default > $PKG/etc/samba/smb.conf-sample

if [ ! -r $PKG/usr/bin/smbget ]; then
  rm -f $PKG/usr/share/man/man1/smbget.1
  rm -f $PKG/usr/share/swat/help/smbget.1.html
fi

# We'll add rc.samba to the init directory, but chmod 644 so that it doesn't
# start by default:
mkdir -p $PKG/etc/rc.d
cat $CWD/rc.samba > $PKG/etc/rc.d/rc.samba.new
chmod 644 $PKG/etc/rc.d/rc.samba.new

mv $PKG/usr/share/man $PKG/usr
gzip -9 $PKG/usr/man/man?/*.?
chown -R root.bin $PKG/usr/bin $PKG/usr/sbin
( 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
)

cd ..
cp -a COPYING Manifest README Read-Manifest-Now Roadmap WHATSNEW.txt docs examples \
  $PKG/usr/doc/samba-$VERSION
# These are installed elsewhere:
rm -rf $PKG/usr/doc/samba-$VERSION/docs/htmldocs \
       $PKG/usr/doc/samba-$VERSION/docs/manpages
( cd $PKG/usr/doc/samba-$VERSION/docs
  ln -sf /usr/share/swat/using_samba .
  ln -sf /usr/share/swat/help htmldocs
)
# I'm sorry, but when all this info is included in HTML, adding 7MB worth of
# PDF files just to have extra artwork is more fluff than I'll agree to.
rm -f $PKG/usr/doc/samba-$VERSION/docs/*.pdf
# Also redundant also:
rm -rf $PKG/usr/doc/samba-$VERSION/docs/docbook
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc
zcat $CWD/doinst.sh.gz > $PKG/install/doinst.sh

cat << EOF

*** Be sure the package contains:

drwx------   2 root     root         1024 Mar 12 13:21 /etc/samba/private
drwxr-xr-x   2 root     root         4096 May  3 15:46 /var/cache/samba/
drwxr-xr-x    2 root     root          48 Aug 29 13:06 /var/log/samba/
drwxrwxrwt   2 root     root         1024 Mar 12 13:21 /var/spool/samba/

EOF

cd $PKG
makepkg -l y -c n $TMP/samba-$VERSION-$ARCH-$BUILD.tgz