diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-09-17 13:18:27 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-09-17 13:18:27 +0000 |
commit | 8a162748e51f838eae56528d3c9352b2af1c3afe (patch) | |
tree | f2be2f28e20b85606e9f45383a3bcff5f0f050d4 /x11-plugins | |
parent | Initial add, bug#156431 (diff) | |
download | gentoo-2-8a162748e51f838eae56528d3c9352b2af1c3afe.tar.gz gentoo-2-8a162748e51f838eae56528d3c9352b2af1c3afe.tar.bz2 gentoo-2-8a162748e51f838eae56528d3c9352b2af1c3afe.zip |
Version bump
(Portage version: 2.1.3.9)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/noscript/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/noscript/files/digest-noscript-1.1.7.2 | 3 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.1.7.2.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog index f5d3ba9c540b..4457b306753b 100644 --- a/x11-plugins/noscript/ChangeLog +++ b/x11-plugins/noscript/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-plugins/noscript # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.61 2007/09/05 14:23:23 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.62 2007/09/17 13:18:26 armin76 Exp $ + +*noscript-1.1.7.2 (17 Sep 2007) + + 17 Sep 2007; Raúl Porcel <armin76@gentoo.org> +noscript-1.1.7.2.ebuild: + Version bump *noscript-1.1.6.25 (05 Sep 2007) diff --git a/x11-plugins/noscript/files/digest-noscript-1.1.7.2 b/x11-plugins/noscript/files/digest-noscript-1.1.7.2 new file mode 100644 index 000000000000..7423ef578b2f --- /dev/null +++ b/x11-plugins/noscript/files/digest-noscript-1.1.7.2 @@ -0,0 +1,3 @@ +MD5 48b9df0761ddd00282d737b456940dfb noscript-1.1.7.2.xpi 227188 +RMD160 3f324133e2ddb9886cfa09fc92ee3d5978353565 noscript-1.1.7.2.xpi 227188 +SHA256 bfdfa7e0059fb5772431c500a574e37d01d47f41224be941325b601fb8552d79 noscript-1.1.7.2.xpi 227188 diff --git a/x11-plugins/noscript/noscript-1.1.7.2.ebuild b/x11-plugins/noscript/noscript-1.1.7.2.ebuild new file mode 100644 index 000000000000..e581006d2c49 --- /dev/null +++ b/x11-plugins/noscript/noscript-1.1.7.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/noscript-1.1.7.2.ebuild,v 1.1 2007/09/17 13:18:26 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 +} |