diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2010-07-21 10:14:43 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2010-07-21 10:14:43 +0000 |
commit | 72559bd92404046e220ec67d95a7449675c643a9 (patch) | |
tree | 4e6d7ae4a1243847300808acd26a6912d86408e1 /www-client/seamonkey-bin | |
parent | Version bump. Removed old. (diff) | |
download | gentoo-2-72559bd92404046e220ec67d95a7449675c643a9.tar.gz gentoo-2-72559bd92404046e220ec67d95a7449675c643a9.tar.bz2 gentoo-2-72559bd92404046e220ec67d95a7449675c643a9.zip |
Version bump. Removed old.
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'www-client/seamonkey-bin')
-rw-r--r-- | www-client/seamonkey-bin/ChangeLog | 8 | ||||
-rw-r--r-- | www-client/seamonkey-bin/seamonkey-bin-2.0.6.ebuild (renamed from www-client/seamonkey-bin/seamonkey-bin-1.1.18.ebuild) | 42 |
2 files changed, 33 insertions, 17 deletions
diff --git a/www-client/seamonkey-bin/ChangeLog b/www-client/seamonkey-bin/ChangeLog index d76efc90273d..6f416d937609 100644 --- a/www-client/seamonkey-bin/ChangeLog +++ b/www-client/seamonkey-bin/ChangeLog @@ -1,6 +1,12 @@ # 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.77 2010/07/19 13:23:51 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/ChangeLog,v 1.78 2010/07/21 10:14:43 polynomial-c Exp $ + +*seamonkey-bin-2.0.6 (21 Jul 2010) + + 21 Jul 2010; Lars Wendler <polynomial-c@gentoo.org> + -seamonkey-bin-1.1.18.ebuild, +seamonkey-bin-2.0.6.ebuild: + Version bump. Removed old. 19 Jul 2010; Markos Chandras <hwoarang@gentoo.org> seamonkey-bin-2.0.5.ebuild: diff --git a/www-client/seamonkey-bin/seamonkey-bin-1.1.18.ebuild b/www-client/seamonkey-bin/seamonkey-bin-2.0.6.ebuild index ad494ee0d370..91d2c1821761 100644 --- a/www-client/seamonkey-bin/seamonkey-bin-1.1.18.ebuild +++ b/www-client/seamonkey-bin/seamonkey-bin-2.0.6.ebuild @@ -1,34 +1,38 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-1.1.18.ebuild,v 1.3 2009/09/29 22:23:41 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-client/seamonkey-bin/seamonkey-bin-2.0.6.ebuild,v 1.1 2010/07/21 10:14:43 polynomial-c 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/${PV}/seamonkey-${PV}.en-US.linux-i686.tar.gz" +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" +KEYWORDS="-* ~amd64 ~x86" SLOT="0" LICENSE="|| ( MPL-1.1 GPL-2 LGPL-2.1 )" IUSE="" DEPEND="app-arch/unzip" -RDEPEND="x11-libs/libXrender +RDEPEND="dev-libs/dbus-glib + x11-libs/libXrender x11-libs/libXt x11-libs/libXmu x86? ( >=x11-libs/gtk+-2.2 - =virtual/libstdc++-3.3 + >=media-libs/alsa-lib-1.0.16 ) amd64? ( - >=app-emulation/emul-linux-x86-baselibs-1.0 - >=app-emulation/emul-linux-x86-gtklibs-1.0 - app-emulation/emul-linux-x86-compat + >=app-emulation/emul-linux-x86-baselibs-20081109 + >=app-emulation/emul-linux-x86-gtklibs-20081109 + >=app-emulation/emul-linux-x86-soundlibs-20081109 ) - >=www-client/mozilla-launcher-1.56" + !<www-client/seamonkey-bin-2" S="${WORKDIR}/seamonkey" @@ -46,8 +50,14 @@ src_install() { dodir ${MOZILLA_FIVE_HOME%/*} mv "${S}" "${D}${MOZILLA_FIVE_HOME}" - # Install /usr/bin/seamonkey-bin - install_mozilla_launcher_stub seamonkey-bin ${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" @@ -64,9 +74,9 @@ pkg_preinst() { pkg_postinst() { use amd64 && einfo "NB: You just installed a 32-bit seamonkey" - update_mozilla_launcher_symlinks -} -pkg_postrm() { - update_mozilla_launcher_symlinks + 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/" } |