summaryrefslogtreecommitdiff
blob: ad65ba9e2fa46a3d0153efe436dd9843b5bd1905 (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
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

KDE_EXAMPLES="true"
KDE_QTHELP="false"
KDE_TEST="true"
KMNAME="${PN}2"
inherit kde5

DESCRIPTION="Lightweight user interface framework for mobile and convergent applications"
HOMEPAGE="https://techbase.kde.org/Kirigami"
EGIT_REPO_URI="${EGIT_REPO_URI/${PN}2/${PN}}"

LICENSE="LGPL-2+"
KEYWORDS="~amd64 ~arm ~arm64 ~x86"
IUSE=""

# drop qtdeclarative subslot operator when QT_MINIMAL >= 5.10.0
RDEPEND="
	$(add_qt_dep qtdbus)
	$(add_qt_dep qtdeclarative '' '' '5=')
	$(add_qt_dep qtgraphicaleffects)
	$(add_qt_dep qtgui)
	$(add_qt_dep qtnetwork)
	$(add_qt_dep qtquickcontrols2)
	$(add_qt_dep qtsvg)
"
DEPEND="${RDEPEND}
	$(add_qt_dep linguist-tools)
"

# requires package to already be installed
RESTRICT+=" test"

src_configure() {
	local mycmakeargs=(
		-DBUILD_EXAMPLES=$(usex examples)
	)

	kde5_src_configure
}