blob: 28f2533d5480413fe74efa4de618da9d39fffff8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="5"
inherit eutils versionator
RESTRICT="strip"
DESCRIPTION="Telegram Desktop Messenger (official client) binary version"
HOMEPAGE="https://tdesktop.com/"
SRC_URI="
amd64? ( http://updates.tdesktop.com/tlinux/tsetup.${PV}.tar.xz )
x86? ( http://updates.tdesktop.com/tlinux32/tsetup32.${PV}.tar.xz )"
RESTRICT="mirror"
LICENSE="GPL-3"
IUSE="updater"
KEYWORDS="~x86 ~amd64"
INSTALL_DIR="/opt/telegram"
SLOT="0"
DEPEND=""
RDEPEND="${DEPEND}"
S="${WORKDIR}/Telegram"
src_install() {
insinto "${INSTALL_DIR}"
insopts -m755
doins -r Telegram
if use updater; then
doins -r Updater
fi
make_wrapper "telegram" "${INSTALL_DIR}/Telegram"
make_desktop_entry "telegram" "Telegram" "telegram" "Messenger"
}
|