From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A492F1396D0 for ; Mon, 9 Oct 2017 13:36:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1087F2BC029; Mon, 9 Oct 2017 13:36:11 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E36B42BC029 for ; Mon, 9 Oct 2017 13:36:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D5D5C33C1EB for ; Mon, 9 Oct 2017 13:36:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24D118F66 for ; Mon, 9 Oct 2017 13:36:07 +0000 (UTC) From: "Amy Liffey" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Amy Liffey" Message-ID: <1507555996.f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d.amynka@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-im/telegram-desktop-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-im/telegram-desktop-bin/telegram-desktop-bin-1.1.23-r1.ebuild X-VCS-Directories: net-im/telegram-desktop-bin/ X-VCS-Committer: amynka X-VCS-Committer-Name: Amy Liffey X-VCS-Revision: f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d X-VCS-Branch: master Date: Mon, 9 Oct 2017 13:36:07 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2f359a79-ff40-4ee0-a93a-715c81dc4863 X-Archives-Hash: 6478e1da46493e36d97d7b7e1ce419f5 commit: f4e67c90f38db1a56dc68e9c1ef2e6b4ddf41e2d Author: Victor Gaydov enise org> AuthorDate: Tue Oct 3 10:56:03 2017 +0000 Commit: Amy Liffey gentoo org> CommitDate: Mon Oct 9 13:33:16 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e67c90 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 .../telegram-desktop-bin-1.1.23-r1.ebuild | 58 ++++++++++++++++++++++ 1 file changed, 58 insertions(+) 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 00000000000..2de83b92ec6 --- /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 +}