pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/mail Update thunderbird & thunderbird-gtk2 to 0.7.3
details: https://anonhg.NetBSD.org/pkgsrc/rev/f281d52c0fd9
branches: trunk
changeset: 479279:f281d52c0fd9
user: taya <taya%pkgsrc.org@localhost>
date: Tue Aug 10 14:27:17 2004 +0000
description:
Update thunderbird & thunderbird-gtk2 to 0.7.3
thunderbird 0.7.3 is a security fix release.
Fixed bugs are:
- lock icon and certificate spoof with onunload document.write (Bugzilla#253121)
- Malicious certificates can permanently break HTTPS/SSL (Bugzilla#249004)
See the page below.
http://www.mozilla.org/projects/security/known-vulnerabilities.html#mozilla1.7.2
diffstat:
mail/thunderbird-gtk2/Makefile | 26 +++-----------------------
mail/thunderbird/Makefile | 22 ++--------------------
mail/thunderbird/Makefile-thunderbird.common | 26 ++++++++++++++++++++++++++
mail/thunderbird/distinfo | 6 +++---
4 files changed, 34 insertions(+), 46 deletions(-)
diffs (112 lines):
diff -r 8a9872748d64 -r f281d52c0fd9 mail/thunderbird-gtk2/Makefile
--- a/mail/thunderbird-gtk2/Makefile Tue Aug 10 14:23:19 2004 +0000
+++ b/mail/thunderbird-gtk2/Makefile Tue Aug 10 14:27:17 2004 +0000
@@ -1,30 +1,10 @@
-# $NetBSD: Makefile,v 1.4 2004/07/06 13:41:35 taya Exp $
+# $NetBSD: Makefile,v 1.5 2004/08/10 14:27:17 taya Exp $
MOZILLA= thunderbird-gtk2
-MOZILLA_BIN= thunderbird-bin
-MOZ_VER= 0.7.1
-EXTRACT_SUFX= .tar.bz2
-DISTNAME= thunderbird-${MOZ_VER}-source
-MASTER_SITES= http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/ \
- ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/
-HOMEPAGE= http://www.mozilla.org/projects/thunderbird/
-COMMENT= Redesign of the Mozilla mail client
+COMMENT= Redesign of the Mozilla mail client built on GTK2
-CONFIGURE_ENV+= MOZ_THUNDERBIRD=1
-MAKE_ENV+= MOZ_THUNDERBIRD=1
-
-DISTINFO_FILE= ${.CURDIR}/../../mail/thunderbird/distinfo
-PATCHDIR= ${.CURDIR}/../../mail/thunderbird/patches
-
-CONFIGURE_ARGS+= --enable-extensions=wallet,spellcheck,xmlextras
MOZILLA_USE_GTK2= # defined
MOZILLA_USE_XFT= YES
-pre-install:
- ${CP} -r ${WRKSRC}/dist/bin/defaults/profile/extensions \
- ${WRKSRC}/dist/bin
- ${MV} ${WRKSRC}/dist/bin/extensions/installed-extensions.txt \
- ${WRKSRC}/dist/bin/extensions/installed-extensions-processed.txt
-
-.include "../../www/mozilla/Makefile.common"
+.include "../../mail/thunderbird/Makefile-thunderbird.common"
diff -r 8a9872748d64 -r f281d52c0fd9 mail/thunderbird/Makefile
--- a/mail/thunderbird/Makefile Tue Aug 10 14:23:19 2004 +0000
+++ b/mail/thunderbird/Makefile Tue Aug 10 14:27:17 2004 +0000
@@ -1,25 +1,7 @@
-# $NetBSD: Makefile,v 1.5 2004/07/06 13:40:57 taya Exp $
+# $NetBSD: Makefile,v 1.6 2004/08/10 14:27:17 taya Exp $
MOZILLA= thunderbird
-MOZILLA_BIN= thunderbird-bin
-MOZ_VER= 0.7.1
-EXTRACT_SUFX= .tar.bz2
-DISTNAME= thunderbird-${MOZ_VER}-source
-MASTER_SITES= http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/ \
- ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/
-HOMEPAGE= http://www.mozilla.org/projects/thunderbird/
COMMENT= Redesign of the Mozilla mail client
-CONFIGURE_ENV+= MOZ_THUNDERBIRD=1
-MAKE_ENV+= MOZ_THUNDERBIRD=1
-
-CONFIGURE_ARGS+= --enable-extensions=wallet,spellcheck,xmlextras
-
-pre-install:
- ${CP} -r ${WRKSRC}/dist/bin/defaults/profile/extensions \
- ${WRKSRC}/dist/bin
- ${MV} ${WRKSRC}/dist/bin/extensions/installed-extensions.txt \
- ${WRKSRC}/dist/bin/extensions/installed-extensions-processed.txt
-
-.include "../../www/mozilla/Makefile.common"
+.include "../../mail/thunderbird/Makefile-thunderbird.common"
diff -r 8a9872748d64 -r f281d52c0fd9 mail/thunderbird/Makefile-thunderbird.common
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/mail/thunderbird/Makefile-thunderbird.common Tue Aug 10 14:27:17 2004 +0000
@@ -0,0 +1,26 @@
+# $NetBSD: Makefile-thunderbird.common,v 1.1 2004/08/10 14:27:17 taya Exp $
+
+MOZILLA_BIN= thunderbird-bin
+MOZ_VER= 0.7.3
+EXTRACT_SUFX= .tar.bz2
+DISTNAME= thunderbird-${MOZ_VER}-source
+MASTER_SITES= http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/ \
+ ftp://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/${MOZ_VER}/
+
+HOMEPAGE= http://www.mozilla.org/projects/thunderbird/
+
+CONFIGURE_ENV+= MOZ_THUNDERBIRD=1
+MAKE_ENV+= MOZ_THUNDERBIRD=1
+
+DISTINFO_FILE= ${.CURDIR}/../../mail/thunderbird/distinfo
+PATCHDIR= ${.CURDIR}/../../mail/thunderbird/patches
+
+CONFIGURE_ARGS+= --enable-extensions=wallet,spellcheck,xmlextras
+
+pre-install:
+ ${CP} -r ${WRKSRC}/dist/bin/defaults/profile/extensions \
+ ${WRKSRC}/dist/bin
+ ${MV} ${WRKSRC}/dist/bin/extensions/installed-extensions.txt \
+ ${WRKSRC}/dist/bin/extensions/installed-extensions-processed.txt
+
+.include "../../www/mozilla/Makefile.common"
diff -r 8a9872748d64 -r f281d52c0fd9 mail/thunderbird/distinfo
--- a/mail/thunderbird/distinfo Tue Aug 10 14:23:19 2004 +0000
+++ b/mail/thunderbird/distinfo Tue Aug 10 14:27:17 2004 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.5 2004/07/06 13:40:57 taya Exp $
+$NetBSD: distinfo,v 1.6 2004/08/10 14:27:17 taya Exp $
-SHA1 (thunderbird-0.7.1-source.tar.bz2) = 7747c35f19e7461dc8b1487fa45e205bae12d2fc
-Size (thunderbird-0.7.1-source.tar.bz2) = 33974414 bytes
+SHA1 (thunderbird-0.7.3-source.tar.bz2) = c0d362df70d39039240b5cd14a637e5c81fcc269
+Size (thunderbird-0.7.3-source.tar.bz2) = 33936627 bytes
SHA1 (patch-aa) = 9225a7a2c9b4545e800008169d4d88452c85d1a9
SHA1 (patch-ab) = 0c1f2d6cca09b4dd6b168ed29d84d245967a3369
SHA1 (patch-ac) = e9bc27529cf595ab6f120d9021dd7d6c49112084
Home |
Main Index |
Thread Index |
Old Index