summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2025-05-06 17:24:42 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2025-05-06 18:06:09 +0200
commitcba1eeb83d3d7eb72f96f9fb842244ad6972a62e (patch)
tree91f01644ecea90d982987002c86de5430c462af3
parentd50db71b5d461b04eb305f4b4b4427dfdcce3ee0 (diff)
downloadkde-cba1eeb83d3d7eb72f96f9fb842244ad6972a62e.tar.gz
kde-cba1eeb83d3d7eb72f96f9fb842244ad6972a62e.tar.bz2
kde-cba1eeb83d3d7eb72f96f9fb842244ad6972a62e.zip
kde-apps/kate: 25.04.1 version bump
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
-rw-r--r--kde-apps/kate/Manifest1
-rw-r--r--kde-apps/kate/kate-25.04.1.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..72ebe364e9c
--- /dev/null
+++ b/kde-apps/kate/Manifest
@@ -0,0 +1 @@
+DIST kate-25.04.1.tar.xz 8374812 BLAKE2B 875f7b9440a97d740dad46213bf280f73ec63b5fb7dbdf3712e5a868a489565ff9d7ea023313d15945ea258e98ea6e6bc89c002588d12f814c817d671d707e2f SHA512 608e8190d222dae47df052f1d483d117cd0e6c597795dcc42cf77702003c906579fd8ca9c45edd2a6c2a5d4fbf6c85a6bd627fef6e04c4bd399992af2217b12f
diff --git a/kde-apps/kate/kate-25.04.1.ebuild b/kde-apps/kate/kate-25.04.1.ebuild
new file mode 100644
index 00000000000..21821ea591d
--- /dev/null
+++ b/kde-apps/kate/kate-25.04.1.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+ECM_HANDBOOK="forceoff"
+KFMIN=6.13.0
+QTMIN=6.7.2
+inherit ecm flag-o-matic gear.kde.org xdg
+
+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 ~loong ~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
+}