2010-05-13 01:00:02 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
# Slackware build script for icecat
|
|
|
|
# Written by David Negroni <dnegroni.italy@gmail.com>
|
2011-07-24 23:20:09 +02:00
|
|
|
# Modified by melikamp <melikamp@melikamp.net>
|
|
|
|
|
2012-12-16 23:43:21 +01:00
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
2011-07-24 23:20:09 +02:00
|
|
|
|
|
|
|
# This program is distributed in the hope that it will be useful, but
|
2012-12-16 23:43:21 +01:00
|
|
|
# without any warranty; without even the implied warranty of
|
|
|
|
# merchantability or fitness for a particular purpose. Compiling,
|
|
|
|
# interpreting, executing or merely reading the text of the program
|
|
|
|
# may result in lapses of consciousness and/or very being, up to and
|
|
|
|
# including the end of all existence and the Universe as we know it.
|
|
|
|
# See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program (most likely, a file named COPYING). If
|
|
|
|
# not, see <http://www.gnu.org/licenses/>.
|
2010-05-13 01:00:02 +02:00
|
|
|
|
2011-10-01 00:43:54 +02:00
|
|
|
# You can get the latest version of this slackbuild early at
|
|
|
|
# http://melikamp.com/features/slackbuilds.shtml
|
|
|
|
|
2010-05-13 01:00:02 +02:00
|
|
|
PRGNAM="icecat"
|
2013-12-15 15:49:14 +01:00
|
|
|
VERSION=${VERSION:-24.0}
|
2010-05-13 01:00:02 +02:00
|
|
|
BUILD=${BUILD:-1}
|
|
|
|
TAG=${TAG:-_SBo}
|
|
|
|
|
2010-05-19 21:35:52 +02:00
|
|
|
if [ -z "$ARCH" ]; then
|
|
|
|
case "$( uname -m )" in
|
2010-06-04 07:12:57 +02:00
|
|
|
i?86) ARCH=i486 ;;
|
|
|
|
arm*) ARCH=arm ;;
|
|
|
|
*) ARCH=$( uname -m ) ;;
|
2010-05-19 21:35:52 +02:00
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2010-05-13 01:00:02 +02:00
|
|
|
CWD=$(pwd)
|
|
|
|
TMP=${TMP:-/tmp/SBo}
|
|
|
|
PKG=$TMP/package-$PRGNAM
|
|
|
|
OUTPUT=${OUTPUT:-/tmp}
|
|
|
|
|
|
|
|
if [ "$ARCH" = "i486" ]; then
|
2011-07-24 23:20:09 +02:00
|
|
|
SLKCFLAGS="-O2 -march=i486 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-13 01:00:02 +02:00
|
|
|
elif [ "$ARCH" = "i686" ]; then
|
2011-07-24 23:20:09 +02:00
|
|
|
SLKCFLAGS="-O2 -march=i686 -mtune=i686"
|
|
|
|
LIBDIRSUFFIX=""
|
2010-05-13 01:00:02 +02:00
|
|
|
elif [ "$ARCH" = "x86_64" ]; then
|
2011-07-24 23:20:09 +02:00
|
|
|
SLKCFLAGS="-O2 -fPIC"
|
|
|
|
LIBDIRSUFFIX="64"
|
2010-05-19 21:35:52 +02:00
|
|
|
else
|
2011-07-24 23:20:09 +02:00
|
|
|
SLKCFLAGS="-O2"
|
|
|
|
LIBDIRSUFFIX=""
|
|
|
|
fi
|
2010-05-13 01:00:02 +02:00
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf $PKG
|
|
|
|
mkdir -p $TMP $PKG $OUTPUT
|
|
|
|
cd $TMP
|
|
|
|
rm -rf $PRGNAM-$VERSION
|
2012-07-26 20:08:10 +02:00
|
|
|
tar xvf $CWD/${PRGNAM}-$VERSION.tar.gz || exit 1
|
2010-05-13 01:00:02 +02:00
|
|
|
cd ${PRGNAM}-$VERSION
|
|
|
|
chown -R root:root .
|
2013-11-22 08:37:19 +01:00
|
|
|
find -L . \
|
2013-12-15 15:49:14 +01:00
|
|
|
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \
|
|
|
|
-o -perm 511 \) -exec chmod 755 {} \; -o \
|
|
|
|
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
|
|
|
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
2010-05-13 01:00:02 +02:00
|
|
|
|
|
|
|
cp -v .mozconfig{,.orig}
|
2013-12-15 15:49:14 +01:00
|
|
|
sed -i '/--prefix/s:/usr/local:/usr:' .mozconfig
|
|
|
|
sed -i '/--with-system-jpeg/s/^/#/' .mozconfig
|
|
|
|
echo 'ac_add_options --enable-gio' >> .mozconfig
|
2010-05-13 01:00:02 +02:00
|
|
|
|
|
|
|
CFLAGS="$SLKCFLAGS" \
|
|
|
|
CXXFLAGS="$SLKCFLAGS" \
|
|
|
|
./configure \
|
|
|
|
--libdir=/usr/lib${LIBDIRSUFFIX} \
|
2013-12-15 15:49:14 +01:00
|
|
|
--build=$ARCH-slackware-linux
|
2010-05-13 01:00:02 +02:00
|
|
|
|
2013-12-15 15:49:14 +01:00
|
|
|
make
|
2010-05-13 01:00:02 +02:00
|
|
|
make install DESTDIR=$PKG
|
|
|
|
|
2011-07-24 23:20:09 +02:00
|
|
|
# Stripping is done in .mozconfig, but there is something we can erase:
|
2010-05-13 01:00:02 +02:00
|
|
|
rm -rf $PKG/usr/lib${LIBDIRSUFFIX}/icecat-devel-$VERSION
|
|
|
|
rm -rf $PKG/usr/include
|
|
|
|
|
|
|
|
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
|
2011-07-24 23:20:09 +02:00
|
|
|
cp -a \
|
|
|
|
ChangeLog LEGAL LICENSE README.ICECAT README.txt config.cache \
|
|
|
|
$PKG/usr/doc/$PRGNAM-$VERSION
|
2010-05-13 01:00:02 +02:00
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild
|
|
|
|
|
|
|
|
mkdir -p $PKG/install
|
|
|
|
cat $CWD/slack-desc > $PKG/install/slack-desc
|
|
|
|
|
|
|
|
cd $PKG
|
|
|
|
/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz}
|