125 lines
4.8 KiB
Bash
125 lines
4.8 KiB
Bash
# Template build file for 'firefox-esr'.
|
|
pkgname=firefox-esr
|
|
version=38.3.0
|
|
revision=1
|
|
wrksrc="mozilla-esr${version%%.*}"
|
|
short_desc="Lightweight gecko-based web browser"
|
|
maintainer="Eivind Uggedal <eivind@uggedal.com>"
|
|
homepage="https://www.mozilla.org/en-US/firefox/organizations/"
|
|
license="MPL-1.1, GPL-2, LGPL-2.1"
|
|
distfiles="${MOZILLA_SITE}/firefox/releases/${version}esr/source/firefox-${version}esr.source.tar.bz2"
|
|
checksum=809f65502d256568220c52bfe09646588f21653c8c487e8018b10ff87ca67f1c
|
|
|
|
lib32disabled=yes
|
|
|
|
hostmakedepends="unzip zip pkg-config perl python yasm"
|
|
makedepends="nss-devel libjpeg-turbo-devel libpng-devel
|
|
icu-devel pixman-devel sqlite-devel gst-plugins-base1-devel gtk+-devel
|
|
libevent-devel libnotify-devel libvpx-devel libXrender-devel
|
|
startup-notification-devel dbus-glib-devel alsa-lib-devel pulseaudio-devel
|
|
hunspell-devel libXcomposite-devel libSM-devel libXScrnSaver-devel
|
|
libXt-devel libXdamage-devel"
|
|
depends="nss>=3.17 desktop-file-utils hicolor-icon-theme"
|
|
conflicts="firefox>=0"
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
# Make config/system_wrappers/alsa/alsalib.h and pulse/pulse.h find
|
|
# the required includes. Set system nspr and nss include paths.
|
|
CFLAGS="-I${XBPS_CROSS_BASE}/usr/include/alsa \
|
|
-I${XBPS_CROSS_BASE}/usr/include/pulse \
|
|
-I${XBPS_CROSS_BASE}/usr/include/nspr \
|
|
-I${XBPS_CROSS_BASE}/usr/include/nss"
|
|
CXXFLAGS="${CFLAGS}"
|
|
LDFLAGS="-L${XBPS_CROSS_BASE}/usr/lib"
|
|
fi
|
|
|
|
pre_configure() {
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl)
|
|
$XBPS_FETCH_CMD http://git.alpinelinux.org/cgit/aports/plain/main/firefox/stab.h
|
|
mv stab.h toolkit/crashreporter/google-breakpad/src/
|
|
;;
|
|
esac
|
|
|
|
# configure script misdetects the preprocessor without an optimization level
|
|
sed -i '/ac_cpp=/s/$CPPFLAGS/& -O2/' configure
|
|
|
|
# Google API key (see http://www.chromium.org/developers/how-tos/api-keys)
|
|
# Note: This is for Void Linux use ONLY.
|
|
_google_api_key="AIzaSyCIFdBA7eQP43R6kXRwTq7j6Mvj1ITze90"
|
|
echo -n "$_google_api_key" > google-api-key
|
|
[ ! -d xbps-build ] && mkdir -p xbps-build
|
|
}
|
|
do_configure() {
|
|
if [ "$CROSS_BUILD" ]; then
|
|
export HOST_CFLAGS="${XBPS_CFLAGS}"
|
|
export HOST_CXXFLAGS="${XBPS_CXXFLAGS}"
|
|
export CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr -I${XBPS_CROSS_BASE}/usr/include/nss"
|
|
export CXXFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/nspr -I${XBPS_CROSS_BASE}/usr/include/nss"
|
|
|
|
cross_args+=" --target=$XBPS_CROSS_TRIPLET"
|
|
fi
|
|
|
|
export ac_cv_sqlite_secure_delete=yes
|
|
export ac_cv_sqlite_threadsafe=yes
|
|
export ac_cv_sqlite_enable_fts3=yes
|
|
export ac_cv_sqlite_enable_unlock_notify=yes
|
|
export ac_cv_prog_hostcxx_works=1
|
|
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) # XXX gold linking with --hash-style=sysv results in unhidden symbols
|
|
# XXX see https://sourceware.org/ml/binutils/2014-09/msg00230.html
|
|
cross_args+=" --enable-gold=no"
|
|
;;
|
|
esac
|
|
|
|
mkdir -p /usr/lib/firefox
|
|
export LDFLAGS+=" -Wl,-rpath=/usr/lib/firefox"
|
|
|
|
cd xbps-build
|
|
SHELL=/bin/bash ../configure --prefix=/usr --libdir=/usr/lib \
|
|
--with-system-nspr --with-system-nss --with-system-bz2 \
|
|
--with-system-jpeg --with-system-zlib --without-system-png \
|
|
--with-system-libevent --with-system-libvpx --enable-system-cairo \
|
|
--enable-system-pixman --enable-system-hunspell --enable-system-sqlite \
|
|
--enable-system-ffi --enable-startup-notification --disable-gio \
|
|
--with-pthreads --enable-official-branding --enable-safe-browsing \
|
|
--disable-skia --disable-debug --disable-gnomevfs --disable-gconf \
|
|
--disable-crashreporter --disable-updater --disable-xprint --disable-tests \
|
|
--disable-mochitest --disable-installer --disable-elf-hack \
|
|
--with-system-icu --enable-pulseaudio --enable-gstreamer=1.0 \
|
|
--disable-crashreporter --disable-cpp-exceptions --disable-javaxpcom \
|
|
--with-nspr-prefix=${XBPS_CROSS_BASE}/usr \
|
|
--with-nss-prefix=${XBPS_CROSS_BASE}/usr ${cross_args} \
|
|
--with-google-api-keyfile="${wrksrc}/google-api-key" \
|
|
--enable-optimize="$CFLAGS" --disable-strip --disable-install-strip \
|
|
--disable-static --disable-jemalloc --enable-pie \
|
|
--disable-profiling --disable-profilelocking
|
|
}
|
|
do_build() {
|
|
cd xbps-build
|
|
SHELL=/bin/bash make ${makejobs}
|
|
}
|
|
do_install() {
|
|
cd xbps-build
|
|
make DESTDIR=${DESTDIR} install
|
|
|
|
vinstall ${FILESDIR}/vendor.js 644 usr/lib/firefox/browser/defaults/preferences
|
|
vinstall ${FILESDIR}/firefox.desktop 644 usr/share/applications
|
|
|
|
for i in 16x16 22x22 24x24 32x32 48x48 256x256; do
|
|
vinstall ${wrksrc}/browser/branding/official/default${i%x*}.png 644 \
|
|
usr/share/icons/hicolor/${i}/apps firefox.png
|
|
done
|
|
|
|
# Use system-provided dictionaries
|
|
rm -rf ${DESTDIR}/usr/lib/firefox/{dictionaries,hyphenation}
|
|
ln -s /usr/share/hunspell ${DESTDIR}/usr/lib/firefox/dictionaries
|
|
ln -s /usr/share/hyphen ${DESTDIR}/usr/lib/firefox/hyphenation
|
|
|
|
# We don't want the development stuff
|
|
rm -rf ${DESTDIR}/usr/{include,lib/firefox-devel,share/idl}
|
|
|
|
# https://bugzilla.mozilla.org/show_bug.cgi?id=658850
|
|
ln -sf firefox ${DESTDIR}/usr/lib/firefox/firefox-bin
|
|
}
|