#!/bin/sh # 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. VERSION=${VERSION:-6b} ARCH=${ARCH:-x86_64} BUILD=${BUILD:-1_slamd64} CWD=$(pwd) TMP=${TMP:-/tmp} PKG=$TMP/package-libjpeg-compat32 export CC="gcc -m32" SLKCFLAGS="-O2" LIBDIRSUFFIX="" rm -rf $PKG mkdir -p $TMP $PKG # Explode the package framework: cd $PKG explodepkg $CWD/_libjpeg.tar.gz if [ "$ARCH" = "x86_64" ]; then mv usr/lib usr/lib${LIBDIRSUFFIX} sed -i -e "s#usr/lib#usr/lib${LIBDIRSUFFIX}#g" install/doinst.sh fi cd $TMP rm -rf jpeg-6b tar xzvf $CWD/jpegsrc.v6b.tar.gz cd jpeg-6b chown -R root:root . zcat $CWD/jpeg-6b.diff.gz | patch -p0 -E sed -i export CFLAGS="$SLKCFLAGS" ./configure \ --libdir=/usr/lib${LIBDIRSUFFIX} make -j3 || exit 1 strip --strip-unneeded libjpeg.so.62.0.0 cat libjpeg.so.62.0.0 > $PKG/usr/lib${LIBDIRSUFFIX}/libjpeg.so.62.0.0 cat libjpeg.a > $PKG/usr/lib${LIBDIRSUFFIX}/libjpeg.a rm -rf $PKG/usr/{man,include,bin} # KDE includes this complete header list, but the libjpeg source doesn't # suggest it, and we trust them. :) #for file in jchuff.h jdhuff.h jdct.h jerror.h jinclude.h jmemsys.h \ # jmorecfg.h jpegint.h jpeglib.h jversion.h cdjpeg.h cderror.h jconfig.h ; do # cp -a $file $PKG/usr/include #done mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc # Build the package: cd $PKG makepkg -c y -l y $TMP/libjpeg-compat32-$VERSION-$ARCH-$BUILD.txz