diff options
author | Jory Pratt <anarchy@gentoo.org> | 2011-03-06 01:27:21 +0000 |
---|---|---|
committer | Jory Pratt <anarchy@gentoo.org> | 2011-03-06 01:27:21 +0000 |
commit | 5f0c32cfbb326a3e230dab998b48335244701c4a (patch) | |
tree | fffcef5e9de43d294cb51beaf73914fff7ffbadb /www-client/seamonkey-bin | |
parent | Security Bump, bug #357057 (diff) | |
download | gentoo-2-5f0c32cfbb326a3e230dab998b48335244701c4a.tar.gz gentoo-2-5f0c32cfbb326a3e230dab998b48335244701c4a.tar.bz2 gentoo-2-5f0c32cfbb326a3e230dab998b48335244701c4a.zip |
Security bump, bug #357057
(Portage version: 2.1.9.42/cvs/Linux x86_64)
Diffstat (limited to 'www-client/seamonkey-bin')
-rw-r--r-- | www-client/seamonkey-bin/ChangeLog | 9 | ||||
-rw-r--r-- | www-client/seamonkey-bin/seamonkey-bin-2.0.12.ebuild | 82 |
2 files changed, 89 insertions, 2 deletions
diff --git a/www-client/seamonkey-bin/ChangeLog b/www-client/seamonkey-bin/ChangeLog index 8c51b20eb756..a97e12978a43 100644 --- a/www-client/seamonkey-bin/ChangeLog +++ b/www-client/seamonkey-bin/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for www-client/seamonkey-bin -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.92 2010/12/11 10:37:22 maekke Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.93 2011/03/06 01:27:21 anarchy Exp $ + +*seamonkey-bin-2.0.12 (06 Mar 2011) + + 06 Mar 2011; Jory A. Pratt <anarchy@gentoo.org> +seamonkey-bin-2.0.12.ebuild: + Security bump, bug #357057 11 Dec 2010; Markus Meier <maekke@gentoo.org> seamonkey-bin-2.0.11.ebuild: x86 stable, bug #348316 diff --git a/www-client/seamonkey-bin/seamonkey-bin-2.0.12.ebuild b/www-client/seamonkey-bin/seamonkey-bin-2.0.12.ebuild new file mode 100644 index 000000000000..a4c9d5815a12 --- /dev/null +++ b/www-client/seamonkey-bin/seamonkey-bin-2.0.12.ebuild @@ -0,0 +1,82 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.0.12.ebuild,v 1.1 2011/03/06 01:27:21 anarchy Exp $ + +inherit eutils mozilla-launcher multilib + +MY_PV="${PV/_alpha/a}" +MY_P="${PN}-${MY_PV}" + +DESCRIPTION="Mozilla Application Suite - web browser, email, HTML editor, IRC" +SRC_URI="http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/${MY_PV}/linux-i686/en-US/seamonkey-${MY_PV}.tar.bz2" +HOMEPAGE="http://www.seamonkey-project.org/" +RESTRICT="strip" +QA_EXECSTACK="opt/seamonkey/*" + +KEYWORDS="-* ~amd64 ~x86" +SLOT="0" +LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )" +IUSE="" + +DEPEND="app-arch/unzip" +RDEPEND="dev-libs/dbus-glib + x11-libs/libXrender + x11-libs/libXt + x11-libs/libXmu + x86? ( + >=x11-libs/gtk+-2.2 + >=media-libs/alsa-lib-1.0.16 + ) + amd64? ( + >=app-emulation/emul-linux-x86-baselibs-20081109 + >=app-emulation/emul-linux-x86-gtklibs-20081109 + >=app-emulation/emul-linux-x86-soundlibs-20081109 + ) + !<www-client/seamonkey-bin-2" + +S="${WORKDIR}/seamonkey" + +pkg_setup() { + # This is a binary x86 package => ABI=x86 + # Please keep this in future versions + # Danny van Dyk <kugelfang@gentoo.org> 2005/03/26 + has_multilib_profile && ABI="x86" +} + +src_install() { + declare MOZILLA_FIVE_HOME=/opt/seamonkey + + # Install seamonkey in /opt + dodir ${MOZILLA_FIVE_HOME%/*} + mv "${S}" "${D}${MOZILLA_FIVE_HOME}" + + # Create /usr/bin/seamonkey-bin + dodir /usr/bin/ + cat <<EOF >"${D}"/usr/bin/seamonkey-bin +#!/bin/sh +unset LD_PRELOAD +exec /opt/seamonkey/seamonkey "\$@" +EOF + fperms 0755 /usr/bin/seamonkey-bin + + # Install icon and .desktop for menu entry + doicon "${FILESDIR}/icon/${PN}.png" + domenu "${FILESDIR}/icon/${PN}.desktop" +} + +pkg_preinst() { + declare MOZILLA_FIVE_HOME=/opt/seamonkey + + # Remove entire installed instance to prevent all kinds of + # problems... see bug 44772 for example + rm -rf "${ROOT}${MOZILLA_FIVE_HOME}" +} + +pkg_postinst() { + use amd64 && einfo "NB: You just installed a 32-bit seamonkey" + + einfo + einfo "If you want/need native language support please download" + einfo "and install the language pack that you need from :" + einfo "http://releases.mozilla.org/pub/mozilla.org/seamonkey/releases/${MY_PV}/langpack/" +} |