#!/bin/sh
PKGNAM=gkrellm
VERSION=2.3.1
PKGVER=2.3.1
BUILD=1

. /etc/pkghelpers
pkghelpers_env

rm -rf $PKG
mkdir -p $PKG
cd /tmp
rm -rf gkrellm-$VERSION
tar xjvf $CWD/gkrellm-$VERSION.tar.bz2
cd gkrellm-$VERSION

if [ "x$LIBSUFFIX" != "x" ]; then
	zcat $CWD/gkrellm.lib64.diff.gz | sed "s#lib64#lib$LIBSUFFIX#g" | patch -p1 --verbose || exit 1 # Search lib64 for plugins
fi

# Increase the default width slightly, and don't use the text
# shadow effect by default (this seems better with Pango font
# rendering):
zcat $CWD/gkrellm.theme.defaults.diff.gz | patch -p1 --verbose || exit 1
pkghelpers_permissions
make -j5 \
  INSTALLROOT=/usr \
  INSTALLDIR=/usr/bin \
  INCLUDEDIR=/usr/include \
  MANDIR=/usr/man/man1 \
  LOCALEDIR=/usr/share/locale \
  PKGCONFIGDIR=/usr/lib$LIBSUFFIX/pkgconfig

# We will need this installed to build plugins, so...
make install

# Install to the $PKG dir:
make install \
  INSTALLROOT=/usr \
  INSTALLDIR=$PKG/usr/bin \
  INCLUDEDIR=$PKG/usr/include \
  MANDIR=$PKG/usr/man/man1 \
  LOCALEDIR=$PKG/usr/share/locale \
  PKGCONFIGDIR=$PKG/usr/lib$LIBSUFFIX/pkgconfig
mkdir -p $PKG/usr/lib$LIBSUFFIX/gkrellm2/plugins
mkdir -p $PKG/usr/doc/gkrellm-$VERSION
cp -a \
  COPYRIGHT CREDITS INSTALL README Themes.html \
  $PKG/usr/doc/gkrellm-$VERSION
mkdir -p $PKG/install
cat $CWD/slack-desc > $PKG/install/slack-desc

# 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 -j5
cp gkrellm-countdown.so $PKG/usr/lib64/gkrellm2/plugins
mkdir -p $PKG/usr/doc/gkrellm-countdown-$COUNTDOWN
cp -a \
  COPYING ChangeLog README \
  $PKG/usr/doc/gkrellm-countdown-$COUNTDOWN

cd $PKG
pkghelpers_fixup
pkghelpers_makepkg
