summaryrefslogtreecommitdiff
path: root/app-office/libalkimia/libalkimia-8.0.2.ebuild
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-09-06 22:38:32 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-09-06 22:38:32 +0200
commitfca36a2ec39f55a37e8d3cf66af6fabc22bd7f84 (patch)
tree5a377d636bfd124ea9e830fcfdcea0accd5db52d /app-office/libalkimia/libalkimia-8.0.2.ebuild
parent8b23e8f09b61b8ef3b50cf168ca4a0aa9f1bd372 (diff)
downloadkde-fca36a2ec39f55a37e8d3cf66af6fabc22bd7f84.tar.gz
kde-fca36a2ec39f55a37e8d3cf66af6fabc22bd7f84.tar.bz2
kde-fca36a2ec39f55a37e8d3cf66af6fabc22bd7f84.zip
app-office/libalkimia: 8.0.2 version bump
Package-Manager: Portage-2.3.75, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office/libalkimia/libalkimia-8.0.2.ebuild')
-rw-r--r--app-office/libalkimia/libalkimia-8.0.2.ebuild60
1 files changed, 60 insertions, 0 deletions
diff --git a/app-office/libalkimia/libalkimia-8.0.2.ebuild b/app-office/libalkimia/libalkimia-8.0.2.ebuild
new file mode 100644
index 00000000000..c070d6c5336
--- /dev/null
+++ b/app-office/libalkimia/libalkimia-8.0.2.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+KDE_TEST="forceoptional"
+KMNAME="alkimia"
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+ SRC_URI="mirror://kde/stable/${KMNAME}/${PV}/${KMNAME}-${PV}.tar.xz"
+ KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Library with common classes and functionality used by KDE finance applications"
+HOMEPAGE="https://www.linux-apps.com/content/show.php/libalkimia?content=137323"
+LICENSE="LGPL-2.1"
+SLOT="0/8"
+IUSE="doc gmp plasma"
+
+BDEPEND="
+ virtual/pkgconfig
+ doc? ( app-doc/doxygen )
+"
+DEPEND="
+ $(add_frameworks_dep kcompletion)
+ $(add_frameworks_dep kcodecs)
+ $(add_frameworks_dep kconfig)
+ $(add_frameworks_dep kcoreaddons)
+ $(add_frameworks_dep kdelibs4support)
+ $(add_frameworks_dep ki18n)
+ $(add_frameworks_dep kiconthemes)
+ $(add_frameworks_dep knewstuff)
+ $(add_frameworks_dep ktextwidgets)
+ $(add_frameworks_dep kwidgetsaddons)
+ $(add_qt_dep qtdbus)
+ $(add_qt_dep qtdeclarative)
+ $(add_qt_dep qtgui)
+ $(add_qt_dep qtnetwork)
+ $(add_qt_dep qtwidgets)
+ >=dev-qt/qtwebkit-5.212.0_pre20180120:5
+ !gmp? ( sci-libs/mpir:=[cxx] )
+ gmp? ( dev-libs/gmp:0=[cxx] )
+ plasma? (
+ $(add_frameworks_dep kpackage)
+ $(add_frameworks_dep plasma)
+ )
+"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}/${PN}-8.0.1-cmake.patch" )
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_DOXYGEN_DOCS=$(usex doc)
+ $(cmake-utils_use_find_package !gmp MPIR)
+ -DBUILD_APPLETS=$(usex plasma)
+ )
+ kde5_src_configure
+}