MFSA 2010-84 XSS hazard in multiple character encodings MFSA 2010-83 Location bar SSL spoofing using network error page MFSA 2010-82 Incomplete fix for CVE-2010-0179 MFSA 2010-81 Integer overflow vulnerability in NewIdArray MFSA 2010-80 Use-after-free error with nsDOMAttribute MutationObserver MFSA 2010-79 Java security bypass from LiveConnect loaded via data: URL meta refresh MFSA 2010-78 Add support for OTS font sanitizer MFSA 2010-77 Crash and remote code execution using HTML tags inside a XUL tree MFSA 2010-76 Chrome privilege escalation with window.open and <isindex> element MFSA 2010-75 Buffer overflow while line breaking after document.write with long string MFSA 2010-74 Miscellaneous memory safety hazards (rv:1.9.2.13/ 1.9.1.16)
64 lines
2 KiB
Makefile
64 lines
2 KiB
Makefile
# $NetBSD: Makefile,v 1.80 2010/12/11 14:46:29 tnn Exp $
|
|
|
|
.include "../../devel/xulrunner/dist.mk"
|
|
PKGNAME= firefox-${FIREFOX_VER}
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= tnn@NetBSD.org
|
|
HOMEPAGE= http://www.mozilla.com/en-US/firefox/
|
|
COMMENT= Web browser with support for extensions
|
|
LICENSE= mpl-1.1
|
|
|
|
MOZILLA_DIR= # empty
|
|
|
|
CONFIGURE_ARGS+= --enable-application=browser
|
|
CONFIGURE_ARGS+= --with-libxul-sdk=${PREFIX}/lib/xulrunner-sdk
|
|
CONFIGURE_ARGS+= --with-system-libxul
|
|
|
|
ALL_ENV+= MOZILLA_PKG_NAME=firefox
|
|
|
|
.include "../../devel/xulrunner/mozilla-common.mk"
|
|
.include "options.mk"
|
|
|
|
MOZILLA=firefox
|
|
.if !empty(PKG_OPTIONS:Mofficial-mozilla-branding)
|
|
MOZILLA_NAME= Firefox 3.6
|
|
MOZILLA_ICON= ${WRKSRC}/other-licenses/branding/firefox/default48.png
|
|
.else
|
|
MOZILLA_NAME= Browser 3.6
|
|
MOZILLA_ICON= ${WRKSRC}/browser/branding/unofficial/default48.png
|
|
.endif
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC} && autoconf
|
|
|
|
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
|
|
${SED} -e 's|@PREFIX@|${PREFIX}|g' < ${FILESDIR}/firefox.sh.in \
|
|
> ${WRKDIR}/firefox
|
|
|
|
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
|
|
rm -f ${DESTDIR}${PREFIX}/bin/firefox
|
|
${INSTALL_SCRIPT} ${WRKDIR}/firefox ${DESTDIR}${PREFIX}/bin
|
|
|
|
BUILDLINK_API_DEPENDS.xulrunner+= xulrunner>=${MOZ_BRANCH}${MOZ_BRANCH_MINOR}
|
|
BUILD_DEPENDS+= xulrunner-${MOZ_BRANCH}${MOZ_BRANCH_MINOR}{,nb*}:../../devel/xulrunner
|
|
.include "../../devel/xulrunner/buildlink3.mk"
|
|
PLIST_VARS+= gnome
|
|
.if !empty(PKG_BUILD_OPTIONS.xulrunner:Mgnome)
|
|
CONFIGURE_ARGS+= --enable-gnomevfs --enable-dbus --enable-gnomeui
|
|
PLIST.gnome= yes
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gnomevfs --disable-dbus --disable-gnomeui
|
|
.endif
|
|
.include "../../sysutils/desktop-file-utils/desktopdb.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|