Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/kraft/
Date: Thu, 18 Apr 2019 17:56:54
Message-Id: 1555610000.b53f20504fcd7380848e8fe370154b5274959659.asturm@gentoo
1 commit: b53f20504fcd7380848e8fe370154b5274959659
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 17 18:54:12 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 18 17:53:20 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b53f2050
7
8 app-office/kraft: 0.82 version bump
9
10 Package-Manager: Portage-2.3.63, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-office/kraft/Manifest | 1 +
14 app-office/kraft/kraft-0.82.ebuild | 47 ++++++++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/app-office/kraft/Manifest b/app-office/kraft/Manifest
18 index 5e301d9d378..516002b2177 100644
19 --- a/app-office/kraft/Manifest
20 +++ b/app-office/kraft/Manifest
21 @@ -1 +1,2 @@
22 DIST kraft-0.80.tar.gz 673818 BLAKE2B 80d9608c458b793e7f1fe2f568243c72512ff9bd7a4e3b4ba8232d7b47b890e60b6e93cd0fcf2204027abc942198f6f2f5d10248e77b2f4729d3345631883dbc SHA512 a8a1496db434f899e293c765a9733bfb2d5ec6d461da3a3d805f52befa4e71526a3b5f21a7edf214d4946b8d409133dac77050452db97fb46256377960649fe9
23 +DIST kraft-0.82.tar.gz 668251 BLAKE2B 82ef37b695d0e7a2c72e0525c4aa9b9742d6c8d73c95e3ef5517c49c01869a5f1ba0fed1f18200f2a39ada5a92bcca5cabfac901f07c0a968783506d298ff164 SHA512 7a342bf94e2fe0de42004a69a29ce07a32dd70eb0f16b1dc18c889b7f0a0290142d5c0bc26b40a321753b0a0e62f6b91ecc8fbed98d32913881996a2507070e8
24
25 diff --git a/app-office/kraft/kraft-0.82.ebuild b/app-office/kraft/kraft-0.82.ebuild
26 new file mode 100644
27 index 00000000000..5b85fbff461
28 --- /dev/null
29 +++ b/app-office/kraft/kraft-0.82.ebuild
30 @@ -0,0 +1,47 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +KDE_HANDBOOK="forceoptional"
37 +inherit kde5
38 +
39 +DESCRIPTION="Software to manage quotes and invoices in small enterprises"
40 +HOMEPAGE="http://www.volle-kraft-voraus.de/"
41 +SRC_URI="https://github.com/dragotin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="pim"
45 +
46 +DEPEND="
47 + $(add_frameworks_dep kconfig)
48 + $(add_frameworks_dep kconfigwidgets)
49 + $(add_frameworks_dep kcoreaddons)
50 + $(add_frameworks_dep ki18n)
51 + $(add_frameworks_dep kwidgetsaddons)
52 + $(add_frameworks_dep kxmlgui)
53 + $(add_kdeapps_dep kcontacts)
54 + $(add_qt_dep qtgui)
55 + $(add_qt_dep qtsql)
56 + $(add_qt_dep qtwidgets)
57 + $(add_qt_dep qtxml)
58 + dev-cpp/ctemplate
59 + pim? (
60 + $(add_kdeapps_dep akonadi)
61 + $(add_kdeapps_dep akonadi-contacts)
62 + )
63 +"
64 +RDEPEND="${DEPEND}
65 + !app-office/kraft:4
66 +"
67 +
68 +DOCS=( AUTHORS Changes.txt README.md Releasenotes.txt TODO )
69 +
70 +src_configure() {
71 + local mycmakeargs=(
72 + $(cmake-utils_use_find_package pim KF5Akonadi)
73 + $(cmake-utils_use_find_package pim KF5AkonadiContact)
74 + )
75 +
76 + kde5_src_configure
77 +}