diff --git a/x11-plugins/showip/Manifest b/x11-plugins/showip/Manifest new file mode 100644 index 000000000..af01ab4fe --- /dev/null +++ b/x11-plugins/showip/Manifest @@ -0,0 +1,2 @@ +DIST showip-0.8.10r22b0272-fx+mz+sm.xpi 24548 RMD160 30bfa47d8b1da48e7aba09c52c95795e1052e4c3 SHA1 8eb1f88927ddb7e560304f05bccb4133a4029361 SHA256 b8eb70c571d10aa9677da6b63226a33fb0fae78982561c85bc1eacd10a3432e6 +EBUILD showip-0.8.10.ebuild 1060 RMD160 a74b7fe281a9f8cedbffb1ac4c2fb00a4ecd1335 SHA1 5d2a319ad9612dd6a83917f552cdd53708bd597c SHA256 e5c4074cb14233e16931b8513f0915aab75cea5e80900a020f68a99db0617a68 diff --git a/x11-plugins/showip/showip-0.8.10.ebuild b/x11-plugins/showip/showip-0.8.10.ebuild new file mode 100644 index 000000000..29eba1619 --- /dev/null +++ b/x11-plugins/showip/showip-0.8.10.ebuild @@ -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}r22b0272-fx+mz+sm" +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/41571/${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 +}