From 71f288193240340d0ac142f1f00900c2629a3f91 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Sun, 30 Sep 2018 16:36:46 +0200 Subject: [PATCH] convert to the cmake building system Signed-off-by: gregory guy --- CMakeLists.txt | 78 ++++++++++++++++++++++++++++++ ConfigureChecks.cmake | 44 +++++++++++++++++ config.h.cmake | 8 ++++ doc/CMakeLists.txt | 1 + doc/en/CMakeLists.txt | 1 + doc/man/CMakeLists.txt | 5 ++ doc/man/tdesudo.1 | 106 +++++++++++++++++++++++++++++++++++++++++ po/CMakeLists.txt | 1 + tdesudo/CMakeLists.txt | 29 +++++++++++ tdesudo/tdesudo.cpp | 2 + 10 files changed, 275 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 ConfigureChecks.cmake create mode 100644 config.h.cmake create mode 100644 doc/CMakeLists.txt create mode 100644 doc/en/CMakeLists.txt create mode 100644 doc/man/CMakeLists.txt create mode 100644 doc/man/tdesudo.1 create mode 100644 po/CMakeLists.txt create mode 100644 tdesudo/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..da25406 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,78 @@ +############################################ +# # +# Improvements and feedbacks are welcome # +# # +# This file is released under GPL >= 3 # +# # +############################################ + + +cmake_minimum_required( VERSION 2.8 ) + + +#### general package setup + +project( tdesudo ) +set( VERSION R14.1.0 ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckFunctionExists ) +include( CheckIncludeFile ) +include( CheckLibraryExists ) +include( CheckCSourceCompiles ) +include( CheckCXXSourceCompiles ) + + +#### include our cmake modules + +set( CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake/modules" ) +include( TDEMacros ) + + +##### setup install paths + +include( TDESetupPaths ) +tde_setup_paths( ) + + +##### optional stuff + +option( WITH_ALL_OPTIONS "Enable all optional support" OFF ) +option( WITH_GCC_VISIBILITY "Enable fvisibility and fvisibility-inlines-hidden" ${WITH_ALL_OPTIONS} ) + + +##### user requested modules + +option( BUILD_ALL "Build all" ON ) +option( BUILD_DOC "Build documentation" ${BUILD_ALL} ) +option( BUILD_TRANSLATIONS "Build translations" ${BUILD_ALL} ) + + +##### configure checks + +include( ConfigureChecks.cmake ) + + +###### global compiler settings + +add_definitions( -DHAVE_CONFIG_H -UTQT_NO_ASCII_CAST ) + +set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${TQT_CXX_FLAGS}" ) +set( CMAKE_SHARED_LINKER_FLAGS "-Wl,--no-undefined" ) +set( CMAKE_MODULE_LINKER_FLAGS "-Wl,--no-undefined" ) + + +##### directories + +add_subdirectory( ${PROJECT_NAME} ) +tde_conditional_add_subdirectory( BUILD_DOC doc ) +tde_conditional_add_subdirectory( BUILD_TRANSLATIONS po ) + + +##### write configure files + +configure_file( config.h.cmake config.h @ONLY ) + diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake new file mode 100644 index 0000000..dfd13ad --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,44 @@ +########################################### +# # +# Improvements and feedback are welcome # +# # +# This file is released under GPL >= 3 # +# # +########################################### + + +# required stuff +find_package( TQt ) +find_package( TDE ) + +tde_setup_architecture_flags( ) + +include(TestBigEndian) +test_big_endian(WORDS_BIGENDIAN) + + +##### check for gcc visibility support + +if( WITH_GCC_VISIBILITY ) + if( NOT UNIX ) + tde_message_fatal( "gcc visibility support was requested, but your system is not *NIX" ) + endif( NOT UNIX ) + set( __KDE_HAVE_GCC_VISIBILITY 1 ) + set( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden") + set( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fvisibility=hidden -fvisibility-inlines-hidden") +endif( WITH_GCC_VISIBILITY ) + + +##### gettext + +if( BUILD_TRANSLATIONS ) + include( FindGettext ) + if( GETTEXT_FOUND ) + set( MSGFMT_EXECUTABLE ${GETTEXT_MSGFMT_EXECUTABLE} + CACHE FILEPATH "path to msgfmt executable" ) + endif( GETTEXT_FOUND ) + + if( NOT MSGFMT_EXECUTABLE ) + tde_message_fatal( "msgfmt is required but was not found on your system." ) + endif( NOT MSGFMT_EXECUTABLE ) +endif( BUILD_TRANSLATIONS ) diff --git a/config.h.cmake b/config.h.cmake new file mode 100644 index 0000000..61ede3a --- /dev/null +++ b/config.h.cmake @@ -0,0 +1,8 @@ +#define VERSION "@VERSION@" + +// Defined if you have fvisibility and fvisibility-inlines-hidden support. +#cmakedefine __KDE_HAVE_GCC_VISIBILITY 1 + +/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most + significant byte first (like Motorola and SPARC, unlike Intel). */ +#cmakedefine WORDS_BIGENDIAN @WORDS_BIGENDIAN@ diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt new file mode 100644 index 0000000..6d0aa9f --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1 @@ +tde_auto_add_subdirectories( ) diff --git a/doc/en/CMakeLists.txt b/doc/en/CMakeLists.txt new file mode 100644 index 0000000..ba3ef3e --- /dev/null +++ b/doc/en/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_handbook( DESTINATION ${PROJECT_NAME} ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..8512250 --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/tdesudo.1 b/doc/man/tdesudo.1 new file mode 100644 index 0000000..f8ef7d3 --- /dev/null +++ b/doc/man/tdesudo.1 @@ -0,0 +1,106 @@ +'\" -*- coding: us-ascii -*- +.if \n(.g .ds T< \\FC +.if \n(.g .ds T> \\F[\n[.fam]] +.de URL +\\$2 \(la\\$1\(ra\\$3 +.. +.if \n(.g .mso www.tmac +.TH tdesudo 1 2007-03-26 "" "" +.SH NAME +tdesudo \- a sudo frontend for TDE +.SH SYNOPSIS +'nh +.fi +.ad l +\fBtdesudo\fR \kx +.if (\nx>(\n(.l/2)) .nr x (\n(.l/5) +'in \n(.iu+\nxu +[ +\fB\fIGeneric-options\fB\fR +] [ +\fB\fItdesudo-options\fB\fR +] +'in \n(.iu-\nxu +.ad b +'hy +.SH DESCRIPTION +tdesudo is a frontend for sudo for the TDE desktop. +.SH OPTIONS +.TP +\*(T<\fB\-\-help\fR\*(T> +Show help about options +.TP +\*(T<\fB\-\-help\-qt\fR\*(T> +Show Qt specific options +.TP +\*(T<\fB\-\-help\-tde\fR\*(T> +Show TDE specific options +.TP +\*(T<\fB\-\-help\-all\fR\*(T> +Show all options +.TP +\*(T<\fB\-\-author\fR\*(T> +Show author information +.TP +\*(T<\fB\-v\fR\*(T>, \*(T<\fB\-\-version\fR\*(T> +Show version information +.TP +\*(T<\fB\-\-license\fR\*(T> +Show license information +.TP +\*(T<\fB\-\-\fR\*(T> +Indicates end of options +.TP +\*(T<\fB\-c \(Fo command \(Fc\fR\*(T> +Specifies the command to run +.TP +\*(T<\fB\-u \(Fo user \(Fc\fR\*(T> +Specifies the target uid [default is root] +.TP +\*(T<\fB\-n\fR\*(T> +Do not keep password +.TP +\*(T<\fB\-s\fR\*(T> +Forgets all passwords +.TP +\*(T<\fB\-p \(Fo priority \(Fc\fR\*(T> +Set priority value: between 0 and 100, 0 is lowest [default is 50] +.TP +\*(T<\fB\-\-nonewdcop\fR\*(T> +Let command use existing dcopserver +.TP +\*(T<\fB\-\-comment \(Fo comment \(Fc\fR\*(T> +Comment to display in the dialog box +.TP +\*(T<\fB\-\-noignorebutton\fR\*(T> +Do not display \(Fo ignore \(Fc button +.TP +\*(T<\fB\-i \(Fo icon_name \(Fc\fR\*(T> +Specify icon to use in the password dialog +.TP +\*(T<\fB\-d\fR\*(T> +Do not show the command to be run in the dialog +.TP +\*(T<\fB\-r\fR\*(T> +Use realtime scheduling +.TP +\*(T<\fB\-f \(Fo file \(Fc\fR\*(T> +Use target UID if \(Fo file \(Fc is not writeable +.TP +\*(T<\fB\-t\fR\*(T> +Enable terminal output (no password keeping) +.PP +.TP +\*(T<\fB\-u\fR\*(T> +Sets a runas user +.SH COPYRIGHT +This manual page was written by Anthony Mercatante +<\*(T> for the +Ubuntu system (but may be used by others). +Permission is granted to copy, distribute and/or modify this document +under the terms of the GNU General Public License, +Version 2 or any later version published by the Free Software Foundation. +.PP +On Debian systems, the complete text of the GNU General Public +License can be found in +\*(T<\fI/usr/share/common\-licenses/GPL\fR\*(T>. diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 0000000..f5a2e1b --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1 @@ +tde_create_translation( LANG auto OUTPUT_NAME ${PROJECT_NAME} ) diff --git a/tdesudo/CMakeLists.txt b/tdesudo/CMakeLists.txt new file mode 100644 index 0000000..79cd5d5 --- /dev/null +++ b/tdesudo/CMakeLists.txt @@ -0,0 +1,29 @@ +include_directories( + ${CMAKE_BINARY_DIR} + ${CMAKE_CURRENT_BINARY_DIR} + ${CMAKE_CURRENT_SOURCE_DIR} + ${TDE_INCLUDE_DIR} + ${TQT_INCLUDE_DIRS} +) + +link_directories( + ${TQT_LIBRARY_DIRS} + ${TDE_LIB_DIR} +) + + +##### tdesudo (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + tdesudo.cpp + main.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + tdesu-shared + + DESTINATION ${BIN_INSTALL_DIR} +) diff --git a/tdesudo/tdesudo.cpp b/tdesudo/tdesudo.cpp index ac597b9..957722d 100644 --- a/tdesudo/tdesudo.cpp +++ b/tdesudo/tdesudo.cpp @@ -446,3 +446,5 @@ TQString TdeSudo::validArg(TQString arg) } return arg; } + +#include "tdesudo.moc"