Gentoo Archives: gentoo-commits

From: Jory Pratt <anarchy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/mozilla:master commit in: mail-client/thunderbird/
Date: Mon, 14 Nov 2011 18:25:26
Message-Id: 6a9014c8e1870ae5654873113e3333bfed3fb1d8.anarchy@gentoo
1 commit: 6a9014c8e1870ae5654873113e3333bfed3fb1d8
2 Author: Jory A. Pratt <anarchy <AT> gentoo <DOT> org>
3 AuthorDate: Mon Nov 14 18:24:33 2011 +0000
4 Commit: Jory Pratt <anarchy <AT> gentoo <DOT> org>
5 CommitDate: Mon Nov 14 18:24:33 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mozilla.git;a=commit;h=6a9014c8
7
8 Enable startup cache for all, include info to fix addon breakage, fix
9 curl dep
10
11 ---
12 mail-client/thunderbird/Manifest | 2 +-
13 ...erbird-8.0.ebuild => thunderbird-8.0-r1.ebuild} | 17 ++++++++++-------
14 2 files changed, 11 insertions(+), 8 deletions(-)
15
16 diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
17 index 859e328..6dffa6c 100644
18 --- a/mail-client/thunderbird/Manifest
19 +++ b/mail-client/thunderbird/Manifest
20 @@ -56,4 +56,4 @@ DIST thunderbird-8.0-vi.xpi 425968 RMD160 5412aefbf05179354fb4fa2f3865a58b535520
21 DIST thunderbird-8.0-zh-CN.xpi 422519 RMD160 ef881e92de682aa3d807a53a7f536f51e6740b94 SHA1 564f90305e0458f57cd27a876f90e8c12b5ade8f SHA256 bb46c2b4d395488104528ac225f2c129e9c4ddb500e6f44082df549560013132
22 DIST thunderbird-8.0-zh-TW.xpi 423019 RMD160 3326d286df45aee39ea4dc9303c6e4459b41dba2 SHA1 a81c24ab001eb521a1b4e49da16c8f6914676641 SHA256 a6c78df16a242b1731709fdacae8fcfde630fe10469abfd6a696b46076e9059a
23 DIST thunderbird-8.0.source.tar.bz2 89435206 RMD160 373420ec009a7f28f12a64a0d55e9d959573974e SHA1 18b77e44f1653eb3d59056870f535e3c373d99fd SHA256 f728bd2dbc04e6c3a096d79a9ee320740f53794a28be307da8655c8fd90f77f5
24 -EBUILD thunderbird-8.0.ebuild 9415 RMD160 233f4d4a0b864bea4d0d93706902969f68aa1f12 SHA1 c5ad5d1ef0ce61ff3cd56d055a9af238fdf1459a SHA256 177fd320a650824b64d8b9b2011e19f35b93aa2c54d7c159d4353bef3f7f5c51
25 +EBUILD thunderbird-8.0-r1.ebuild 9525 RMD160 fbca590202e0a9488967b313fcca5354c0cbbfbc SHA1 21ec4e3fa79dc83b50f38941cb12dddc2635838e SHA256 8bfd2d59f464569a4bb46d9e752872924d79042c34c9d43a53596f3273e9bb8d
26
27 diff --git a/mail-client/thunderbird/thunderbird-8.0.ebuild b/mail-client/thunderbird/thunderbird-8.0-r1.ebuild
28 similarity index 97%
29 rename from mail-client/thunderbird/thunderbird-8.0.ebuild
30 rename to mail-client/thunderbird/thunderbird-8.0-r1.ebuild
31 index f56ff81..cac6dc2 100644
32 --- a/mail-client/thunderbird/thunderbird-8.0.ebuild
33 +++ b/mail-client/thunderbird/thunderbird-8.0-r1.ebuild
34 @@ -53,6 +53,7 @@ fi
35 RDEPEND=">=sys-devel/binutils-2.16.1
36 >=dev-libs/nss-3.12.10
37 >=dev-libs/nspr-4.8.8
38 + crashreporter? ( net-misc/curl )
39 gconf? ( >=gnome-base/gconf-1.2.1:2 )
40 media-libs/libpng[apng]
41 webm? ( media-libs/libvpx
42 @@ -105,15 +106,14 @@ linguas() {
43 pkg_setup() {
44 moz_pkgsetup
45
46 - if ! use crypt ; then
47 - export MOZILLA_DIR="${S}/mozilla"
48 - fi
49 + export MOZILLA_DIR="${S}/mozilla"
50
51 if ! use bindist ; then
52 elog "You are enabling official branding. You may not redistribute this build"
53 elog "to any users on your network or the internet. Doing so puts yourself into"
54 elog "a legal problem with Mozilla Foundation"
55 elog "You can disable it by emerging ${PN} _with_ the bindist USE-flag"
56 + elog
57 fi
58
59 # Ensure we have enough disk space to compile
60 @@ -189,10 +189,6 @@ src_configure() {
61 # It doesn't compile on alpha without this LDFLAGS
62 use alpha && append-ldflags "-Wl,--no-relax"
63
64 - if use crypt ; then
65 - # omni.jar breaks enigmail
66 - mozconfig_annotate '' --enable-chrome-format=jar
67 - fi
68 mozconfig_annotate '' --enable-extensions="${MEXTENSIONS}"
69 mozconfig_annotate '' --with-default-mozilla-five-home="${EPREFIX}${MOZILLA_FIVE_HOME}"
70 mozconfig_annotate '' --with-user-appdir=.thunderbird
71 @@ -308,3 +304,10 @@ src_install() {
72 "${ED}/${MOZILLA_FIVE_HOME}/defaults/pref/all-gentoo.js" || \
73 die "failed to cp thunderbird-gentoo-default-prefs.js"
74 }
75 +
76 +pkg_postinst() {
77 + elog
78 + elog "If you are experience problems with plugins please issue the"
79 + elog "following command : rm \${HOME}/.thunderbird/*/extensions.sqlite,"
80 + elog "then restart thunderbird"
81 +}