diff options
author | Robert Siebeck <gentoo.bugzilla.2012@r123.de> | 2018-08-07 10:44:40 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2018-08-08 00:17:32 +0200 |
commit | 743f684bee0079bd7530d7290dc620c1ee6d440a (patch) | |
tree | df1c9bfa0841b8dc967d3ef4d5b7474eed9eb89c /net-im/signal-desktop-bin | |
parent | sys-power/acpi_call: version bump to 3.17. (diff) | |
download | gentoo-743f684bee0079bd7530d7290dc620c1ee6d440a.tar.gz gentoo-743f684bee0079bd7530d7290dc620c1ee6d440a.tar.bz2 gentoo-743f684bee0079bd7530d7290dc620c1ee6d440a.zip |
net-im/signal-desktop-bin: version bump to 1.15.2.
Closes: https://github.com/gentoo/gentoo/pull/9480
Diffstat (limited to 'net-im/signal-desktop-bin')
-rw-r--r-- | net-im/signal-desktop-bin/Manifest | 1 | ||||
-rw-r--r-- | net-im/signal-desktop-bin/signal-desktop-bin-1.15.2.ebuild | 64 |
2 files changed, 65 insertions, 0 deletions
diff --git a/net-im/signal-desktop-bin/Manifest b/net-im/signal-desktop-bin/Manifest index 5a3d48638185..8922d3b5cd66 100644 --- a/net-im/signal-desktop-bin/Manifest +++ b/net-im/signal-desktop-bin/Manifest @@ -1 +1,2 @@ DIST signal-desktop_1.15.0_amd64.deb 70034852 BLAKE2B 50a806e5467a4d84b4a514787bfa5349424a71535eff13563eecea31c227eaa4ca384b4fe9c3af6fc2ba1dec02f834dbb8e92894d0f42e7a406c37f3c18bc494 SHA512 f7a8fc5387c0980cb944ec5f4d2d38ef21234b945914c6655494f2e4b0a80af1599967816ec61f6d06b48bd73f1074a87d1d15410b5336a1c9112cc8c44e9704 +DIST signal-desktop_1.15.2_amd64.deb 70027630 BLAKE2B 28feb05c3fc77cd430de99db823b5a0d8dcad88012ca27be847841a85e976e5b260f4db22b7061be991945399474397f88cd8990ac8295b0a35985777805f239 SHA512 cd0c10398e4df80849ffbf0ff4a5a7e1be832197fb19f5091798cf141cb9580fd64ba2c6353d87b26fbab6cfab53cfdcf18f7a2e4b73770506d615fac2b2a640 diff --git a/net-im/signal-desktop-bin/signal-desktop-bin-1.15.2.ebuild b/net-im/signal-desktop-bin/signal-desktop-bin-1.15.2.ebuild new file mode 100644 index 000000000000..078b15d4bb38 --- /dev/null +++ b/net-im/signal-desktop-bin/signal-desktop-bin-1.15.2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +MY_PN="${PN/-bin/}" + +inherit gnome2-utils pax-utils unpacker xdg-utils + +DESCRIPTION="Allows you to send and receive messages of Signal Messenger on your computer" +HOMEPAGE="https://signal.org/ + https://github.com/WhisperSystems/Signal-Desktop" +SRC_URI="https://updates.signal.org/desktop/apt/pool/main/s/${MY_PN}/${MY_PN}_${PV}_amd64.deb" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +RESTRICT="bindist mirror" + +RDEPEND=" + gnome-base/gconf:2 + dev-libs/nss + x11-libs/gtk+:3[X] + x11-libs/libXScrnSaver + x11-libs/libXtst + net-print/cups + " + +QA_PREBUILT="opt/Signal/signal-desktop + opt/Signal/libnode.so + opt/Signal/libffmpeg.so" + +S="${WORKDIR}" + +src_prepare(){ + default + sed -e 's|\("/opt/Signal/signal-desktop"\)|\1 --start-in-tray|g' \ + -i usr/share/applications/signal-desktop.desktop || die +} + +src_install() { + insinto / + dodoc -r usr/share/doc/signal-desktop/. + doins -r opt + insinto /usr/share + doins -r usr/share/applications + doins -r usr/share/icons + fperms +x /opt/Signal/signal-desktop + pax-mark m opt/Signal/signal-desktop + + dosym ../../opt/Signal/${MY_PN} /usr/bin/${MY_PN} +} + +pkg_postinst() { + xdg_desktop_database_update + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + gnome2_icon_cache_update +} |