diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-09-06 21:10:03 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-09-06 21:11:17 +0200 |
commit | cace445d5118ee027dc43f829fc50f27d623134c (patch) | |
tree | 2dfaad77bd443bf2f28d49d3bcf8c2880aa92ff3 /kde-apps/konsolekalendar | |
parent | dev-util/rbtools: maintainer-needed (diff) | |
download | gentoo-cace445d5118ee027dc43f829fc50f27d623134c.tar.gz gentoo-cace445d5118ee027dc43f829fc50f27d623134c.tar.bz2 gentoo-cace445d5118ee027dc43f829fc50f27d623134c.zip |
kde-apps: Add KDE Applications 19.08.1
Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'kde-apps/konsolekalendar')
-rw-r--r-- | kde-apps/konsolekalendar/Manifest | 1 | ||||
-rw-r--r-- | kde-apps/konsolekalendar/konsolekalendar-19.08.1.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/kde-apps/konsolekalendar/Manifest b/kde-apps/konsolekalendar/Manifest index 6ad100e6ae63..7c971c3739b7 100644 --- a/kde-apps/konsolekalendar/Manifest +++ b/kde-apps/konsolekalendar/Manifest @@ -1,2 +1,3 @@ DIST akonadi-calendar-tools-19.04.3.tar.xz 223328 BLAKE2B 47f16a483f49f27d203db3b0627532b7b928f18bead7e22176b340698e7c2e52322139ca92cae9a776b239d9d741656ec3c943eb997c1dd5064da4d818610474 SHA512 d4c61f04861b26fb01b0cd76056fa5107e0257e7b2c118596ed40d87a3cffa8526889bc82b45f9d3cc61d1d4d25518bbeca56edaa028d02f779b7880df2522e5 DIST akonadi-calendar-tools-19.08.0.tar.xz 223680 BLAKE2B 28525271249ae2b8f77dba267a977d96c79b2409c8e3bbb06368742dd754c5e045ab2ff8c2e0e51d992b869915da1996d8c697aa137d80ca657b3afb2849ab9e SHA512 170b94f1f837aceb723d130929f42c0f57504dad510195128e23519702d26a1a39ae3f74c4386471070a44b9c4bced2b5fecb566faae8bf51ca82984a718b83e +DIST akonadi-calendar-tools-19.08.1.tar.xz 223888 BLAKE2B 1b14e93ffbc23f17e9cdfa004faeb0206bdbebc00bf6424c5327a63f3bec59cf3ebea84846204ea724d9d1bbd1f3ec940407697df66a1ab50a306cf66a3ea6f0 SHA512 f0289f852bcd0787f919d179e81a916c1500ff1b37c16b5af77b3aadda30e49b8022cca432ab29a1efe5dcf56cfa495ada00ab042187058b8ba4c8fcc1b1a4cf diff --git a/kde-apps/konsolekalendar/konsolekalendar-19.08.1.ebuild b/kde-apps/konsolekalendar/konsolekalendar-19.08.1.ebuild new file mode 100644 index 000000000000..bb7f42fb2202 --- /dev/null +++ b/kde-apps/konsolekalendar/konsolekalendar-19.08.1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +KDE_HANDBOOK="forceoptional" +KMNAME="akonadi-calendar-tools" +inherit kde5 + +DESCRIPTION="Command line interface to KDE calendars" +HOMEPAGE+=" https://userbase.kde.org/KonsoleKalendar" + +LICENSE="GPL-2+ handbook? ( FDL-1.2+ )" +KEYWORDS="~amd64 ~arm64 ~x86" +IUSE="" + +DEPEND=" + $(add_frameworks_dep kconfig) + $(add_frameworks_dep kcoreaddons) + $(add_frameworks_dep ki18n) + $(add_kdeapps_dep akonadi) + $(add_kdeapps_dep akonadi-calendar) + $(add_kdeapps_dep calendarsupport) + $(add_kdeapps_dep kcalcore) + $(add_kdeapps_dep kcalutils) +" +RDEPEND="${DEPEND} + !kde-apps/kdepim-l10n +" + +src_prepare() { + kde5_src_prepare + + # delete colliding calendarjanitor translations + if [[ ${KDE_BUILD_TYPE} = release ]]; then + rm -f po/*/calendarjanitor.po || die + fi + + cmake_comment_add_subdirectory calendarjanitor +} |