summaryrefslogtreecommitdiffstats
path: root/kcheckpass
diff options
context:
space:
mode:
Diffstat (limited to 'kcheckpass')
-rw-r--r--kcheckpass/CMakeLists.txt34
-rw-r--r--kcheckpass/ConfigureChecks.cmake16
2 files changed, 50 insertions, 0 deletions
diff --git a/kcheckpass/CMakeLists.txt b/kcheckpass/CMakeLists.txt
new file mode 100644
index 000000000..72df22f75
--- /dev/null
+++ b/kcheckpass/CMakeLists.txt
@@ -0,0 +1,34 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+include( ConfigureChecks.cmake )
+
+if( HAVE_PAM )
+ add_definitions( -DHAVE_PAM )
+endif( )
+
+include_directories(
+ ${CMAKE_BINARY_DIR}
+)
+
+
+##### kcheckpass (executable) ###################
+
+tde_add_executable( kcheckpass AUTOMOC
+ SOURCES
+ kcheckpass.c checkpass_etcpasswd.c checkpass_pam.c
+ checkpass_shadow.c checkpass_osfc2passwd.c checkpass_aix.c
+ LINK kdefakes-shared ${CRYPT_LIBRARY} ${PAM_LIBRARY}
+ DESTINATION ${BIN_INSTALL_DIR}
+)
+
+install( CODE "execute_process( COMMAND chown 0 \$ENV{DESTDIR}${_destination}/kcheckpass )" )
+install( CODE "execute_process( COMMAND chmod 4755 \$ENV{DESTDIR}${_destination}/kcheckpass )" )
diff --git a/kcheckpass/ConfigureChecks.cmake b/kcheckpass/ConfigureChecks.cmake
new file mode 100644
index 000000000..120869dac
--- /dev/null
+++ b/kcheckpass/ConfigureChecks.cmake
@@ -0,0 +1,16 @@
+#################################################
+#
+# (C) 2010-2011 Serghei Amelian
+# serghei (DOT) amelian (AT) gmail.com
+#
+# Improvements and feedback are welcome
+#
+# This file is released under GPL >= 2
+#
+#################################################
+
+find_library( CRYPT_LIBRARY crypt )
+
+if( WITH_PAM AND (NOT DEFINED KCHECKPASS_PAM_SERVICE) )
+ set( KCHECKPASS_PAM_SERVICE "kde" CACHE INTERNAL "" )
+endif( )