blob: eb9fa0ac5ab1ebd25b8686db7b2320388e38265b (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
KDE_TEST="forceoptional"
QT_MINIMAL="5.7.1"
inherit kde5
if [[ ${KDE_BUILD_TYPE} = release ]]; then
MY_PN="${PN}2"
SRC_BRANCH=stable
[[ ${PV} = *.[8-9]?.* ]] && SRC_BRANCH=unstable
SRC_URI="mirror://kde/${SRC_BRANCH}/${PN}/${MY_PN}-${PV}.tar.xz"
KEYWORDS="~amd64 ~x86"
S="${WORKDIR}/${MY_PN}-${PV}"
fi
DESCRIPTION="Lightweight user interface framework for mobile and convergent applications"
HOMEPAGE="https://techbase.kde.org/Kirigami"
LICENSE="LGPL-2+"
SLOT="2"
IUSE="examples plasma"
RDEPEND="
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
$(add_qt_dep qtquickcontrols2)
$(add_qt_dep qtsvg)
plasma? ( $(add_frameworks_dep plasma) )
"
DEPEND="${RDEPEND}
$(add_qt_dep linguist-tools)
"
RESTRICT+=" test"
src_configure() {
local mycmakeargs=(
-DBUILD_EXAMPLES=$(usex examples)
-DPLASMA_ENABLED=$(usex plasma)
)
kde5_src_configure
}
|