#!/bin/bash

# seamonkey.SlackBuild
# Heavily based on the original Slackware build scripts,
# Modified by Stuart Winter <stuart@armedslack.org>
#
# Copyright 2008, 2009  Patrick J. Volkerding, Sebeka, MN, USA
# All rights reserved.
#
# Redistribution and use of this script, with or without modification, is
# permitted provided that the following conditions are met:
#
# 1. Redistributions of this script must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
#
#  THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
#  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
#  MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
#  EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
#  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
#  PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
#  OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
#  WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
#  OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
#  ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

# Record toolchain & other info for the build log:
slackbuildinfo

# Paths to skeleton port's source & real Slackware source tree:
export CWD=$SLACKSOURCE/$PKGSERIES/$PKGNAM
export PORTCWD=$PWD

# Temporary build locations:
export TMPBUILD=$TMP/build-$PKGNAM
export PKG=$TMP/package-$PKGNAM
mkpkgdirs # Delete & re-create temporary directories then cd into $TMPBUILD

# Determine the CFLAGS for the known architectures:
case $ARCH in
   arm)     export SLKCFLAGS="-O2 -march=armv4 -mtune=xscale" ;;
   powerpc) export SLKCFLAGS="-O2" ;;
   sparc)   export SLKCFLAGS="-O2" ;;
   hppa)    export SLKCFLAGS="-O2" ;;
   *)       export SLKCFLAGS="-O2" ;;
esac

# Extract source:
echo "Extracting source... (will take a while)"
tar xf $CWD/$PKGNAM-${VERSION}.source.tar.bz2
#tar xvvf $PORTCWD/sources/$PKGNAM-${VERSION}.source.tar.bz2
cd mozilla
slackhousekeeping

# Add /usr/lib/mozilla/plugins to MOZ_PLUGINS_PATH:
zcat $CWD/seamonkey.moz_plugin_path.diff.gz | patch -p1 --verbose --backup --suffix=.orig || exit 1
rm -f xpfe/bootstrap/mozilla.in.orig

# Fix ARM build bug as listed here:
patch --verbose -p1 < $PORTCWD/sources/18_arm_xpcom_unused_attribute.patch || failpatch
patch --verbose -p1 < $PORTCWD/sources/38_arm_xpcom_optim.patch || failpatch

# Fix a long standing bug that's prevented staying current on GTK+:
cat >> layout/build/Makefile.in << EOF

ifdef MOZ_ENABLE_CANVAS
EXTRA_DSO_LDOPTS += \$(XLDFLAGS) -lX11 -lXrender
endif

EOF

# Configure:
# use make-3.80 since 3.81 is producing some errors: 
# ARMedslack's 'make' package has this version included.
# Oct 2008: not needed anymore.
# To debug:
#DEBUGOPTS="--enable-debug --disable-strip"
# For normal build:
DEBUGOPTS="--disable-debug --enable-strip"
#ac_cv_path_MAKE=/usr/bin/make-3.80 \
BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 \
./configure $DEBUGOPTS \
   --prefix=/usr \
   --enable-optimize=-O \
   --with-default-mozilla-five-home=/usr/lib/seamonkey-${VERSION} \
   --disable-tests \
   --enable-svg \
   --enable-canvas \
   --disable-short-wchar \
   --enable-system-cairo \
   --enable-nspr-autoconf \
   --enable-extensions=default,irc \
   --enable-crypto \
   --disable-xprint \
   --without-system-nspr \
   --with-system-zlib \
   --with-system-jpeg \
   --with-system-png \
   --with-system-mng \
   --enable-application=suite \
   --enable-xft \
   --build=$ARCH-slackware-linux || failconfig

# Build:
BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make $NUMJOBS -s export || failmake
BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make $NUMJOBS -s libs   || failmake

# Install into package:
BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 DESTDIR=$PKG make install || failinstall

# Install nss headers.
mkdir -p $PKG/usr/include/seamonkey-${VERSION}/nss
find security/nss/lib -name "*.h" -type f -exec cp -a {} $PKG/usr/include/seamonkey-${VERSION}/nss \;
chown -R root:root $PKG/usr/include/seamonkey-${VERSION}/nss
chmod 644 $PKG/usr/include/seamonkey-${VERSION}/nss/*
# Create a more generic include files symlink:
( cd $PKG/usr/include
  if [ ! -e seamonkey ]; then
    ln -sf seamonkey-${VERSION} seamonkey
  fi
)

# A Better Way to handle the problem below is simply to add /usr/lib/seamonkey
# to /etc/ld.so.conf.  After all, the various Mozilla offshoots all set an
# LD_LIBRARY_PATH to make sure *they* use the right libraries anyway, and as
# far as I know seamonkey has the only set of Mozilla development libraries
# right now.  Plus, doing it this way doesn't stomp all over efforts by people
# who would like to use mozilla-nss.

## Link some libraries into /usr/lib.  Unless this is done, some things (like gxine)
## will be unable to load them, even if they linked with them successfully.
#( cd $PKG/usr/lib && ( for somelib in libmozjs.so libnspr4.so libnss3.so libplc4.so libplds4.so libsmime3.so libsoftokn3.so libssl3.so ; do
#    # Link to it:
#    ln -sf seamonkey-${VERSION}/$somelib .
#  done )
#)

# This remains the standard plugin directory for all browsers.
mkdir -p $PKG/usr/lib/mozilla/plugins

# Some software won't compile without this symlink:
( cd $PKG/usr/lib
  if [ ! -e seamonkey ]; then
    ln -sf seamonkey-${VERSION} seamonkey
  fi )

# Let the nspr be found by gxine:
( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig; ln -vfs seamonkey-nspr.pc nspr.pc )

mkdir -p $PKG/usr/share/applications
cp -a $CWD/*.desktop $PKG/usr/share/applications
chown -R root:root $PKG/usr/share/applications
chmod 644 $PKG/usr/share/applications/*
mkdir -p $PKG/usr/share/pixmaps
cp -a $CWD/*.png $PKG/usr/share/pixmaps
chown -R root:root $PKG/usr/share/pixmaps
chmod 644 $PKG/usr/share/pixmaps/*

# Copy docs:
mkdir -p $PKG/usr/doc/seamonkey-$VERSION
cp -a \
  LEGAL LICENSE README.txt \
  $PKG/usr/doc/seamonkey-$VERSION

# If necessary, start the fakeroot server so we can set file/dir ownerships:
start_fakeroot

# Apply generic Slackware packaging policies:
cd $PKG
slackstripall   # strip all .a archives and all ELFs
slackgzpages -i # compress man & info pages and delete usr/info/dir
slackslack      # chown -R root:root, chmod -R og-w, slackchown, slack644docs
slackdesc       # install slack-desc and doinst.sh
slackmp         # run makepkg -l y -c n

# Perform any final checks on the package:
cd $PKG
slackhlinks     # search for any hard links
