diff options
author | Henning Schild <henning@hennsch.de> | 2018-08-27 20:52:49 +0200 |
---|---|---|
committer | Mikle Kolyada <zlogene@gentoo.org> | 2018-08-30 09:21:53 +0300 |
commit | a424e5bd987e15c5c7e482a510d70808b4ce3cd8 (patch) | |
tree | 61bf2ae880797fdfb46bb4e93b15d19860ca8b54 /net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild | |
parent | media-libs/openjpeg: stable 1.5.2-r1 for hppa, bug #663970 (diff) | |
download | gentoo-a424e5bd987e15c5c7e482a510d70808b4ce3cd8.tar.gz gentoo-a424e5bd987e15c5c7e482a510d70808b4ce3cd8.tar.bz2 gentoo-a424e5bd987e15c5c7e482a510d70808b4ce3cd8.zip |
net-im/telegram-desktop-bin: Version bump to 1.3.14
Signed-off-by: Henning Schild <henning@hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/9711
Diffstat (limited to 'net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild')
-rw-r--r-- | net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild new file mode 100644 index 000000000000..11ccb634fcf5 --- /dev/null +++ b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.3.14.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit desktop gnome2-utils xdg + +DESCRIPTION="Official desktop client for Telegram (binary package)" +HOMEPAGE="https://desktop.telegram.org" +SRC_URI=" + https://github.com/telegramdesktop/tdesktop/archive/v${PV}.tar.gz -> tdesktop-${PV}.tar.gz + amd64? ( https://updates.tdesktop.com/tlinux/tsetup.${PV}.tar.xz ) + x86? ( https://updates.tdesktop.com/tlinux32/tsetup32.${PV}.tar.xz ) +" + +LICENSE="telegram" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +QA_PREBUILT="usr/lib/${PN}/Telegram" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/gobject-introspection + >=sys-apps/dbus-1.4.20 + x11-libs/libX11 + >=x11-libs/libxcb-1.10[xkb] +" + +S="${WORKDIR}/Telegram" + +src_install() { + exeinto /usr/lib/${PN} + doexe "Telegram" + newbin "${FILESDIR}"/${PN}-r1 "telegram-desktop" + + local icon_size + for icon_size in 16 32 48 64 128 256 512; do + newicon -s "${icon_size}" \ + "${WORKDIR}/tdesktop-${PV}/Telegram/Resources/art/icon${icon_size}.png" \ + telegram-desktop.png + done + + domenu "${WORKDIR}/tdesktop-${PV}"/lib/xdg/telegramdesktop.desktop +} + +pkg_preinst() { + xdg_pkg_preinst +} + +pkg_postinst() { + xdg_pkg_postinst + gnome2_icon_cache_update +} + +pkg_postrm() { + xdg_pkg_postrm + gnome2_icon_cache_update +} |