diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-05-16 09:47:18 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-05-16 09:47:18 +0000 |
commit | 783f27008afd8d589ce16bfa14e29c9f8cb4ae92 (patch) | |
tree | 8588e62f1de20b2aaa998b1946ea8b8dd9559ae2 /x11-plugins | |
parent | Fix building on sparc, thanks to Friedrich Oslage on bug #217983 (diff) | |
download | gentoo-2-783f27008afd8d589ce16bfa14e29c9f8cb4ae92.tar.gz gentoo-2-783f27008afd8d589ce16bfa14e29c9f8cb4ae92.tar.bz2 gentoo-2-783f27008afd8d589ce16bfa14e29c9f8cb4ae92.zip |
Version bump
(Portage version: 2.1.4.4)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/noscript/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.6.5.ebuild | 38 |
2 files changed, 44 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog index ce3d9734de96..c3239c82e662 100644 --- a/x11-plugins/noscript/ChangeLog +++ b/x11-plugins/noscript/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/noscript # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.107 2008/05/02 13:35:21 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.108 2008/05/16 09:47:18 armin76 Exp $ + +*noscript-1.6.5 (16 May 2008) + + 16 May 2008; Raúl Porcel <armin76@gentoo.org> +noscript-1.6.5.ebuild: + Version bump 02 May 2008; Markus Meier <maekke@gentoo.org> noscript-1.5.ebuild: amd64 stable, bug #212480 diff --git a/x11-plugins/noscript/noscript-1.6.5.ebuild b/x11-plugins/noscript/noscript-1.6.5.ebuild new file mode 100644 index 000000000000..2b9d5bdfc7c0 --- /dev/null +++ b/x11-plugins/noscript/noscript-1.6.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/noscript-1.6.5.ebuild,v 1.1 2008/05/16 09:47:18 armin76 Exp $ + +inherit mozextension multilib + +DESCRIPTION="Firefox plugin to disable javascript" +HOMEPAGE="http://noscript.net/" +SRC_URI="http://software.informaction.com/data/releases/${P}.xpi" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND="|| ( + >=www-client/mozilla-firefox-bin-1.5.0.7 + >=www-client/mozilla-firefox-1.5.0.7 +)" +DEPEND="${RDEPEND}" + +S=${WORKDIR} + +src_unpack() { + xpi_unpack "${P}".xpi +} + +src_install() { + declare MOZILLA_FIVE_HOME + if has_version '>=www-client/mozilla-firefox-1.5.0.7'; then + MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-firefox" + xpi_install "${S}"/"${P}" + fi + if has_version '>=www-client/mozilla-firefox-bin-1.5.0.7'; then + MOZILLA_FIVE_HOME="/opt/firefox" + xpi_install "${S}"/"${P}" + fi +} |