blob: 39a04ac8c2f9d35c9855f3a05ac1c67e1b058134 (
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
37
38
39
40
41
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=7
inherit cmake-utils git-r3
DESCRIPTION="Telegram connection manager for Telepathy."
HOMEPAGE="https://github.com/TelepathyQt/telepathy-morse"
EGIT_REPO_URI=( "https://github.com/TelepathyQt/telepathy-morse" )
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND="
net-libs/telegram-qt
>=net-libs/telepathy-qt-0.9.6.0
"
DEPEND="${RDEPEND}
>=dev-util/cmake-2.8.12
"
DOCS=( README.md )
src_configure() {
local mycmakeargs=(
-DUSE_QT4=no
)
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_compile
}
src_install() {
cmake-utils_src_install
}
|