head 1.1; access; symbols pkgsrc-2026Q1:1.1.0.16 pkgsrc-2026Q1-base:1.1 pkgsrc-2025Q4:1.1.0.14 pkgsrc-2025Q4-base:1.1 pkgsrc-2025Q3:1.1.0.12 pkgsrc-2025Q3-base:1.1 pkgsrc-2025Q2:1.1.0.10 pkgsrc-2025Q2-base:1.1 pkgsrc-2025Q1:1.1.0.8 pkgsrc-2025Q1-base:1.1 pkgsrc-2024Q4:1.1.0.6 pkgsrc-2024Q4-base:1.1 pkgsrc-2024Q3:1.1.0.4 pkgsrc-2024Q3-base:1.1 pkgsrc-2024Q2:1.1.0.2 pkgsrc-2024Q2-base:1.1; locks; strict; comment @# @; 1.1 date 2024.05.26.12.52.35; author markd; state Exp; branches; next ; commitid 1Yek7d6UjSEWBvbF; desc @@ 1.1 log @kf6-baloo: add version 6.2.0 KDE Frameworks 6 baloo. Baloo provides file searching and indexing. It does so by maintaining an index of the contents of your files. @ text @$NetBSD: patch-CMakeLists.txt,v 1.3 2022/05/17 17:17:57 jperkin Exp $ Avoid inotify on SunOS. --- CMakeLists.txt.orig 2022-04-02 10:13:54.000000000 +0000 +++ CMakeLists.txt @@@@ -82,7 +82,11 @@@@ add_definitions(-DKF_DISABLE_DEPRECATED_ find_package(Inotify) set_package_properties(Inotify PROPERTIES PURPOSE "Filesystem alteration notifications using inotify") +if(CMAKE_SYSTEM_NAME MATCHES "SunOS") +set(BUILD_KINOTIFY 0) +else() set(BUILD_KINOTIFY ${Inotify_FOUND}) +endif() configure_file(config.h.in ${CMAKE_BINARY_DIR}/config.h) @