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/calligraplan/
Date: Fri, 16 Aug 2019 14:41:02
Message-Id: 1565966432.9111d8142a8c0a54f6478cc3ff2977dd803d8d50.asturm@gentoo
1 commit: 9111d8142a8c0a54f6478cc3ff2977dd803d8d50
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 16 12:49:32 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 16 14:40:32 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9111d814
7
8 app-office/calligraplan: Drop 3.1.0 (r0)
9
10 Package-Manager: Portage-2.3.71, Repoman-2.3.17
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-office/calligraplan/calligraplan-3.1.0.ebuild | 106 ----------------------
14 1 file changed, 106 deletions(-)
15
16 diff --git a/app-office/calligraplan/calligraplan-3.1.0.ebuild b/app-office/calligraplan/calligraplan-3.1.0.ebuild
17 deleted file mode 100644
18 index 5fc27015f3a..00000000000
19 --- a/app-office/calligraplan/calligraplan-3.1.0.ebuild
20 +++ /dev/null
21 @@ -1,106 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -KDE_HANDBOOK="forceoptional"
28 -KDE_TEST="forceoptional"
29 -inherit kde5
30 -
31 -DESCRIPTION="Project management application"
32 -HOMEPAGE="https://www.calligra.org/"
33 -SRC_URI="mirror://kde/stable/${PN/plan/}/${PV}/${P}.tar.xz"
34 -
35 -LICENSE="GPL-2"
36 -KEYWORDS="amd64 x86"
37 -IUSE="activities +holidays kwallet pim X"
38 -
39 -# FIXME: Disabled by upstream for good reason
40 -# Crashes plan (https://bugs.kde.org/show_bug.cgi?id=311940)
41 -# $(add_kdeapps_dep akonadi)
42 -# $(add_kdeapps_dep akonadi-contacts)
43 -# Currently upstream-disabled in plan
44 -# =dev-libs/kproperty-3.0*:5
45 -# =dev-libs/kreport-3.0*:5
46 -DEPEND="
47 - $(add_frameworks_dep karchive)
48 - $(add_frameworks_dep kconfig)
49 - $(add_frameworks_dep kconfigwidgets)
50 - $(add_frameworks_dep kcoreaddons)
51 - $(add_frameworks_dep kdbusaddons)
52 - $(add_frameworks_dep kglobalaccel)
53 - $(add_frameworks_dep kguiaddons)
54 - $(add_frameworks_dep khtml)
55 - $(add_frameworks_dep ki18n)
56 - $(add_frameworks_dep kiconthemes)
57 - $(add_frameworks_dep kio)
58 - $(add_frameworks_dep kitemviews)
59 - $(add_frameworks_dep kjobwidgets)
60 - $(add_frameworks_dep knotifications)
61 - $(add_frameworks_dep kparts)
62 - $(add_frameworks_dep kservice)
63 - $(add_frameworks_dep ktextwidgets)
64 - $(add_frameworks_dep kwidgetsaddons)
65 - $(add_frameworks_dep kwindowsystem)
66 - $(add_frameworks_dep kxmlgui)
67 - $(add_qt_dep designer)
68 - $(add_qt_dep qtdbus)
69 - $(add_qt_dep qtgui)
70 - $(add_qt_dep qtprintsupport)
71 - $(add_qt_dep qtwidgets)
72 - $(add_qt_dep qtxml)
73 - dev-lang/perl
74 - dev-libs/kdiagram:5
75 - sys-libs/zlib
76 - activities? ( $(add_frameworks_dep kactivities) )
77 - holidays? ( $(add_frameworks_dep kholidays) )
78 - kwallet? (
79 - $(add_frameworks_dep kwallet)
80 - app-crypt/qca:2[qt5(+)]
81 - )
82 - pim? (
83 - <kde-apps/kcalcore-19.04.50:5
84 - $(add_kdeapps_dep kcontacts)
85 - )
86 - X? (
87 - $(add_qt_dep qtx11extras)
88 - x11-libs/libX11
89 - )
90 -"
91 -RDEPEND="${DEPEND}
92 - !app-office/calligra[calligra_features_plan(-)]
93 - !app-office/calligra-l10n:4
94 - $(add_qt_dep qtsvg)
95 -"
96 -
97 -RESTRICT+=" test"
98 -
99 -PATCHES=(
100 - "${FILESDIR}"/${P}-qt-5.11.patch
101 - "${FILESDIR}"/${P}-qca.patch
102 - "${FILESDIR}"/${P}-missing-header.patch
103 -)
104 -
105 -src_prepare() {
106 - kde5_src_prepare
107 - # Unconditionally disable deprecated deps
108 - punt_bogus_dep Qt5 OpenGL
109 - # FIXME: disable bogus deps
110 - punt_bogus_dep KF5 KCMUtils
111 - punt_bogus_dep Qt5 Network
112 - punt_bogus_dep Qt5 Svg
113 -}
114 -
115 -src_configure() {
116 - local mycmakeargs=(
117 - $(cmake-utils_use_find_package activities KF5Activities)
118 - $(cmake-utils_use_find_package holidays KF5Holidays)
119 - $(cmake-utils_use_find_package pim KF5CalendarCore)
120 - $(cmake-utils_use_find_package pim KF5Contacts)
121 - $(cmake-utils_use_find_package kwallet Qca-qt5)
122 - $(cmake-utils_use_find_package kwallet KF5Wallet)
123 - )
124 - # Qt5DBus can't be disabled because of KF5DBusAddons dependency
125 -
126 - kde5_src_configure
127 -}