diff options
author | Victor Gaydov <victor@enise.org> | 2017-10-03 13:56:03 +0300 |
---|---|---|
committer | Amy Liffey <amynka@gentoo.org> | 2017-10-09 15:33:16 +0200 |
commit | f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d (patch) | |
tree | b38083f58f177ff879e290a39189ed897c15e9b4 /net-im | |
parent | kde-misc/ktexteditorpreviewplugin: version bump 0.2.0 (diff) | |
download | gentoo-f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d.tar.gz gentoo-f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d.tar.bz2 gentoo-f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d.zip |
net-im/telegram-desktop-bin: Don't rename desktop entry
Renaming desktop causes conflicts with the ~/.local desktop entry
created automatically by telegram desktop.
Bug: https://bugs.gentoo.org/620208
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/telegram-desktop-bin/telegram-desktop-bin-1.1.23-r1.ebuild | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/net-im/telegram-desktop-bin/telegram-desktop-bin-1.1.23-r1.ebuild b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.1.23-r1.ebuild new file mode 100644 index 000000000000..2de83b92ec61 --- /dev/null +++ b/net-im/telegram-desktop-bin/telegram-desktop-bin-1.1.23-r1.ebuild @@ -0,0 +1,58 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit eutils 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/bin/telegram-desktop" + +RDEPEND=" + dev-libs/glib:2 + dev-libs/gobject-introspection + >=sys-apps/dbus-1.4.20 + x11-libs/libX11 + >=x11-libs/libxcb-1.10[xkb] +" +DEPEND="" + +S="${WORKDIR}/Telegram" + +src_install() { + newbin "${S}/Telegram" 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 +} |