diff options
author | tnn <tnn@pkgsrc.org> | 2010-11-13 11:54:43 +0000 |
---|---|---|
committer | tnn <tnn@pkgsrc.org> | 2010-11-13 11:54:43 +0000 |
commit | 83c4764beed5a97f04cb0297bc42a13ea5d4f94e (patch) | |
tree | b895bc7a195da7258ebd820101229df2b7293c86 /devel | |
parent | f9e2fa9e328d0eeaaab98e82e8fff840009689ce (diff) | |
download | pkgsrc-83c4764beed5a97f04cb0297bc42a13ea5d4f94e.tar.gz |
Reluctantly switch over to bundled cairo and pixman for mozilla packages,
like other distros have recently done. Bump package revisions.
Background:
The cairo-1.10 update caused multiple regressions in firefox, such as
flickering gif animations and crashes.
Mozilla doesn't seem interested in fixing it on the stable branches:
https://bugzilla.mozilla.org/show_bug.cgi?id=610107
Other references:
https://bugzilla.redhat.com/show_bug.cgi?id=628331
http://bugs.gentoo.org/show_bug.cgi?id=337813
https://bugzilla.mozilla.org/show_bug.cgi?id=597174
This workaround is guaranteed to cause other problems in the long run;
so we should attempt to switch back when we move to the mozilla-2.0 branch.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/xulrunner/Makefile | 3 | ||||
-rw-r--r-- | devel/xulrunner/PLIST | 15 | ||||
-rw-r--r-- | devel/xulrunner/mozilla-common.mk | 4 |
3 files changed, 18 insertions, 4 deletions
diff --git a/devel/xulrunner/Makefile b/devel/xulrunner/Makefile index e41b7cace97..e5c90319b34 100644 --- a/devel/xulrunner/Makefile +++ b/devel/xulrunner/Makefile @@ -1,8 +1,9 @@ -# $NetBSD: Makefile,v 1.42 2010/10/21 10:27:20 tnn Exp $ +# $NetBSD: Makefile,v 1.43 2010/11/13 11:54:43 tnn Exp $ .include "dist.mk" PKGNAME= xulrunner-${MOZ_BRANCH}${MOZ_BRANCH_MINOR} CATEGORIES= devel www +PKGREVISION= 1 MAINTAINER= tnn@NetBSD.org HOMEPAGE= http://developer.mozilla.org/en/docs/XULRunner diff --git a/devel/xulrunner/PLIST b/devel/xulrunner/PLIST index 7c2b07806dd..060b8af9dc7 100644 --- a/devel/xulrunner/PLIST +++ b/devel/xulrunner/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.24 2010/09/09 09:41:21 tnn Exp $ +@comment $NetBSD: PLIST,v 1.25 2010/11/13 11:54:43 tnn Exp $ bin/xulrunner ${PLIST.jit}include/xulrunner/Allocator.h ${PLIST.jit}include/xulrunner/Assembler.h @@ -17,6 +17,17 @@ include/xulrunner/XPCIDispatch.h ${PLIST.jit}include/xulrunner/avmplus.h include/xulrunner/base64.h include/xulrunner/blapit.h +include/xulrunner/cairo/cairo-deprecated.h +include/xulrunner/cairo/cairo-features.h +include/xulrunner/cairo/cairo-ft.h +include/xulrunner/cairo/cairo-pdf.h +include/xulrunner/cairo/cairo-platform.h +include/xulrunner/cairo/cairo-ps.h +include/xulrunner/cairo/cairo-rename.h +include/xulrunner/cairo/cairo-version.h +include/xulrunner/cairo/cairo-xlib-xrender.h +include/xulrunner/cairo/cairo-xlib.h +include/xulrunner/cairo/cairo.h include/xulrunner/cert.h include/xulrunner/certdb.h include/xulrunner/certt.h @@ -2046,6 +2057,8 @@ include/xulrunner/oggz/oggz_write.h include/xulrunner/p12.h include/xulrunner/p12plcy.h include/xulrunner/p12t.h +include/xulrunner/pixman-version.h +include/xulrunner/pixman.h include/xulrunner/pk11func.h include/xulrunner/pk11pqg.h include/xulrunner/pk11priv.h diff --git a/devel/xulrunner/mozilla-common.mk b/devel/xulrunner/mozilla-common.mk index be50940a0d5..972deb0e2ee 100644 --- a/devel/xulrunner/mozilla-common.mk +++ b/devel/xulrunner/mozilla-common.mk @@ -1,4 +1,4 @@ -# $NetBSD: mozilla-common.mk,v 1.17 2010/11/03 01:22:36 joerg Exp $ +# $NetBSD: mozilla-common.mk,v 1.18 2010/11/13 11:54:43 tnn Exp $ # # common Makefile fragment for mozilla packages based on gecko 1.9.1. # @@ -25,7 +25,7 @@ CONFIGURE_ARGS+= --enable-optimize=-O2 --with-pthreads CONFIGURE_ARGS+= --disable-javaxpcom CONFIGURE_ARGS+= --enable-default-toolkit=cairo-gtk2 CONFIGURE_ARGS+= --enable-svg --enable-mathml -CONFIGURE_ARGS+= --enable-system-cairo +CONFIGURE_ARGS+= --disable-system-cairo CONFIGURE_ARGS+= --with-system-jpeg CONFIGURE_ARGS+= --with-system-zlib --with-system-bz2 CONFIGURE_ARGS+= --enable-system-sqlite |