feat: konsole recipe (KDE terminal) — blocked by libiconv fetch

Created local/recipes/kde/konsole with Qt6+KDE cmake build.
v24.08.3, depends on 21 KF6 packages (all available).
Blocked by transitive libiconv→glib→gettext fetch chain
(libiconv fetch fails: missing /share/aclocal/libtool.m4 on host).
Recipe is complete — unblocks when libiconv host issue resolved.
This commit is contained in:
2026-04-30 09:38:53 +01:00
parent e01466a6a6
commit d4385ae9d8
3 changed files with 69 additions and 0 deletions
+1
View File
@@ -399,3 +399,4 @@ vendor = 0x1af4
subclass = 0x00
command = ["redox-drm"]
"""
konsole = {}
+67
View File
@@ -0,0 +1,67 @@
#TODO: Konsole — KDE terminal emulator. Qt6-based, depends on kf6-kio, kf6-kparts.
# Builds core terminal without KPart integration (kf6-kparts not in tree).
# Uses QTermWidget internally for terminal emulation.
[source]
tar = "https://invent.kde.org/utilities/konsole/-/archive/v24.08.3/konsole-v24.08.3.tar.gz"
[build]
template = "custom"
dependencies = [
"qtbase",
"kf6-extra-cmake-modules",
"kf6-kcoreaddons",
"kf6-ki18n",
"kf6-kconfig",
"kf6-kconfigwidgets",
"kf6-kcrash",
"kf6-kdbusaddons",
"kf6-kio",
"kf6-knotifications",
"kf6-kservice",
"kf6-kwidgetsaddons",
"kf6-kwindowsystem",
"kf6-kxmlgui",
"kf6-kbookmarks",
"kf6-kcompletion",
"kf6-kiconthemes",
"kf6-kitemviews",
"kf6-kjobwidgets",
"kf6-ktextwidgets",
"kf6-kguiaddons",
]
script = """
DYNAMIC_INIT
HOST_BUILD="${COOKBOOK_ROOT}/build/qt-host-build"
for qtdir in plugins mkspecs metatypes modules; do
if [ -d "${COOKBOOK_SYSROOT}/usr/${qtdir}" ] && [ ! -e "${COOKBOOK_SYSROOT}/${qtdir}" ]; then
ln -s "usr/${qtdir}" "${COOKBOOK_SYSROOT}/${qtdir}"
fi
done
sed -i "s/^ecm_install_po_files_as_qm/#ecm_install_po_files_as_qm/" \
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
sed -i 's/^ki18n_install(po)/#ki18n_install(po)/' \
"${COOKBOOK_SOURCE}/CMakeLists.txt" 2>/dev/null || true
rm -f CMakeCache.txt
rm -rf CMakeFiles
cmake "${COOKBOOK_SOURCE}" \
-DCMAKE_TOOLCHAIN_FILE="${COOKBOOK_ROOT}/local/recipes/qt/redox-toolchain.cmake" \
-DQT_HOST_PATH="${HOST_BUILD}" \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_PREFIX_PATH="${COOKBOOK_SYSROOT}" \
-DBUILD_TESTING=OFF \
-Wno-dev
cmake --build . -j${COOKBOOK_MAKE_JOBS}
cmake --install . --prefix "${COOKBOOK_STAGE}/usr"
for lib in "${COOKBOOK_STAGE}/usr/lib/"libkonsole*.so.*; do
[ -f "${lib}" ] || continue
patchelf --remove-rpath "${lib}" 2>/dev/null || true
done
"""
+1
View File
@@ -0,0 +1 @@
../../local/recipes/kde/konsole