case `arch` in
  x86_64)
    OPTS+=" --with-afs-sysname=amd64_linux26"
    ;;
  i386|i486|i586|i686|athlon)
    OPTS+=" --with-afs-sysname=i386_linux26"
    ;;
  *)
    OPTS+=" --with-afs-sysname=`arch`_linux26"
    ;;
esac

./configure  --prefix=/usr             \
             --sysconfdir=/etc         \
             --localstatedir=/var/lib  \
             --infodir=/usr/share/info \
             --mandir=/usr/share/man   \
             --enable-supergroups      \
             --enable-bitmap-later     \
             --disable-kernel-module   \
             --disable-fuse-client     \
             --disable-kauth           \
             --without-swig            \
             --with-roken=internal     \
             $OPTS                    &&

make all_nolibafs &&
prepare_install   &&

if [ ! -d /etc/openafs ]; then
  mkdir -p /etc/openafs/server
fi &&

make install_nolibafs &&

# Creating needed dirs if not existing
if [ ! -d /var/cache/openafs ]; then
  mkdir -p /var/cache/openafs &&
  chmod 0700 /var/cache/openafs
fi &&

# Server dirs
if [ ! -d /var/lib/openafs ]; then
  mkdir -p /var/lib/openafs/{logs,db}
  chmod 700 /var/lib/openafs/db
  chmod 755 /var/lib/openafs/logs
fi &&

if [ ! -d /afs ]; then
  mkdir /afs &&
  chmod 755 /afs
fi &&

# Installing some db files
if [ ! -f /etc/openafs/CellServDB ]; then
  install -p -m 644 $SOURCE_CACHE/CellServDB /etc/openafs/CellServDB
fi &&
install -p -m 755 $SOURCE_CACHE/$SOURCE3 /usr/sbin/killafs &&
touch /etc/openafs/SuidCells &&

# Default to openafs.org unless custom cell has been chosen
if [ ! -f /etc/openafs/ThisCell ]; then
  echo "${AFSCELL:-openafs.org}" > /etc/openafs/ThisCell &&
  touch /etc/openafs/ThisCell
fi &&

# Create cacheinfo file, 200Mb size
if [ ! -f /etc/openafs/cacheinfo ]; then
  # Convert to bytes from Mb
  AFSCACHESIZE=${AFSCACHESIZE:-200}
  AFSCACHESIZE=$((AFSCACHESIZE * 1000))
  echo "/afs:/var/cache/openafs:$AFSCACHESIZE" > /etc/openafs/cacheinfo &&
  touch /etc/openafs/cacheinfo
fi &&

# Copy conf and rc files (only needed by sysvinit systems)
if module_installed sysvinit; then
  sedit "s;^OPTIONS=.*;OPTIONS=\"-nosettime -fakestat\";" $SOURCE_DIRECTORY/src/afsd/afs.conf.linux  &&
  if [ ! -f /etc/config.d/afs ]; then
    install -p -m 644 $SOURCE_DIRECTORY/src/afsd/afs.conf.linux /etc/config.d/afs
  fi
fi
