blob: 2c13e38294a3dce863f46eecad14a0a0fbe75f49 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
KDE_EXAMPLES="true"
KDE_QTHELP="true"
KDE_TEST="true"
VIRTUALX_REQUIRED="test"
inherit kde5
if [[ ${KDE_BUILD_TYPE} = release ]]; then
KEYWORDS="amd64 arm64 x86"
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
fi
DESCRIPTION="Powerful libraries (KChart, KGantt) for creating business diagrams"
HOMEPAGE="https://kde.org/ https://www.kdab.com/development-resources/qt-tools/kd-chart/"
IUSE=""
REQUIRED_USE="test? ( examples )"
BDEPEND="
$(add_qt_dep linguist-tools)
"
DEPEND="
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtsvg)
$(add_qt_dep qtwidgets)
"
RDEPEND="${DEPEND}"
PATCHES=( "${FILESDIR}/${P}-fix-horizontal-bars.patch" )
|