diff options
author | Raúl Porcel <armin76@gentoo.org> | 2008-12-28 19:06:50 +0000 |
---|---|---|
committer | Raúl Porcel <armin76@gentoo.org> | 2008-12-28 19:06:50 +0000 |
commit | 69e1ec00b46b3223aecb3ef986251888bbb9a970 (patch) | |
tree | 4df79b93fe71f69faf3e096df15d57f2c7ec72ae /x11-plugins/noscript | |
parent | Silent bump to ooo-build 3.0.0.3.6, also lots of other build fixes and cleanu... (diff) | |
download | gentoo-2-69e1ec00b46b3223aecb3ef986251888bbb9a970.tar.gz gentoo-2-69e1ec00b46b3223aecb3ef986251888bbb9a970.tar.bz2 gentoo-2-69e1ec00b46b3223aecb3ef986251888bbb9a970.zip |
alpha/arm/ia64/sparc/x86 stable, version bump
(Portage version: 2.1.4.5)
Diffstat (limited to 'x11-plugins/noscript')
-rw-r--r-- | x11-plugins/noscript/ChangeLog | 8 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.8.1.3.ebuild | 4 | ||||
-rw-r--r-- | x11-plugins/noscript/noscript-1.8.8.ebuild | 38 |
3 files changed, 47 insertions, 3 deletions
diff --git a/x11-plugins/noscript/ChangeLog b/x11-plugins/noscript/ChangeLog index 0dda21e866a2..51614fe6799c 100644 --- a/x11-plugins/noscript/ChangeLog +++ b/x11-plugins/noscript/ChangeLog @@ -1,6 +1,12 @@ # 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.117 2008/09/24 17:27:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/ChangeLog,v 1.118 2008/12/28 19:06:50 armin76 Exp $ + +*noscript-1.8.8 (28 Dec 2008) + + 28 Dec 2008; Raúl Porcel <armin76@gentoo.org> noscript-1.8.1.3.ebuild, + +noscript-1.8.8.ebuild: + alpha/arm/ia64/sparc/x86 stable, version bump *noscript-1.8.1.3 (24 Sep 2008) diff --git a/x11-plugins/noscript/noscript-1.8.1.3.ebuild b/x11-plugins/noscript/noscript-1.8.1.3.ebuild index d4ef642fdf50..7622b3512ce6 100644 --- a/x11-plugins/noscript/noscript-1.8.1.3.ebuild +++ b/x11-plugins/noscript/noscript-1.8.1.3.ebuild @@ -1,6 +1,6 @@ # 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.8.1.3.ebuild,v 1.1 2008/09/24 17:27:14 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/noscript/noscript-1.8.1.3.ebuild,v 1.2 2008/12/28 19:06:50 armin76 Exp $ inherit mozextension multilib @@ -10,7 +10,7 @@ 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" +KEYWORDS="alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 sparc x86" IUSE="" RDEPEND="|| ( diff --git a/x11-plugins/noscript/noscript-1.8.8.ebuild b/x11-plugins/noscript/noscript-1.8.8.ebuild new file mode 100644 index 000000000000..47fffc2bc4c4 --- /dev/null +++ b/x11-plugins/noscript/noscript-1.8.8.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.8.8.ebuild,v 1.1 2008/12/28 19:06: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 +} |