mirror of
https://git.freebsd.org/ports.git
synced 2025-07-09 13:29:24 -04:00
KInfoCenter: * obey user's unit preferences (IEC vs JEDEC) when displaying PCI info * correct the units, someone forgot about terabytes KSysGuard: * make plotter obey user's unit preferences (status bar was correct) * change tooltip to use same or adjacent unit scale as the plot * support a description different from the sensor name for use as the label * add an additional step to label widths so horizontal resize is smoother * change status bar elements from fixed layout to proportional layout * space permitting, show more detailed memory stats in the status bar * replace simplistic (app) memory & swap graph with a detailed graph Plasma Desktop: * hide the Desktop Toolbox (aka "the cashew") when widgets are locked NB: KSysGuard caches the layouts, delete ~/.kde4/share/apps/ksysguard/* when upgrading so the new layout (detailed memory graph) is used Reviewed by: tcberner Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9760
20 lines
832 B
CMake
20 lines
832 B
CMake
--- ConfigureChecks.cmake.orig 2015-06-26 03:17:21 UTC
|
|
+++ ConfigureChecks.cmake
|
|
@@ -21,16 +21,7 @@ if (PAM_FOUND)
|
|
endmacro(define_pam_service)
|
|
|
|
macro(install_pam_service APP)
|
|
- string(TOUPPER KDE4_${APP}_PAM_SERVICE cvar)
|
|
- install(CODE "
|
|
- set(DESTDIR_VALUE \"\$ENV{DESTDIR}\")
|
|
- if (NOT DESTDIR_VALUE)
|
|
- exec_program(\"${KDEBASE_WORKSPACE_SOURCE_DIR}/mkpamserv\" ARGS ${${cvar}} RETURN_VALUE ret)
|
|
- if (NOT ret)
|
|
- exec_program(\"${KDEBASE_WORKSPACE_SOURCE_DIR}/mkpamserv\" ARGS -P ${${cvar}}-np)
|
|
- endif (NOT ret)
|
|
- endif (NOT DESTDIR_VALUE)
|
|
- ")
|
|
+ message("Ignore installing pam service, FreeBSD has it already.")
|
|
endmacro(install_pam_service)
|
|
|
|
define_pam_service(KDM)
|