summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-11-15 15:16:16 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-11-15 18:30:33 +0100
commit0a7cfdab3da8ce611d71630947feb011846b396d (patch)
treebf843976d725573e1ae5f8626937a317e8f4c1e8
parent231b5eae36d6ea309a2e1be8c0237bea84882abd (diff)
downloadkde-0a7cfdab3da8ce611d71630947feb011846b396d.tar.gz
kde-0a7cfdab3da8ce611d71630947feb011846b396d.tar.bz2
kde-0a7cfdab3da8ce611d71630947feb011846b396d.zip
kde-apps/kate: 24.11.80 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/kate/Manifest1
-rw-r--r--kde-apps/kate/kate-24.11.80.ebuild61
2 files changed, 62 insertions, 0 deletions
diff --git a/kde-apps/kate/Manifest b/kde-apps/kate/Manifest
new file mode 100644
index 00000000000..4831ca0ebe2
--- /dev/null
+++ b/kde-apps/kate/Manifest
@@ -0,0 +1 @@
+DIST kate-24.11.80.tar.xz 8297320 BLAKE2B 9fca56748a3d14f4b2b2b603bd1bca67c9bf489c7aa1390410927870d840feddffc8db997870376fd046806031357847a22c954feda6b222a54fc0f353c73eb1 SHA512 974f147f24400646d43a345ed4dbdb38f0e2648ee05cc43396c00c1cb2376a3d8be85fc199a7f99b9dfeb03c0f885931672708b711ee43078743432531797841
diff --git a/kde-apps/kate/kate-24.11.80.ebuild b/kde-apps/kate/kate-24.11.80.ebuild
new file mode 100644
index 00000000000..c934381d887
--- /dev/null
+++ b/kde-apps/kate/kate-24.11.80.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoff"
+KFMIN=6.5.0
+QTMIN=6.7.2
+inherit ecm flag-o-matic gear.kde.org
+
+DESCRIPTION="Multi-document editor with network transparency, Plasma integration and more"
+HOMEPAGE="https://kate-editor.org/ https://apps.kde.org/kate/"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE=""
+
+# slot op: Uses Qt6::GuiPrivate for qtx11extras_p.h
+# kde-frameworks/kwindowsystem[X]: Unconditional use of KX11Extras
+# TODO: replace HAVE_X11 and __has_include with explicit WITH_X11 option
+DEPEND="
+ >=dev-qt/qtbase-${QTMIN}:6=[dbus,gui,network,widgets,X]
+ ~kde-apps/kate-lib-${PV}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kwindowsystem-${KFMIN}:6[X]
+ virtual/libintl
+"
+RDEPEND="${DEPEND}
+ ~kde-apps/kate-addons-${PV}:6
+ >=kde-apps/kate-common-${PV}
+"
+
+src_prepare() {
+ ecm_src_prepare
+ ecm_punt_po_install
+
+ # these tests are run in kde-apps/kate-lib
+ cmake_run_in apps/lib cmake_comment_add_subdirectory autotests
+}
+
+src_configure() {
+ local mycmakeargs=(
+ -DBUILD_addons=FALSE
+ -DBUILD_kwrite=FALSE
+ )
+
+ # provided by kde-apps/kate-lib
+ append-libs -lkateprivate
+
+ ecm_src_configure
+}
+
+src_install() {
+ ecm_src_install
+
+ # provided by kde-apps/kate-lib
+ rm -v "${ED}"/usr/$(get_libdir)/libkateprivate.so.* || die
+}