diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-07-08 17:40:21 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-07-08 17:40:21 +0000 |
commit | 4a087c1779cfbd1dd6888a3dae6444791cf8710f (patch) | |
tree | 36a867616a354f95ddc2fe57afc71544a6c6fc90 /x11-plugins | |
parent | New version from ghc-6.6.1 extralibs collection. (diff) | |
download | gentoo-2-4a087c1779cfbd1dd6888a3dae6444791cf8710f.tar.gz gentoo-2-4a087c1779cfbd1dd6888a3dae6444791cf8710f.tar.bz2 gentoo-2-4a087c1779cfbd1dd6888a3dae6444791cf8710f.zip |
Version bump
(Portage version: 2.1.3_rc6)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/noscript/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/noscript/files/digest-noscript-1.1.6.02 | 3 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.1.6.02.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog index 6e7e27a7d258..dd7c8bb03584 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.47 2007/07/06 10:47:50 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.48 2007/07/08 17:40:21 armin76 Exp $ + +*noscript-1.1.6.02 (08 Jul 2007) + + 08 Jul 2007; Raúl Porcel <armin76@gentoo.org> +noscript-1.1.6.02.ebuild: + Version bump *noscript-1.1.5.07 (06 Jul 2007) diff --git a/x11-plugins/noscript/files/digest-noscript-1.1.6.02 b/x11-plugins/noscript/files/digest-noscript-1.1.6.02 new file mode 100644 index 000000000000..6566aab569bc --- /dev/null +++ b/x11-plugins/noscript/files/digest-noscript-1.1.6.02 @@ -0,0 +1,3 @@ +MD5 29482f93de11443b69766d13d7e1e1f3 noscript-1.1.6.02.xpi 203161 +RMD160 6ac23d15e82ea926a7dc9c0eec207818ff4a5c4d noscript-1.1.6.02.xpi 203161 +SHA256 feda06cf3ed00d03faae535f36b41f6a506102a940916e777462547fb002ba49 noscript-1.1.6.02.xpi 203161 diff --git a/x11-plugins/noscript/noscript-1.1.6.02.ebuild b/x11-plugins/noscript/noscript-1.1.6.02.ebuild new file mode 100644 index 000000000000..57ea497ec5ce --- /dev/null +++ b/x11-plugins/noscript/noscript-1.1.6.02.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.6.02.ebuild,v 1.1 2007/07/08 17:40:21 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 +} |