From 01c82cd52bf9a2b17b207ef6f263a2109bff8959 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 4 Jul 2019 17:01:16 +0200 Subject: [PATCH 1/2] thunderbird: Work around slow NFS access with `NSS_SDB_USE_CACHE=1` Accessing the certificate store over the network takes a long time, and blocks Thunderbird for several minutes. Work around it by setting `NSS_SDB_USE_CACHE=1`. --- thunderbird.be0 | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/thunderbird.be0 b/thunderbird.be0 index 99491a392..f090b913b 100755 --- a/thunderbird.be0 +++ b/thunderbird.be0 @@ -79,7 +79,12 @@ mee_install() { mee_install_post() { start_cmd install -d ${D}${LIBDIR}/mariux64 - start_cmd mv ${D}${BINDIR}/${PKGNAME} ${D}${LIBDIR}/mariux64/${PKGNAME} + start_cmd rm ${D}${BINDIR}/${PKGNAME} + + cat >${D}${LIBDIR}/mariux64/${PKGNAME}<<-EOF + NSS_SDB_USE_CACHE=1 exec "${LIBDIR}/${PKGNAME}/${PKGNAME}" "\$@" + EOF + chmod 755 ${D}${LIBDIR}/mariux64/${PKGNAME} # install official icon in all sizes From 0eb208c2bb8c1a68c8a470cd4a4b0837dabb9916 Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Thu, 4 Jul 2019 17:02:58 +0200 Subject: [PATCH 2/2] thunderbird: Increment revision to 1 --- thunderbird.be0 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thunderbird.be0 b/thunderbird.be0 index f090b913b..7b3f4121d 100755 --- a/thunderbird.be0 +++ b/thunderbird.be0 @@ -2,7 +2,7 @@ #export BEE_TMP_TMPDIR=/dev/shm BEE_TMP_BUILDROOT=/dev/shm/bee-root BEE_MAKEFLAGS='-j80' -# BEE_VERSION thunderbird-60.7.2-0 +# BEE_VERSION thunderbird-60.7.2-1 SRCURL[0]="https://ftp.mozilla.org/pub/thunderbird/releases/${PKGVERSION}/source/thunderbird-${PKGVERSION}.source.tar.xz"