vanadium: disable fcitx5 clipboard

This commit is contained in:
Primrose 2025-05-26 00:08:20 +02:00
parent b7a6f9f296
commit bd58c92c2d
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
2 changed files with 48 additions and 0 deletions

View file

@ -28,4 +28,7 @@ in
(lib.cmakeFeature "ENABLE_EMOJI" "Off")
(lib.cmakeFeature "ENABLE_WAYLAND" "Off")
];
fcitx5.__output.patches.__append = [
./patches/fcitx5/disable-clipboard.patch
];
})

View file

@ -0,0 +1,45 @@
diff --git a/src/modules/clipboard/CMakeLists.txt b/src/modules/clipboard/CMakeLists.txt
index 997c4e3e..4163cada 100644
--- a/src/modules/clipboard/CMakeLists.txt
+++ b/src/modules/clipboard/CMakeLists.txt
@@ -1,21 +1,21 @@
-add_fcitx5_addon(clipboard)
-
-target_sources(clipboard PRIVATE clipboard.cpp)
-target_link_libraries(clipboard Fcitx5::Core)
-
-if (ENABLE_X11)
- target_sources(clipboard PRIVATE xcbclipboard.cpp)
- target_link_libraries(clipboard Fcitx5::Module::XCB XCB::XCB)
-endif()
-
-if (WAYLAND_FOUND)
- target_sources(clipboard PRIVATE waylandclipboard.cpp)
- target_link_libraries(clipboard Fcitx5::Module::Wayland Fcitx5::Wayland::WLRDataControl Pthread::Pthread)
-endif()
-
-install(TARGETS clipboard DESTINATION "${FCITX_INSTALL_ADDONDIR}")
-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf" DESTINATION "${FCITX_INSTALL_PKGDATADIR}/addon"
- COMPONENT config)
+# add_fcitx5_addon(clipboard)
+#
+# target_sources(clipboard PRIVATE clipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Core)
+#
+# if (ENABLE_X11)
+# target_sources(clipboard PRIVATE xcbclipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Module::XCB XCB::XCB)
+# endif()
+#
+# if (WAYLAND_FOUND)
+# target_sources(clipboard PRIVATE waylandclipboard.cpp)
+# target_link_libraries(clipboard Fcitx5::Module::Wayland Fcitx5::Wayland::WLRDataControl Pthread::Pthread)
+# endif()
+#
+# install(TARGETS clipboard DESTINATION "${FCITX_INSTALL_ADDONDIR}")
+# install(FILES "${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf" DESTINATION "${FCITX_INSTALL_PKGDATADIR}/addon"
+# COMPONENT config)
configure_file(clipboard.conf.in.in clipboard.conf.in @ONLY)
fcitx5_translate_desktop_file(${CMAKE_CURRENT_BINARY_DIR}/clipboard.conf.in clipboard.conf)
fcitx5_export_module(Clipboard TARGET clipboard BUILD_INCLUDE_DIRECTORIES "${CMAKE_CURRENT_SOURCE_DIR}" HEADERS clipboard_public.h INSTALL)