Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 552078 - [overlay] www-client/thunderbird-38.0.1 - requires >=dev-libs/nss-3.18.1
Summary: [overlay] www-client/thunderbird-38.0.1 - requires >=dev-libs/nss-3.18.1
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Mozilla Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-14 09:55 UTC by Elias Probst
Modified: 2015-06-14 14:16 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
[PATCH] [mail-client/thunderbird] Fix dev-libs/nss dependency. (0001-mail-client-thunderbird-Fix-dev-libs-nss-dependency.patch,800 bytes, patch)
2015-06-14 09:55 UTC, Elias Probst
Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Elias Probst 2015-06-14 09:55:11 UTC
Created attachment 405132 [details, diff]
[PATCH] [mail-client/thunderbird] Fix dev-libs/nss dependency.

Currently, mail-client/thunderbird-38.0.1 fails to build because the dependency >=dev-libs/nss-3.17.1 doesn't enforce the required NSS version:

configure:15109: checking for nss-config
configure:15144: checking for NSS - version >=3.18.1
configure: error: you don't have NSS installed or your version is too old
*** Fix above errors and then restart with\
    "make -f client.mk build"

Required changes:

From 36e1979c42d836c6e58b7ca28711dd0ce5826868 Mon Sep 17 00:00:00 2001
From: Elias Probst <mail@eliasprobst.eu>
Date: Sun, 14 Jun 2015 11:53:24 +0200
Subject: [PATCH] [mail-client/thunderbird] Fix dev-libs/nss dependency.

---
 mail-client/thunderbird/thunderbird-38.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/thunderbird/thunderbird-38.0.1.ebuild b/mail-client/thunderbird/thunderbird-38.0.1.ebuild
index 198659e..3637dd5 100644
--- a/mail-client/thunderbird/thunderbird-38.0.1.ebuild
+++ b/mail-client/thunderbird/thunderbird-38.0.1.ebuild
@@ -57,7 +57,7 @@ SRC_URI="${SRC_URI}
 ASM_DEPEND=">=dev-lang/yasm-1.1"
 
 CDEPEND="
-       >=dev-libs/nss-3.17.1
+       >=dev-libs/nss-3.18.1
        >=dev-libs/nspr-4.10.6
        !x11-plugins/enigmail
        crypt?  ( || (
-- 
2.3.6
Comment 1 Jory A. Pratt gentoo-dev 2015-06-14 14:16:37 UTC
Dep is actually been pushed pasted min due to security reasons. Thanks for reporting.