#!/bin/sh
CWD=`pwd`
PKG=/tmp/package-gkrellm
VERSION=2.2.4
PKGVER=2.2.4
ARCH=alpha
BUILD=1

rm -rf $PKG
mkdir -p $PKG
( cd /tmp
rm -rf gkrellm-$VERSION
tar xjf $CWD/gkrellm-$VERSION.tar.bz2
zcat $CWD/makefile.diff.gz | patch -p0 --verbose
cd gkrellm-$VERSION
chown -R root:root .
find . -perm 777 -exec chmod 755 {} \;
find . -perm 664 -exec chmod 644 {} \;
make 
# We will need this installed to build plugins, so...
make install
# Install to the $PKG dir:
make install \
  INSTALLDIR=$PKG/usr/bin \
  INCLUDEDIR=$PKG/usr/include \
  MANDIR=$PKG/usr/man/man1 \
  LOCALEDIR=$PKG/usr/share/locale \
  PKGCONFIGDIR=$PKG/usr/lib/pkgconfig
chown -R root:bin $PKG/usr/bin
mkdir -p $PKG/usr/lib/gkrellm2/plugins
mkdir -p $PKG/usr/doc/gkrellm-$VERSION
cp -a COPYRIGHT CREDITS INSTALL README Themes.html $PKG/usr/doc/gkrellm-$VERSION
gzip -9 $PKG/usr/man/man?/*.?

# Add optional plugin(s):
# The countdown plugin is needed to track X-Day.  ;-)
COUNTDOWN=0.1.1
cd $TMP
rm -rf gkrellm-countdown
tar xzf $CWD/gkrellm-countdown-$COUNTDOWN.tar.gz
cd gkrellm-countdown
chown -R root.root .
make
cp gkrellm-countdown.so $PKG/usr/lib/gkrellm2/plugins
mkdir -p $PKG/usr/doc/gkrellm-countdown-$COUNTDOWN
cp -a COPYING ChangeLog README $PKG/usr/doc/gkrellm-countdown-$COUNTDOWN

# Strip binaries:
( 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
cat $CWD/slack-desc > $PKG/install/slack-desc
cd $PKG
makepkg -l y -c n ../gkrellm-$PKGVER-$ARCH-$BUILD.tgz
) 2>&1 | tee /tmp/gkrellm.build.log
