mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 19:11:57 +02:00
* Added httpfox
This commit is contained in:
parent
a958c0d826
commit
02d9196c18
2 changed files with 46 additions and 0 deletions
2
x11-plugins/httpfox/Manifest
Normal file
2
x11-plugins/httpfox/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST httpfox-0.8.2-fx.xpi 108817 RMD160 44eb920d278fa5bd6ad6b49d778313bedabe9217 SHA1 4df505258ecb1ce33a56fe03e5b525b524818b9e SHA256 492afe20d774ee72e01d28828e8424f639f40f8492270ffc9f384cb5e06a448c
|
||||
EBUILD httpfox-0.8.2.ebuild 1046 RMD160 b1ea84741f541274840de3b45757a87ac1e6cb03 SHA1 aaf021a22dfbceb3253343a52ea9f73278c267b8 SHA256 d95f6b7484fe46bb588395b5b70a9e5764f4ab786712c7d29204cf54bd8d874d
|
||||
44
x11-plugins/httpfox/httpfox-0.8.2.ebuild
Normal file
44
x11-plugins/httpfox/httpfox-0.8.2.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit mozextension multilib eutils
|
||||
|
||||
MY_P="${P}-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/28580/${MY_P}.xpi"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| (
|
||||
>=www-client/mozilla-firefox-bin-3.0.0
|
||||
>=www-client/mozilla-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
|
||||
}
|
||||
Loading…
Reference in a new issue