From 2d9575c6cd089634b51b5e27938e6774864c2230 Mon Sep 17 00:00:00 2001 From: Stefan Reimer Date: Mon, 22 Jul 2019 10:36:52 +0100 Subject: [PATCH] Add net-im/jitsi-bin from pentoo --- net-im/jitsi-bin/Manifest | 3 ++ net-im/jitsi-bin/jitsi-bin-2.11.5602.ebuild | 38 +++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 net-im/jitsi-bin/Manifest create mode 100644 net-im/jitsi-bin/jitsi-bin-2.11.5602.ebuild diff --git a/net-im/jitsi-bin/Manifest b/net-im/jitsi-bin/Manifest new file mode 100644 index 0000000..1334130 --- /dev/null +++ b/net-im/jitsi-bin/Manifest @@ -0,0 +1,3 @@ +DIST jitsi-2.11-5602.i686.rpm 46620136 BLAKE2B 529866cc875a0ab25e44c28d3a13ca50e4826a1b2b6cbf955f1a6fb4e3443df8a9dd56c6cb4247ce5bc60f13124fbe58d4a000909fbdac65aee34e3fa15c6521 SHA512 9c080eda0699241abd794a6f079be1adea2ca2032dee25927b364aa3ca3cd279fc7782c47678635f93924d6004e3f07ac3ab7bb1b19e5ffd939a06597126e2d1 +DIST jitsi-2.11-5602.x86_64.rpm 46622200 BLAKE2B 80fd79aa33fe3bb842267c2e21e0d8979c056c74bf7b5bd3e5b417c29fc2782d9cea30a29c3fd97ca6fc9e5aecef1d5c39288d29b6e3e282e053570e3d0d8c9f SHA512 dfe53d52789e4c12e00a26c8a8515a72f539a67305fbef2298c29c30d6d6e742d8fd3604117f5c25ef41a4825510e7d0605f5c250831befa17f020cd3413c1b7 +EBUILD jitsi-bin-2.11.5602.ebuild 742 BLAKE2B 4f82eed5c75cb6477bf8404968de185a9c890d925fb09e7d33db223764825aa3e606479ea77875e7c45939044d3d7240cc4e04f8502112f9274857bb98a2bc80 SHA512 f10f8a922b65ac0fb42757699ace32ed615846e5b0e2d755c1e6273f27a764f108c60c4033279ababd12306dfc0b661dcc3538d0d35f6161bc15e4e0e0a14c6e diff --git a/net-im/jitsi-bin/jitsi-bin-2.11.5602.ebuild b/net-im/jitsi-bin/jitsi-bin-2.11.5602.ebuild new file mode 100644 index 0000000..ffaf493 --- /dev/null +++ b/net-im/jitsi-bin/jitsi-bin-2.11.5602.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit rpm +MY_PV=$(ver_rs 2 -) + +DESCRIPTION="Secure IM communicator that supports SIP, XMPP, AIM/ICQ, Windows Live, Yahoo" +HOMEPAGE="https://jitsi.org/" +#https://download.jitsi.org/jitsi/nightly/rpm/ +SRC_URI=" + x86? ( https://download.jitsi.org/jitsi/nightly/rpm/jitsi-${MY_PV}.i686.rpm ) + amd64? ( https://download.jitsi.org/jitsi/nightly/rpm/jitsi-${MY_PV}.x86_64.rpm )" + +RESTRICT="strip" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=virtual/jre-1.7" + +QA_PREBUILT=" + usr/share/jitsi/lib/native/* +" + +S="${WORKDIR}" + +src_unpack() { + rpm_unpack +} + +src_install() { + cp -pPR "${S}/usr" "${D}"/ +}