7aff8d3017
* Update Mozilla Lightning to 1.7 * Update Enigmail to 1.4.4 (functionality is not tested yet; should be updated) * Regen patches Changelog: SeaMonkey-specific changes None. Mozilla platform changes Added support for SPDY networking protocol v3. Implemented WebGL enhancements, including compressed textures for better performance. Optimized memory usage for add-ons. Implemented the CSS word-break property. Implemented high precision event timer. HTML5: Added native support for the Opus audio codec. HTML5: Added support for the source element media attribute. HTML5: Added support for the audio element and video element played attribute. Fixed several stability issues. Fixed in SeaMonkey 2.12 MFSA 2012-70 Location object security checks bypassed by chrome code MFSA 2012-69 Incorrect site SSL certificate data display MFSA 2012-68 DOMParser loads linked resources in extensions when parsing text/html MFSA 2012-65 Out-of-bounds read in format-number in XSLT MFSA 2012-64 Graphite 2 memory corruption MFSA 2012-63 SVG buffer overflow and use-after-free issues MFSA 2012-62 WebGL use-after-free and memory corruption MFSA 2012-61 Memory corruption with bitmap format images with negative height MFSA 2012-59 Location object can be shadowed using Object.defineProperty MFSA 2012-58 Use-after-free issues found using Address Sanitizer MFSA 2012-57 Miscellaneous memory safety hazards (rv:15.0/ rv:10.0.7)
47 lines
1.7 KiB
Makefile
47 lines
1.7 KiB
Makefile
# $NetBSD: enigmail.mk,v 1.6 2012/09/06 12:08:50 ryoon Exp $
|
|
#
|
|
# This Makefile fragment hooks the Enigmail OpenPGP extension
|
|
# (see http://www.mozilla-enigmail.org/ ) into the build.
|
|
|
|
ENIGMAIL_DIST= enigmail-1.4.4.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
|
|
|
|
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
|