Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 174907 - mozilla-thunderbird: don't remove extensions when wiping mozilla dir
Summary: mozilla-thunderbird: don't remove extensions when wiping mozilla dir
Status: RESOLVED CANTFIX
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: High enhancement (vote)
Assignee: Mozilla Gentoo Team
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-04-17 13:42 UTC by Paweł Hajdan, Jr. (RETIRED)
Modified: 2007-04-17 15:37 UTC (History)
0 users

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


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paweł Hajdan, Jr. (RETIRED) gentoo-dev 2007-04-17 13:42:39 UTC
The problem is about this code snippet:

pkg_preinst() {
	declare MOZILLA_FIVE_HOME=/usr/$(get_libdir)/${PN}

	echo ""
	elog "Removing old installs though some really ugly code.  It potentially"
	elog "eliminates any problems during the install, however suggestions to"
	elog "replace this are highly welcome.  Send comments and suggestions to"
	elog "mozilla@gentoo.org"
	rm -rf ${ROOT}${MOZILLA_FIVE_HOME}
	echo ""
}

Which was supposed to workaround some problems like bug 27719. But there is one annoying thing about it: all extension installed by portage are removed and you have to re-emerge them after updating thunderbird. Example:

# Warn user that remerging enigmail is neccessary on USE=crypt
use crypt && ewarn "Please remerge x11-plugins/enigmail after updating mozilla-thunderbird."

I suggest to not remove the extensions directory in this remove-all phase. On my amd64 system it's /usr/lib64/mozilla-thunderbird/extensions, and I suppose it can be abstracted using get_libdir and/or MOZILLA_FIVE_HOME or something similar.

In this bug report I assume that not removing the extensions dir won't affect build and installation and it will remove an annoying need to re-emerge extensions installed via portage (example: enigmail).
Comment 1 Raúl Porcel (RETIRED) gentoo-dev 2007-04-17 15:37:13 UTC
You need to reemerge the extensions, whether you want it or not. The extensions thing doesn't work only having a extension in it's dir. You need to install it again.

Closing as CANTFIX, since we can't fix this.