CWD=`pwd`

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

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

cd /tmp
tar xjvf $CWD/gnumeric-$VERSION.tar.bz2
cd gnumeric-$VERSION
chown -R root.root .
find . -perm 666 -exec chmod 644 {} \;
find . -perm 664 -exec chmod 644 {} \;
###
### Developers warn with the release of 1.2.12 that libbonoboui
### is too buggy to use (breaks the gnumeric help system).
###
### It'll probably just stay off here in Slackware from now on...
###
CFLAGS="$SLKCFLAGS" \
./configure --prefix=/usr \
   --sysconfdir=/etc \
   --without-bonobo \
   --localstatedir=/var/lib \
   $ARCH-slackware-linux
make -j3
make install
mkdir -p /usr/doc/gnumeric-$VERSION
cp -a \
  AUTHORS BEVERAGES BUGS COPYING HACKING MAINTAINERS NEWS README TODO \
  /usr/doc/gnumeric-$VERSION
mkdir -p /install
cat $CWD/slack-desc > /install/slack-desc
zcat $CWD/doinst.sh.gz > /install/doinst.sh

cat << EOF

#####################################################
# DON'T FORGET TO DITCH ANY LEFTOVER PYTHON RESIDUE #
#####################################################

EOF