tg/gentoo/net-im/telegram-cli/telegram-cli-9999.ebuild

34 lines
665 B
Bash
Raw Normal View History

2014-02-06 09:22:21 -05:00
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
EGIT_REPO_URI="https://github.com/vysheng/tg.git"
2014-08-24 18:40:54 -04:00
EGIT_BRANCH="test"
2014-02-06 09:22:21 -05:00
inherit git-2
IUSE="lua"
DESCRIPTION="Command line interface client for Telegram"
HOMEPAGE="https://github.com/vysheng/tg"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="sys-libs/zlib
sys-libs/readline
dev-libs/libconfig
dev-libs/openssl
2014-08-24 18:40:54 -04:00
dev-libs/libevent
2014-02-06 09:22:21 -05:00
lua? ( dev-lang/lua )"
src_configure() {
2014-08-22 07:50:21 -04:00
econf $(use_enable lua liblua )
2014-02-06 09:22:21 -05:00
}
src_install() {
2014-08-24 18:40:54 -04:00
newbin bin/telegram-cli telegram-cli
2014-02-06 09:22:21 -05:00
insinto /etc/telegram-cli/
2014-03-16 08:44:44 -04:00
newins tg-server.pub server.pub
2014-02-06 09:22:21 -05:00
}