Overlay/net-im/jitsi/jitsi-2.11.5633.ebuild

54 lines
1.1 KiB
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit java-pkg-2 java-ant-2
DESCRIPTION="Secure IM communicator that supports SIP, XMPP, AIM/ICQ, Windows Live, Yahoo"
HOMEPAGE="https://jitsi.org/"
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV##*.}.zip -> jitsi-${PV}.zip"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
CDEPEND="
sys-apps/dbus
x11-libs/libX11
x11-libs/gtk+:*
x11-libs/libXScrnSaver"
DEPEND="virtual/jdk:1.8
${CDEPEND}"
RDEPEND="${DEPEND}
${CDEPEND}
!net-im/jitsi-bin
virtual/jre"
EANT_BUILD_TARGET="rebuild"
S="${WORKDIR}/${PN}-${PV##*.}"
src_prepare() {
cp lib/accounts.properties.template lib/accounts.properties
eapply_user
}
src_install() {
#cleanup
rm -r lib/{installer-exclude,native/freebsd*,native/mac,native/windows*,os-specific/mac}
#resources/install/generic/installer-generic.xml
insinto "/usr/share/${PN}"
doins -r {lib,sc-bundles}
doins ./resources/install/generic/run.sh
fperms +x /usr/share/${PN}/run.sh
newbin - ${PN} <<-EOF
#!/bin/sh
cd /usr/share/jitsi
./run.sh >/dev/null 2>&1 &
EOF
}