mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-17 04:10:58 +02:00
showip: fixed dependancy
This commit is contained in:
parent
6f7361f263
commit
a117cb570c
2 changed files with 45 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
AUX showip-0.8.17-fx+mz+sm.patch 360 RMD160 4c1869152d6d8a9c56a21a8b3383ca31405dbe43 SHA1 45d46903dc70ec3036425a61f33d90b5f3a6ce55 SHA256 84dac4a09700ca85552ba051bf98a08a380a1b1c038735c19d98091eca45d597
|
||||
DIST showip-0.8.17-fx+mz+sm.xpi 26235 RMD160 b52fe35892e56b3b9e3e94088e82f018bc873660 SHA1 103f63eb4b6a779c02eb6d7e4fdd03537200c249 SHA256 a2d16c6e05b1789218aa529a6886bb45244e45043fb421fed0a42d9a5a14c2bb
|
||||
EBUILD showip-0.8.17-r1.ebuild 1046 RMD160 b26f61319979c7a00dd1a36ba710e8ffe19df128 SHA1 7890d7b63ad3676f20a42af7e863779bbb174469 SHA256 2925ef409c76f3e92affef24b53be4669ce6b08d9e538478c647a0b61b107b7f
|
||||
EBUILD showip-0.8.17-r2.ebuild 1030 RMD160 02a3858e185f3463ed8ed1f278f33c667b52a4f4 SHA1 85950c25355cb6d877e171f1d64ef245c6c2e8e7 SHA256 7ee8fd8cd2e51545cdcdb96e2604ccb592df592967e42797e042d8ad5b8d6241
|
||||
|
|
|
|||
44
x11-plugins/showip/showip-0.8.17-r2.ebuild
Normal file
44
x11-plugins/showip/showip-0.8.17-r2.ebuild
Normal 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="${P}-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="http://releases.mozilla.org/pub/mozilla.org/addons/590/${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
|
||||
}
|
||||
Loading…
Reference in a new issue