diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-26 12:30:45 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2023-08-31 21:19:14 +0200 |
commit | b76bf200ce9bf0e9171d53c988f91a456e8f2bf0 (patch) | |
tree | ac9566f938e3c8b998ac19bf0151ac8c9ca7b371 /app-office/kraft/kraft-1.0.ebuild | |
parent | dev-ruby/octokit: add missing test dependency (diff) | |
download | gentoo-b76bf200ce9bf0e9171d53c988f91a456e8f2bf0.tar.gz gentoo-b76bf200ce9bf0e9171d53c988f91a456e8f2bf0.tar.bz2 gentoo-b76bf200ce9bf0e9171d53c988f91a456e8f2bf0.zip |
app-office/kraft: add 1.0, build w/ >=kde-apps/akonadi-contact-23.08
See also:
https://github.com/dragotin/kraft/issues/209
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-office/kraft/kraft-1.0.ebuild')
-rw-r--r-- | app-office/kraft/kraft-1.0.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/app-office/kraft/kraft-1.0.ebuild b/app-office/kraft/kraft-1.0.ebuild new file mode 100644 index 000000000000..e4b2fb0e20c3 --- /dev/null +++ b/app-office/kraft/kraft-1.0.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +VIRTUALX_REQUIRED="test" +inherit ecm + +DESCRIPTION="Software to manage quotes and invoices in small enterprises" +HOMEPAGE="https://www.volle-kraft-voraus.de/" +SRC_URI="https://github.com/dragotin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2+ LGPL-2+" +SLOT="5" +KEYWORDS="~amd64 ~x86" +IUSE="pim" + +RESTRICT="test" # requires package installed, bug 745408 + +DEPEND=" + dev-cpp/ctemplate + dev-libs/grantlee:5 + dev-qt/qtgui:5 + dev-qt/qtsql:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + kde-frameworks/kconfig:5 + kde-frameworks/kcontacts:5 + kde-frameworks/ki18n:5 + pim? ( + >=kde-apps/akonadi-23.08.0:5 + >=kde-apps/akonadi-contacts-23.08.0:5 + kde-frameworks/kcoreaddons:5 + ) +" +RDEPEND="${DEPEND}" + +DOCS=( AUTHORS Changes.txt README.md Releasenotes.txt TODO ) + +PATCHES=( + "${FILESDIR}/${P}-cmake.patch" + "${FILESDIR}/${P}-akonadi-23.08.patch" +) + +src_configure() { + local mycmakeargs=( + -DCMAKE_DISABLE_FIND_PACKAGE_Asciidoctor=ON + $(cmake_use_find_package pim KPim5Akonadi) + $(cmake_use_find_package pim KPim5AkonadiContact) + ) + + ecm_src_configure +} |