blob: 410a813b42f5ce7293bcd815e787da04e815cf02 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
KDE_TEST="forceoptional"
KMNAME="alkimia"
inherit kde5
DESCRIPTION="Library with common classes and functionality used by KDE finance applications"
HOMEPAGE="https://www.linux-apps.com/content/show.php/libalkimia?content=137323"
SRC_URI="mirror://kde/stable/${KMNAME}/${PV}/src/${KMNAME}-${PV}.tar.xz"
LICENSE="LGPL-2.1"
SLOT="0/7"
KEYWORDS="amd64 x86"
IUSE="doc"
RDEPEND="
$(add_qt_dep qtdbus)
dev-libs/gmp:0=[cxx]
"
DEPEND="${RDEPEND}
virtual/pkgconfig
doc? ( app-doc/doxygen )
"
src_configure() {
local mycmakeargs=(
$(cmake-utils_use_find_package doc Doxygen)
)
kde5_src_configure
}
|