blob: aab0c7727818cabbc14af63a63c21da40fbe5ada (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit kde5
DESCRIPTION="Powerful libraries (KChart, KGantt) for creating business diagrams"
HOMEPAGE="https://www.kde.org/"
IUSE=""
if [[ ${KDE_BUILD_TYPE} = release ]]; then
KEYWORDS="amd64 ~x86"
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
fi
RDEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
"
DEPEND="${RDEPEND}
$(add_qt_dep linguist-tools)
"
|