blob: 2cabea5cf6dcf35f34ea436bf16d97f2f037e1c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-plugins/noscript/noscript-1.8.8.ebuild,v 1.1 2009/07/21 15:05:38 nirbheek 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
}
|