mirror of
https://git.freebsd.org/ports.git
synced 2025-06-23 21:50:32 -04:00
In order to make room for the up-to-date version of the KDE Desktop and its applications move the KDE Application ports based on Qt4. PR: 225992 Exp-run by: antoine Reviewed by: rakuco, adridg Differential Revision: https://reviews.freebsd.org/D14413
35 lines
1.5 KiB
Text
35 lines
1.5 KiB
Text
--- CMakeLists.txt.orig 2014-10-10 07:47:23 UTC
|
|
+++ CMakeLists.txt
|
|
@@ -7,16 +7,19 @@ include_directories( ${CMAKE_CURRENT_SOU
|
|
# Laurent: Verify that we install it into (kdeprefix)/etc/ and not into /etc
|
|
# otherwise it's necessary to change it.
|
|
# into kde 3.x it was installed into /etc/
|
|
-add_definitions( -DKSYSGUARDDRCFILE="\\"${SYSCONF_INSTALL_DIR}/ksysguarddrc\\"" )
|
|
+add_definitions( -DKSYSGUARDDRCFILE=\"${SYSCONF_INSTALL_DIR}/ksysguarddrc\" )
|
|
|
|
add_definitions(-DOSTYPE_${CMAKE_SYSTEM_NAME})
|
|
|
|
-macro_optional_find_package(Sensors)
|
|
-macro_bool_to_01(SENSORS_FOUND HAVE_LMSENSORS)
|
|
-
|
|
-check_include_files(sys/inotify.h SYS_INOTIFY_H_FOUND)
|
|
-macro_bool_to_01(SYS_INOTIFY_H_FOUND HAVE_SYS_INOTIFY_H)
|
|
+# Commenting this allows us not to depend on kdelibs (we don't have
|
|
+# lm-sensors in ports, nor inotify in base system).
|
|
+#macro_optional_find_package(Sensors)
|
|
+#macro_bool_to_01(SENSORS_FOUND HAVE_LMSENSORS)
|
|
+set(SENSORS_FOUND 0)
|
|
|
|
+#check_include_files(sys/inotify.h SYS_INOTIFY_H_FOUND)
|
|
+#macro_bool_to_01(SYS_INOTIFY_H_FOUND HAVE_SYS_INOTIFY_H)
|
|
+set(SYS_INOTIFY_H_FOUND 0)
|
|
|
|
configure_file(config-ksysguardd.h.cmake ${CMAKE_CURRENT_BINARY_DIR}/config-ksysguardd.h)
|
|
|
|
@@ -69,4 +72,5 @@ if( ${CMAKE_SYSTEM_NAME} MATCHES "SunOS"
|
|
target_link_libraries(ksysguardd socket nsl)
|
|
endif( ${CMAKE_SYSTEM_NAME} MATCHES "SunOS" )
|
|
|
|
-install(TARGETS ksysguardd ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
+install(TARGETS ksysguardd RUNTIME DESTINATION "${BIN_INSTALL_DIR}")
|
|
+install(FILES ../example/ksysguarddrc DESTINATION "${SYSCONF_INSTALL_DIR}")
|