summaryrefslogtreecommitdiff
path: root/kde-plasma/krdp/krdp-6.3.6.ebuild
diff options
context:
space:
mode:
authorRepository mirror & CI <repomirrorci@gentoo.org>2025-07-08 17:07:16 +0000
committerRepository mirror & CI <repomirrorci@gentoo.org>2025-07-08 17:07:16 +0000
commit2ac014ee4d7f25d620d3f42c6567b1a331d21386 (patch)
treee6bb869953bc08599a2b6c984fe8094b940ea85f /kde-plasma/krdp/krdp-6.3.6.ebuild
parent9ac9e4988dd39da4841a2fc327e119bae035f62e (diff)
parentd857e8899ca76bc86eef2f8f3dde5cb5f731605e (diff)
downloadkde-2ac014ee4d7f25d620d3f42c6567b1a331d21386.tar.gz
kde-2ac014ee4d7f25d620d3f42c6567b1a331d21386.tar.bz2
kde-2ac014ee4d7f25d620d3f42c6567b1a331d21386.zip
Merge updates from master
Diffstat (limited to 'kde-plasma/krdp/krdp-6.3.6.ebuild')
-rw-r--r--kde-plasma/krdp/krdp-6.3.6.ebuild54
1 files changed, 54 insertions, 0 deletions
diff --git a/kde-plasma/krdp/krdp-6.3.6.ebuild b/kde-plasma/krdp/krdp-6.3.6.ebuild
new file mode 100644
index 00000000000..9ebe24f64b8
--- /dev/null
+++ b/kde-plasma/krdp/krdp-6.3.6.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PATCHSET="${PN}-6.3.4-patchset"
+ECM_EXAMPLES="true"
+ECM_TEST="true"
+KFMIN=6.10.0
+QTMIN=6.8.1
+inherit ecm flag-o-matic plasma.kde.org toolchain-funcs xdg
+
+DESCRIPTION="Library and examples for creating an RDP server"
+HOMEPAGE+=" https://quantumproductions.info/articles/2023-08/remote-desktop-using-rdp-protocol-plasma-wayland"
+SRC_URI+=" https://dev.gentoo.org/~asturm/distfiles/${PATCHSET}.tar.xz"
+
+LICENSE="GPL-2" # TODO: CHECK
+SLOT="6"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE=""
+
+COMMON_DEPEND="
+ >=dev-libs/qtkeychain-0.14.2:=[qt6(+)]
+ >=dev-qt/qtbase-${QTMIN}:6[dbus,gui,network,wayland]
+ >=dev-qt/qtdeclarative-${QTMIN}:6
+ >=kde-frameworks/kcmutils-${KFMIN}:6
+ >=kde-frameworks/kconfig-${KFMIN}:6
+ >=kde-frameworks/kcoreaddons-${KFMIN}:6
+ >=kde-frameworks/kcrash-${KFMIN}:6
+ >=kde-frameworks/kdbusaddons-${KFMIN}:6
+ >=kde-frameworks/ki18n-${KFMIN}:6
+ >=kde-frameworks/kstatusnotifieritem-${KFMIN}:6
+ >=kde-plasma/kpipewire-${KDE_CATV}:6
+ >=net-misc/freerdp-3.1:3[server]
+ x11-libs/libxkbcommon
+"
+DEPEND="${COMMON_DEPEND}
+ dev-libs/plasma-wayland-protocols
+"
+RDEPEND="${COMMON_DEPEND}
+ >=kde-frameworks/kirigami-${KFMIN}:6
+"
+RDEPEND+=" || ( >=dev-qt/qtbase-6.10:6[wayland] <dev-qt/qtwayland-6.10:6 )"
+BDEPEND=">=kde-frameworks/kcmutils-${KFMIN}:6"
+
+PATCHES=( "${WORKDIR}/${PATCHSET}" )
+
+src_configure() {
+ # std::jthread and std::stop_token are implemented as experimental in libcxx
+ # enable these experimental libraries on clang systems
+ # https://libcxx.llvm.org/Status/Cxx20.html#note-p0660
+ [[ $(tc-get-cxx-stdlib) == 'libc++' ]] && append-cxxflags -fexperimental-library
+ ecm_src_configure
+}