tamper-data: fixed dependancy

This commit is contained in:
Zero_Chaos 2010-09-07 15:22:39 +00:00
parent 9c82b82074
commit f2728335c4
2 changed files with 45 additions and 0 deletions

View file

@ -1,3 +1,4 @@
AUX tamper_data-10.1.0-fx.patch 412 RMD160 19d518e5046a52b722fb5f85c39ba09b3baf048b SHA1 67c4b23ae6127b42052cf4bf03e2978df8efd6ff SHA256 3f1fa8ce0a8edbb557a5e226a16ad6d793738a42ce8e7be15052b5c14f554a47
DIST tamper_data-10.1.0-fx.xpi 84175 RMD160 800472ba8611dbacb09915f85246474e1cfa53d0 SHA1 09027a308cdc23e7c245896b331e9d6f859107d1 SHA256 80a1a7440735155ae90ab82c0b9f7c527b9a5dff2886a90498cd6adf4afb9724
EBUILD tamper-data-10.1.0-r1.ebuild 1058 RMD160 9e23de87f9d71190ed1ccf9c09fba7f454965514 SHA1 4e5e5b7eedf0f358dea135dd4381293577c93bfd SHA256 ae79aadc3105ee9a2d38d0a3db6ad07ba83f861b67a66cd65073ff415a27ed8b
EBUILD tamper-data-10.1.0-r2.ebuild 1042 RMD160 57d70a45594fbd38d164241fae818a176e89176a SHA1 9050724eecc850b39f9cd9dcdf2afcf3838a76c0 SHA256 ef91a5f037c048003cf9308387791d42bf99255ddc652c565e6731dfceac1bbf

View file

@ -0,0 +1,44 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit mozextension-2 multilib eutils
MY_P="${PN/-/_}-${PV}-fx"
DESCRIPTION="A Firefox extensions from the firecat framework."
HOMEPAGE="http://www.security-database.com/toolswatch/FireCAT-Firefox-Catalog-of,302.html"
SRC_URI="https://addons.mozilla.org/en-US/firefox/downloads/file/33806/${MY_P}.xpi"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="|| (
>=www-client/firefox-bin-3.0.0
>=www-client/firefox-3.0.0
)"
DEPEND="${RDEPEND}"
S="${WORKDIR}"
src_unpack() {
xpi_unpack $A
epatch "${FILESDIR}/${MY_P}.patch"
}
src_compile () {
einfo "Nothing to compile"
}
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}/${MY_P}"
fi
if has_version '>=www-client/mozilla-firefox-bin-1.5.0.7'; then
MOZILLA_FIVE_HOME="/opt/firefox"
xpi_install "${S}/${MY_P}"
fi
}