diff options
author | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2021-12-07 11:02:24 +0100 |
---|---|---|
committer | Andrew Ammerlaan <andrewammerlaan@gentoo.org> | 2021-12-07 11:03:57 +0100 |
commit | bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994 (patch) | |
tree | 8c32a7b07a17a4c5ebf6fed395a23c8ea0098611 /net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild | |
parent | media-video/droidcam: cleanup old (diff) | |
download | gentoo-bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994.tar.gz gentoo-bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994.tar.bz2 gentoo-bb9a5774f1bc70d9a2d4714f9316cf6cde0cd994.zip |
net-im/rocketchat-desktop-bin: add version 3.7.0
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
Diffstat (limited to 'net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild')
-rw-r--r-- | net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild new file mode 100644 index 000000000000..46fc3d26d958 --- /dev/null +++ b/net-im/rocketchat-desktop-bin/rocketchat-desktop-bin-3.7.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 2019-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit rpm xdg + +DESCRIPTION="The Ultimate Open Source Web Chat Platform" +HOMEPAGE="https://rocket.chat" +SRC_URI="https://github.com/RocketChat/Rocket.Chat.Electron/releases/download/${PV}/rocketchat-${PV}.x86_64.rpm" + +KEYWORDS="-* ~amd64" +LICENSE="MIT" +SLOT="0" + +RDEPEND=" + app-accessibility/at-spi2-atk:2 + dev-libs/atk + dev-libs/expat + dev-libs/libappindicator + dev-libs/nspr + dev-libs/nss + media-fonts/noto-emoji + media-libs/alsa-lib + net-print/cups + x11-libs/cairo + x11-libs/gdk-pixbuf:2 + x11-libs/gtk+:3 + x11-libs/libnotify + x11-libs/libxcb + x11-libs/libX11 + x11-libs/libXcomposite + x11-libs/libXcursor + x11-libs/libXdamage + x11-libs/libXext + x11-libs/libXfixes + x11-libs/libXi + x11-libs/libxkbcommon + x11-libs/libXrandr + x11-libs/libXrender + x11-libs/libXtst + x11-libs/libXScrnSaver + x11-libs/pango +" + +QA_PREBUILT="/opt/Rocket.Chat/*" + +S="${WORKDIR}" + +src_install() { + # remove files useless for Gentoo + rm -r usr/lib || die + mv "${S}"/* "${ED}" || die +} |