#!/bin/bash # seamonkey.SlackBuild # Heavily based on the original Slackware build scripts, # Modified by Stuart Winter # # 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 used to use -O arm) export SLKCFLAGS="-O2 -march=armv4 -fno-strict-aliasing -g -Wall -pipe" # -U_FORTIFY_SOURCE -fno-stack-protector" export LDFLAGS="-Wl,--as-needed" export LIBDIRSUFFIX="" ;; *) export SLKCFLAGS="-O2" ;; esac # Extract source: echo "Extracting source... (will take a while)" tar xf $CWD/$PKGNAM-${VERSION}.source.tar.xz #tar xf $PORTCWD/sources/$PKGNAM-${VERSION}.source.tar.bz2 cd mozilla || exit 1 slackhousekeeping # The build seems to fail without this: zcat $CWD/seamonkey.sqlite3.static.diff.gz | patch -p1 --verbose || exit 1 # 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 # ARM bugs: zcat $PORTCWD/sources/iceape*diff* | patch -p1 for i in \ 18_arm_xpcom_unused_attribute.dpatch \ 38_arm_xpcom_optim.dpatch \ 38_armel.dpatch \ ; do echo "**** $i ******" patch --verbose -p1 < debian/patches/$i || failpatch done # NSPR makes incorrect assumptions on ARM EABI: patch --verbose -p1 < $PORTCWD/sources/armeabi-nspr.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 --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ --enable-optimize="$SLKCFLAGS" \ --disable-debug \ --with-default-mozilla-five-home=/usr/lib${LIBDIRSUFFIX}/seamonkey-${VERSION} \ --enable-strip \ --disable-tests \ --enable-svg \ --enable-system-cairo \ --enable-canvas \ --disable-short-wchar \ --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 \ --host=$ARCH-slackware-linux \ --build=$ARCH-slackware-linux || failconfig # Build: echo "******************* Building export ***********" BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make $NUMJOBS -s export || failmake echo "******************* Building libs ************" BUILD_OFFICIAL=1 MOZILLA_OFFICIAL=1 make $NUMJOBS -s libs || failmake # Install into package: echo "******************* Installing **********************" 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 ) # Let the nspr be found by gxine: ( cd $PKG/usr/lib${LIBDIRSUFFIX}/pkgconfig; ln -s seamonkey-nspr.pc nspr.pc ) # 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 seamonkey-nss-solibs. ## 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${LIBDIRSUFFIX} && ( 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${LIBDIRSUFFIX}/mozilla/plugins # Some software won't compile without this symlink: ( cd $PKG/usr/lib${LIBDIRSUFFIX} if [ ! -e seamonkey ]; then ln -sf seamonkey-${VERSION} seamonkey fi ) 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/* 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