f2a3afeb54
* debug build is broken Changelog: New Sidebars button in browser chrome enables faster access to social, bookmark, & history sidebars New Mac OS X command-E sets find term to selected text New Support for GStreamer 1.0 Changed Disallow calling WebIDL constructors as functions on the web Developer With the exception of those bundled inside an extension or ones that are whitelisted, plugins will no longer be activated by default (see blog post) Developer Fixes to box-shadow and other visual overflow (see bug 480888) Developer Mute and volume available per window when using WebAudio Developer background-blend-mode enabled by default Developer Use of line-height allowed for <input type="reset|button|submit"> Developer ES6 array and generator comprehensions implemented (read docs for more details) Developer Error stack now contains column number Developer Support for alpha option in canvas context options (feature description) Fixed Ignore autocomplete="off" when offering to save passwords via the password manager (see 956906) Fixed TypedArrays don't support new named properties (see 695438) Fixed Various security fixes Fixed in Firefox 30 MFSA 2014-54 Buffer overflow in Gamepad API MFSA 2014-53 Buffer overflow in Web Audio Speex resampler MFSA 2014-52 Use-after-free with SMIL Animation Controller MFSA 2014-51 Use-after-free in Event Listener Manager MFSA 2014-50 Clickjacking through cursor invisability after Flash interaction MFSA 2014-49 Use-after-free and out of bounds issues found using Address Sanitizer MFSA 2014-48 Miscellaneous memory safety hazards (rv:30.0 / rv:24.6)
93 lines
2.9 KiB
Makefile
93 lines
2.9 KiB
Makefile
# $NetBSD: Makefile,v 1.170 2014/06/11 00:40:59 ryoon Exp $
|
|
|
|
FIREFOX_VER= ${MOZ_BRANCH}${MOZ_BRANCH_MINOR}
|
|
MOZ_BRANCH= 30.0
|
|
MOZ_BRANCH_MINOR=
|
|
|
|
DISTNAME= firefox-${FIREFOX_VER}.source
|
|
PKGNAME= firefox-${MOZ_BRANCH}${MOZ_BRANCH_MINOR:S/b/beta/:S/esr//}
|
|
CATEGORIES= www
|
|
MASTER_SITES= ${MASTER_SITE_MOZILLA:=firefox/releases/${FIREFOX_VER}/source/}
|
|
MASTER_SITES+= ${MASTER_SITE_MOZILLA_ALL:=firefox/releases/${FIREFOX_VER}/source/}
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
WRKSRC= ${WRKDIR}/mozilla-release
|
|
#WRKSRC= ${WRKDIR}/mozilla-beta
|
|
|
|
MAINTAINER= ryoon@NetBSD.org
|
|
HOMEPAGE= http://www.mozilla.com/en-US/firefox/
|
|
COMMENT= Web browser with support for extensions (version 29.x)
|
|
LICENSE= mpl-1.1
|
|
|
|
MOZILLA_DIR= # empty
|
|
|
|
# Note: when updating remember to conditionalise about-background.png in PLIST
|
|
# XXX Firefox 21.0's firefox/xulrunner separation is not working.
|
|
#CONFIGURE_ARGS+= --with-libxul-sdk
|
|
#CONFIGURE_ARGS+= --with-system-libxul
|
|
CONFIGURE_ARGS+= --enable-application=browser
|
|
|
|
# workround for link of libxul.so etc.
|
|
LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/firefox ${COMPILER_RPATH_FLAG}${PREFIX}/lib
|
|
LDFLAGS.SunOS+= -lm
|
|
|
|
ALL_ENV+= MOZILLA_PKG_NAME=firefox
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# Avoid ld "invalid section index" errors.
|
|
.if ${OPSYS} == "SunOS"
|
|
BUILDLINK_TRANSFORM+= rm:-fdata-sections
|
|
BUILDLINK_TRANSFORM+= rm:-ffunction-sections
|
|
.endif
|
|
|
|
LDFLAGS.DragonFly= -lplc4 -lnspr4
|
|
LDFLAGS.FreeBSD= -lplc4 -lnspr4
|
|
LDFLAGS.Linux= -lnspr4
|
|
|
|
.include "mozilla-common.mk"
|
|
.include "options.mk"
|
|
|
|
CHECK_INTERPRETER_SKIP+=lib/firefox-sdk/sdk/bin/header.py
|
|
CHECK_INTERPRETER_SKIP+=lib/firefox-sdk/sdk/bin/typelib.py
|
|
CHECK_INTERPRETER_SKIP+=lib/firefox-sdk/sdk/bin/xpidl.py
|
|
CHECK_INTERPRETER_SKIP+=lib/firefox-sdk/sdk/bin/xpt.py
|
|
|
|
MOZILLA=firefox
|
|
MOZILLA_ICON= ${WRKSRC}/${OBJDIR}/dist/firefox/browser/chrome/icons/default/default48.png
|
|
.if !empty(PKG_OPTIONS:Mofficial-mozilla-branding)
|
|
MOZILLA_NAME= Firefox
|
|
.else
|
|
MOZILLA_NAME= Browser
|
|
.endif
|
|
|
|
SUBST_CLASSES+= sys-dic
|
|
SUBST_STAGE.sys-dic= pre-configure
|
|
SUBST_MESSAGE.sys-dic= Reference to system hunspell dictionaries.
|
|
SUBST_FILES.sys-dic= extensions/spellcheck/hunspell/src/mozHunspell.cpp
|
|
SUBST_VARS.sys-dic= PREFIX
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && mkdir ${OBJDIR}
|
|
cd ${WRKSRC} && autoconf
|
|
cd ${WRKSRC}/js/src && autoconf
|
|
# XXX Makefile is broken? When libxul is provided from devel/xulrunner,
|
|
# XXX please remove this.
|
|
mkdir ${WRKSRC}/js/src/.deps
|
|
|
|
post-build:
|
|
${SED} -e 's|@MOZILLA@|${MOZILLA}|g' \
|
|
-e 's|@MOZILLA_NAME@|${MOZILLA_NAME}|g' \
|
|
-e 's|@FIREFOX_ICON@|${MOZILLA}.png|g' \
|
|
< ${FILESDIR}/desktop.in \
|
|
> ${WRKDIR}/desktop
|
|
|
|
INSTALLATION_DIRS+= share/applications share/pixmaps
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKDIR}/desktop \
|
|
${DESTDIR}${PREFIX}/share/applications/${MOZILLA}.desktop
|
|
${INSTALL_DATA} ${MOZILLA_ICON} \
|
|
${DESTDIR}${PREFIX}/share/pixmaps/${MOZILLA}.png
|
|
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|