summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2007-09-05 14:23:23 +0000
committerRaúl Porcel <armin76@gentoo.org>2007-09-05 14:23:23 +0000
commit102a71b8ff451ff381b9221ccc0c15176d2623c2 (patch)
treedc0b3ace847af22692e55f1b56597af57a85cfd4 /x11-plugins
parentStable on amd64 wrt security bug #189253 (diff)
downloadgentoo-2-102a71b8ff451ff381b9221ccc0c15176d2623c2.tar.gz
gentoo-2-102a71b8ff451ff381b9221ccc0c15176d2623c2.tar.bz2
gentoo-2-102a71b8ff451ff381b9221ccc0c15176d2623c2.zip
Version bump
(Portage version: 2.1.2.12)
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/noscript/ChangeLog7
-rw-r--r--x11-plugins/noscript/files/digest-noscript-1.1.6.253
-rw-r--r--x11-plugins/noscript/noscript-1.1.6.25.ebuild38
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog
index 5c025bd5ffa5..f5d3ba9c540b 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.60 2007/09/02 11:23:44 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.61 2007/09/05 14:23:23 armin76 Exp $
+
+*noscript-1.1.6.25 (05 Sep 2007)
+
+ 05 Sep 2007; Raúl Porcel <armin76@gentoo.org> +noscript-1.1.6.25.ebuild:
+ Version bump
02 Sep 2007; Raúl Porcel <armin76@gentoo.org> noscript-1.1.6.12.ebuild:
alpha/ia64/x86 stable
diff --git a/x11-plugins/noscript/files/digest-noscript-1.1.6.25 b/x11-plugins/noscript/files/digest-noscript-1.1.6.25
new file mode 100644
index 000000000000..abb117bf2bf0
--- /dev/null
+++ b/x11-plugins/noscript/files/digest-noscript-1.1.6.25
@@ -0,0 +1,3 @@
+MD5 b8c7c024adba1ff9177d56d68ff4477f noscript-1.1.6.25.xpi 208227
+RMD160 ea7a6cf2bbaeeac3f81f588b861123adb0f9339b noscript-1.1.6.25.xpi 208227
+SHA256 c67177518902e7bf8d9517e4529768b07cced84cc6a9d6a5889778a063076f32 noscript-1.1.6.25.xpi 208227
diff --git a/x11-plugins/noscript/noscript-1.1.6.25.ebuild b/x11-plugins/noscript/noscript-1.1.6.25.ebuild
new file mode 100644
index 000000000000..be14c1602115
--- /dev/null
+++ b/x11-plugins/noscript/noscript-1.1.6.25.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.25.ebuild,v 1.1 2007/09/05 14:23:23 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
+}