blob: 4cee2a0620b768f7a05d701a1d63e6d8fdc622f7 (
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
42
43
44
45
46
47
48
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="An IM client for the Matrix protocol"
HOMEPAGE="https://github.com/qmatrixclient/quaternion"
inherit eutils cmake-utils
if [[ ${PV} == "9999" ]]; then
inherit git-r3
SRC_URI=""
EGIT_REPO_URI="https://github.com/qmatrixclient/${PN}.git"
#EGIT_SUBMODULES=()
else
SRC_URI="https://github.com/qmatrixclient/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
S=${WORKDIR}/${P^}
fi
LICENSE="GPL-3"
SLOT="0"
IUSE=""
DEPEND=">=dev-qt/qtgui-5.6.2
>=dev-qt/qtdeclarative-5.6.2
dev-qt/qtquickcontrols2
!dev-libs/libqmatrixclient"
RDEPEND="${DEPEND}"
src_prepare() {
cmake-utils_src_prepare
}
src_configure() {
cmake-utils_src_configure
}
src_compile() {
cmake-utils_src_make
}
src_install() {
cmake-utils_src_install
}
|