mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-18 12:51:02 +02:00
jitsi: secure IM which supports video conf calls (as a main feature to me)
This commit is contained in:
parent
5b8c51c182
commit
4edfe1be2a
2 changed files with 40 additions and 0 deletions
3
net-im/jitsi-bin/Manifest
Normal file
3
net-im/jitsi-bin/Manifest
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
DIST jitsi-2.0-4506.10553.i386.rpm 20803001 SHA256 8cbf18a451eab7e497b1c8b2231fa2dffd274b8e08d81f1cd64262e6d4b4998c SHA512 a2aac684071221cdff47ac7207656faec0feea38ec255be73265a803feafbe5645933de0908b492b44158eb2918f3c383d1e0abf867b56b9b9aedf2a3f897791 WHIRLPOOL 7bec4f8ec90bc575493e2deba8eef261f25fa1b2c57dbd8b299a33a2cc8b75709ab12d3d1cd842d11461dcb2bd163e01bd9c485d000deda32fd171967f12a7be
|
||||
DIST jitsi-2.0-4506.10553.x86_64.rpm 20771816 SHA256 2eaa2df50f43194f3b0566957ac7164831f00e9079926df84ce2eb2b0c8d1a34 SHA512 9b6faedaadbe6d3c668b6fcaa9fe06924ee8fd690f2d46312ae38efd6180f03b342d44e4138e75af3230f8ee46070e80de22c594951d3381f2ce88cbe9f0220d WHIRLPOOL 3e303174b302b212550c73fe87bbce9696ed7629d31a9e52ca78adc005a19f7b757567e0caf290454330fad9a522deea88a5c89ad4350507b53e171713af9349
|
||||
EBUILD jitsi-bin-2.0.ebuild 740 SHA256 878604b665323107b2b6c44bbd70bff0b06fda1c88468e666952bc714834b08b SHA512 1bec71455c71ad54276c8c44b5188ea29410e6931cf4abc154fa693bad5f8bca31827f78f5c288e4264c372d9b1cad98b6160ca392855cfedb8a28aa7399a862 WHIRLPOOL 7d151f688bda2fcc14bb884e9759257a6af6e551e53e7c26df56c8088848c646c85f4ddd5358af78a577d70db401b6be4c28b7d98aec067283c77fb2e98514ec
|
||||
37
net-im/jitsi-bin/jitsi-bin-2.0.ebuild
Normal file
37
net-im/jitsi-bin/jitsi-bin-2.0.ebuild
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI=4
|
||||
inherit rpm
|
||||
|
||||
DESCRIPTION="Secure IM communicator that supports SIP, XMPP/Jabber, AIM/ICQ, Windows Live, Yahoo"
|
||||
HOMEPAGE="https://jitsi.org/"
|
||||
SRC_URI="
|
||||
x86? ( https://download.jitsi.org/jitsi/rpm/jitsi-${PV}-4506.10553.i386.rpm )
|
||||
amd64? ( https://download.jitsi.org/jitsi/rpm/jitsi-${PV}-4506.10553.x86_64.rpm )"
|
||||
|
||||
RESTRICT="strip"
|
||||
|
||||
LICENSE="LGPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| ( virtual/jre virtual/jdk )"
|
||||
DEPEND="${RDEPEND}
|
||||
app-arch/rpm2targz"
|
||||
|
||||
QA_PREBUILT="
|
||||
usr/share/jitsi/lib/native/*
|
||||
"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
rpm_unpack
|
||||
}
|
||||
|
||||
src_install() {
|
||||
cp -pPR "${S}/usr" "${D}"/
|
||||
}
|
||||
Loading…
Reference in a new issue