#!/bin/bash

# arm/build
# Check package dependencies, set metadata and launch
# package build script.
# by Stuart Winter <mozes@slackware.com>
#
source /usr/share/slackdev/buildkit.sh

# Package metadata:
export PKGNAM=hplip
export VERSION=${VERSION:-3.11.3a}
export PKGARCH=${PKGARCH:-arm}
export BUILD=${BUILD:-3_slack13.37}
export PKGSERIES=${PKGSERIES:-ap}
export SLACKPACKAGE=$PKGNAM-$VERSION-$PKGARCH-$BUILD.tgz

## ******************************************************************* ##
# For test packages - best to store in another location rather than
# overwriting the working copy in the main tree:
 export PKGSTORE=/tmp/
 mkdir -vpm755 $PKGSTORE/$PKGSERIES
## ******************************************************************* ##

# Reset the ARM file system: restore it to the 'factory settings'
# as it were (this has no effect when building natively):
sboxsysrestore

# Ensure base ARM packages are installed first:
slackbasedeps

# Ensure $PKGNAM isn't already installed:
slackfailpkgdeps $PKGNAM || removepkg $PKGNAM

# Ensure specific build dependencies (mainly libraries):
{ slackcheckpkgdeps cups        || installpkg $PKGSTORE/a/cups-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps dbus        || installpkg $PKGSTORE/a/dbus-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libtool     || installpkg $PKGSTORE/d/libtool-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libexif     || installpkg $PKGSTORE/l/libexif-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libgphoto2  || installpkg $PKGSTORE/l/libgphoto2-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libieee1284 || installpkg $PKGSTORE/l/libieee1284-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libjpeg     || installpkg $PKGSTORE/l/libjpeg-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libpng      || installpkg $PKGSTORE/l/libpng-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libtiff     || installpkg $PKGSTORE/l/libtiff-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps libusb      || installpkg $PKGSTORE/l/libusb-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps net-snmp    || installpkg $PKGSTORE/n/net-snmp-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps openssl     || installpkg $PKGSTORE/n/openssl-[0-9]*.t?z || exit 99 ; }
{ slackcheckpkgdeps sane        || installpkg $PKGSTORE/xap/sane-[0-9]*.t?z || exit 99 ; }

# Launch the package build script:
BUILDLOG=$( basename $SLACKPACKAGE .tgz ).build.log
( ./$PKGNAM.SlackBuild ) >& /dev/stdout | tee $BUILDLOG

# Compress the build log:
bzip2 -9fvz $BUILDLOG
