8666ccfbb6
* I will check the build on NetBSD 5.2 later... Changelog: Continued performance improvements around common browser tasks (page loads, downloads, shutdown, etc.). Continued implementation of draft ECMAScript 6 (clear() and Math.imul). <canvas> now supports blend modes. Various <audio> and <video> improvements have been implemented. The Details button on the Crash Reporter has been fixed (bug 793972). Fixed several stability issues. Fixed in SeaMonkey 2.17 MFSA 2013-40 Out-of-bounds array read in CERT_DecodeCertPackage MFSA 2013-39 Memory corruption while rendering grayscale PNG images MFSA 2013-38 Cross-site scripting (XSS) using timed history navigations MFSA 2013-37 Bypass of tab-modal dialog origin disclosure MFSA 2013-36 Bypass of SOW protections allows cloning of protected nodes MFSA 2013-35 WebGL crash with Mesa graphics driver on Linux MFSA 2013-34 Privilege escalation through Mozilla Updater MFSA 2013-31 Out-of-bounds write in Cairo library MFSA 2013-30 Miscellaneous memory safety hazards (rv:20.0 / rv:17.0.5) Fixed in SeaMonkey 2.16.1 MFSA 2013-29 Use-after-free in HTML Editor
48 lines
1.7 KiB
Makefile
48 lines
1.7 KiB
Makefile
# $NetBSD: enigmail.mk,v 1.9 2013/04/07 20:23:49 ryoon Exp $
|
|
#
|
|
# This Makefile fragment hooks the Enigmail OpenPGP extension
|
|
# (see http://www.mozilla-enigmail.org/ ) into the build.
|
|
|
|
ENIGMAIL_DIST= enigmail-1.5.1.tar.gz
|
|
XPI_FILES+= ${WRKDIR}/enigmail.xpi
|
|
.if !defined(DISTFILES)
|
|
DISTFILES= ${DEFAULT_DISTFILES}
|
|
.endif
|
|
DISTFILES+= ${ENIGMAIL_DIST}
|
|
SITES.${ENIGMAIL_DIST}= http://www.mozilla-enigmail.org/download/source/
|
|
|
|
DEPENDS+= gnupg-[0-9]*:../../security/gnupg
|
|
PLIST_SRC+= PLIST.enigmail
|
|
|
|
TARGET_XPCOM_ABI= ${MACHINE_ARCH:S/i386/x86/}-gcc3
|
|
PLIST_SUBST+= TARGET_XPCOM_ABI=${TARGET_XPCOM_ABI}
|
|
|
|
USE_TOOLS+= patch pax
|
|
|
|
post-extract: enigmail-post-extract
|
|
.PHONY: enigmail-post-extract
|
|
enigmail-post-extract:
|
|
${RUN} mv ${WRKDIR}/enigmail ${WRKSRC}/mailnews/extensions/
|
|
${RUN} cd ${WRKSRC} && \
|
|
${PATCH} < ${FILESDIR}/mailnews_extensions_enigmail_ipc_modules_subprocess.jsm && \
|
|
${PATCH} < ${FILESDIR}/patch-files_mailnews_extensions_enigmail_ipc_src_Makefile.enig
|
|
|
|
post-configure: enigmail-post-configure
|
|
.PHONY: enigmail-post-configure
|
|
enigmail-post-configure:
|
|
${RUN} cd ${WRKSRC}/mailnews/extensions/enigmail && \
|
|
${SETENV} ${CONFIGURE_ENV} ${PERL5} ./makemake -r
|
|
|
|
# We need to do a switcheroo of the dist directory while building enigmail;
|
|
# otherwise we get extra files contamination in the PLIST.
|
|
post-build: enigmail-post-build
|
|
.PHONY: enigmail-post-build
|
|
enigmail-post-build:
|
|
${RUN} cd ${WRKSRC}/mozilla/dist && pax -rwpe . ../dist.save
|
|
${RUN} cd ${WRKSRC}/mailnews/extensions/enigmail && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} && \
|
|
${SETENV} ${MAKE_ENV} ${MAKE_PROGRAM} xpi
|
|
${CP} ${WRKSRC}/mozilla/dist/bin/enigmail*.xpi \
|
|
${WRKDIR}/enigmail.xpi
|
|
${RUN} rm -rf ${WRKSRC}/mozilla/dist
|
|
${RUN} cd ${WRKSRC}/mozilla/dist.save && pax -rwpe . ../dist
|