summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaúl Porcel <armin76@gentoo.org>2008-01-15 19:34:50 +0000
committerRaúl Porcel <armin76@gentoo.org>2008-01-15 19:34:50 +0000
commite45ab5ad1ecf178d001a410734a2370eeec85fd5 (patch)
treeb81612778f925542d508e2012dd5b18aa3e4b61b /x11-plugins
parentfixed conflict with FEATURES variable - thanks to Jetchko Jekov for spotting it (diff)
downloadgentoo-2-e45ab5ad1ecf178d001a410734a2370eeec85fd5.tar.gz
gentoo-2-e45ab5ad1ecf178d001a410734a2370eeec85fd5.tar.bz2
gentoo-2-e45ab5ad1ecf178d001a410734a2370eeec85fd5.zip
Version bump
(Portage version: 2.1.3.19)
Diffstat (limited to 'x11-plugins')
-rw-r--r--x11-plugins/noscript/ChangeLog7
-rw-r--r--x11-plugins/noscript/files/digest-noscript-1.2.93
-rw-r--r--x11-plugins/noscript/noscript-1.2.9.ebuild38
3 files changed, 47 insertions, 1 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog
index 5dde09e77072..429c71481a8d 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.82 2008/01/08 15:05:40 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.83 2008/01/15 19:34:49 armin76 Exp $
+
+*noscript-1.2.9 (15 Jan 2008)
+
+ 15 Jan 2008; Raúl Porcel <armin76@gentoo.org> +noscript-1.2.9.ebuild:
+ Version bump
*noscript-1.2.6 (08 Jan 2008)
diff --git a/x11-plugins/noscript/files/digest-noscript-1.2.9 b/x11-plugins/noscript/files/digest-noscript-1.2.9
new file mode 100644
index 000000000000..4b06ffe58e34
--- /dev/null
+++ b/x11-plugins/noscript/files/digest-noscript-1.2.9
@@ -0,0 +1,3 @@
+MD5 a44216d8656344c20684bd1e3f5061f5 noscript-1.2.9.xpi 251038
+RMD160 3e3ec842c521b844724b6332f47f695ffc6f95ad noscript-1.2.9.xpi 251038
+SHA256 415303859984af6724ddac11677b1c87f382883775529bbc7e8fd74608eecdc9 noscript-1.2.9.xpi 251038
diff --git a/x11-plugins/noscript/noscript-1.2.9.ebuild b/x11-plugins/noscript/noscript-1.2.9.ebuild
new file mode 100644
index 000000000000..f1a3a6012bcd
--- /dev/null
+++ b/x11-plugins/noscript/noscript-1.2.9.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.2.9.ebuild,v 1.1 2008/01/15 19:34:49 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
+}