diff options
author | Raúl Porcel <armin76@gentoo.org> | 2007-07-30 18:07:50 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2007-07-30 18:07:50 +0000 |
commit | baad4689d8f46b066b213ecf2b1699c72e60a9c4 (patch) | |
tree | f1485c963efe239a441844d520f9558c2c6130d1 /x11-plugins | |
parent | Version bump (diff) | |
download | gentoo-2-baad4689d8f46b066b213ecf2b1699c72e60a9c4.tar.gz gentoo-2-baad4689d8f46b066b213ecf2b1699c72e60a9c4.tar.bz2 gentoo-2-baad4689d8f46b066b213ecf2b1699c72e60a9c4.zip |
Version bump
(Portage version: 2.1.3_rc9)
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.12 | 3 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.1.6.12.ebuild | 38 |
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog index 477d20b8b61c..f740eeaebb45 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.51 2007/07/28 19:55:30 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.52 2007/07/30 18:07:50 armin76 Exp $ + +*noscript-1.1.6.12 (30 Jul 2007) + + 30 Jul 2007; Raúl Porcel <armin76@gentoo.org> +noscript-1.1.6.12.ebuild: + Version bump *noscript-1.1.6.11 (28 Jul 2007) diff --git a/x11-plugins/noscript/files/digest-noscript-1.1.6.12 b/x11-plugins/noscript/files/digest-noscript-1.1.6.12 new file mode 100644 index 000000000000..56ff03b531ac --- /dev/null +++ b/x11-plugins/noscript/files/digest-noscript-1.1.6.12 @@ -0,0 +1,3 @@ +MD5 16a431f3aa00962c37f2c40c08408be7 noscript-1.1.6.12.xpi 205644 +RMD160 52b3201faac34c419a948844dc083e71e4e52d65 noscript-1.1.6.12.xpi 205644 +SHA256 c8d34fe686172005d8c71623456e5e5d674b0f08ce34af1e0fcfd077b25f1bb7 noscript-1.1.6.12.xpi 205644 diff --git a/x11-plugins/noscript/noscript-1.1.6.12.ebuild b/x11-plugins/noscript/noscript-1.1.6.12.ebuild new file mode 100644 index 000000000000..aaf94a75e4bc --- /dev/null +++ b/x11-plugins/noscript/noscript-1.1.6.12.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.12.ebuild,v 1.1 2007/07/30 18:07:50 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 +} |