From 26f73f5100c4917f50f593f55fc96776055d2b39 Mon Sep 17 00:00:00 2001 From: gregory guy Date: Thu, 9 May 2019 16:11:56 +0200 Subject: [PATCH] conversion to the cmake building system Signed-off-by: gregory guy --- CMakeLists.txt | 80 ++++++++++++++++++++++++++++++ ConfigureChecks.cmake | 25 ++++++++++ config.h.cmake | 8 +++ doc/CMakeLists.txt | 1 + doc/man/CMakeLists.txt | 5 ++ doc/man/kdpkg-install.1 | 34 +++++++++++++ doc/man/kdpkg.1 | 34 +++++++++++++ icon/CMakeLists.txt | 1 + kdpkg-install/CMakeLists.txt | 47 ++++++++++++++++++ kdpkg-install/icons/CMakeLists.txt | 6 +++ kdpkg-install/process.cpp | 2 +- kdpkg/CMakeLists.txt | 38 ++++++++++++++ kdpkg/process.cpp | 2 +- po/CMakeLists.txt | 7 +++ 14 files changed, 288 insertions(+), 2 deletions(-) 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/man/CMakeLists.txt create mode 100644 doc/man/kdpkg-install.1 create mode 100644 doc/man/kdpkg.1 create mode 100644 icon/CMakeLists.txt create mode 100644 kdpkg-install/CMakeLists.txt create mode 100644 kdpkg-install/icons/CMakeLists.txt create mode 100644 kdpkg/CMakeLists.txt create mode 100644 po/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..c4e675a --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,80 @@ +############################################ +# # +# Improvements and feedbacks are welcome # +# # +# This file is released under GPL >= 3 # +# # +############################################ + + +cmake_minimum_required( VERSION 2.8 ) + + +#### general package setup + +project( kdpkg ) +set( VERSION R14.1.0 ) + + +#### include essential cmake modules + +include( FindPkgConfig ) +include( CheckFunctionExists ) +include( CheckSymbolExists ) +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 "${CMAKE_SHARED_LINKER_FLAGS} -Wl,--no-undefined" ) +set( CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -Wl,--no-undefined" ) + + +##### directories + +add_subdirectory( icon ) +add_subdirectory( ${PROJECT_NAME} ) +add_subdirectory( ${PROJECT_NAME}-install ) +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..d1e3778 --- /dev/null +++ b/ConfigureChecks.cmake @@ -0,0 +1,25 @@ +########################################### +# # +# 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) + +tde_setup_largefiles( ) + + +##### check for gcc visibility support + +if( WITH_GCC_VISIBILITY ) + tde_setup_gcc_visibility( ) +endif( WITH_GCC_VISIBILITY ) 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..b0bb74c --- /dev/null +++ b/doc/CMakeLists.txt @@ -0,0 +1 @@ +add_subdirectory( man ) diff --git a/doc/man/CMakeLists.txt b/doc/man/CMakeLists.txt new file mode 100644 index 0000000..f377dfe --- /dev/null +++ b/doc/man/CMakeLists.txt @@ -0,0 +1,5 @@ +INSTALL( + FILES ${PROJECT_NAME}.1 ${PROJECT_NAME}-install.1 + DESTINATION ${MAN_INSTALL_DIR}/man1 + COMPONENT doc +) diff --git a/doc/man/kdpkg-install.1 b/doc/man/kdpkg-install.1 new file mode 100644 index 0000000..c49586d --- /dev/null +++ b/doc/man/kdpkg-install.1 @@ -0,0 +1,34 @@ +'\" -*- 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 kdpkg 1 2008-07-03 "" "" +.SH NAME +kdpkg \- TDE frontend for dpkg +.SH SYNOPSIS +'nh +.fi +.ad l +\fBkdpkg\fR \kx +.if (\nx>(\n(.l/2)) .nr x (\n(.l/5) +'in \n(.iu+\nxu +'in \n(.iu-\nxu +.ad b +'hy +.SH DESCRIPTION +If you klick on a .deb file kdpkg starts automatically for installing it. +It works like gdebi with the difference that kdpkg is a TDE application +.SH COPYRIGHT +This manual page was written by Alexander Kopf +<\*(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\-2\fR\*(T>. diff --git a/doc/man/kdpkg.1 b/doc/man/kdpkg.1 new file mode 100644 index 0000000..c49586d --- /dev/null +++ b/doc/man/kdpkg.1 @@ -0,0 +1,34 @@ +'\" -*- 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 kdpkg 1 2008-07-03 "" "" +.SH NAME +kdpkg \- TDE frontend for dpkg +.SH SYNOPSIS +'nh +.fi +.ad l +\fBkdpkg\fR \kx +.if (\nx>(\n(.l/2)) .nr x (\n(.l/5) +'in \n(.iu+\nxu +'in \n(.iu-\nxu +.ad b +'hy +.SH DESCRIPTION +If you klick on a .deb file kdpkg starts automatically for installing it. +It works like gdebi with the difference that kdpkg is a TDE application +.SH COPYRIGHT +This manual page was written by Alexander Kopf +<\*(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\-2\fR\*(T>. diff --git a/icon/CMakeLists.txt b/icon/CMakeLists.txt new file mode 100644 index 0000000..63f765b --- /dev/null +++ b/icon/CMakeLists.txt @@ -0,0 +1 @@ +tde_install_icons( ) diff --git a/kdpkg-install/CMakeLists.txt b/kdpkg-install/CMakeLists.txt new file mode 100644 index 0000000..0dc2bf9 --- /dev/null +++ b/kdpkg-install/CMakeLists.txt @@ -0,0 +1,47 @@ +add_subdirectory( icons ) + +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} +) + + +##### kdpkg-install (executable) + +tde_add_executable( ${PROJECT_NAME}-install AUTOMOC + + SOURCES + installdialog.ui + consoledialog.ui + main.cpp + install.cpp + process.cpp + console.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### other data + +install( + FILES ${PROJECT_NAME}-install.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) + +install( + PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/sh/${PROJECT_NAME}-sh + DESTINATION ${SHARE_INSTALL_PREFIX}/${PROJECT_NAME}/sh +) diff --git a/kdpkg-install/icons/CMakeLists.txt b/kdpkg-install/icons/CMakeLists.txt new file mode 100644 index 0000000..904fe23 --- /dev/null +++ b/kdpkg-install/icons/CMakeLists.txt @@ -0,0 +1,6 @@ +file( GLOB _pics RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.png ) + +install( + FILES ${_pics} + DESTINATION ${SHARE_INSTALL_PREFIX}/${PROJECT_NAME}/icons +) diff --git a/kdpkg-install/process.cpp b/kdpkg-install/process.cpp index 97c2f6b..569b2ac 100644 --- a/kdpkg-install/process.cpp +++ b/kdpkg-install/process.cpp @@ -59,5 +59,5 @@ _buffer.append(TQString::fromLocal8Bit(buffer, len)); } - +#include "process.moc" diff --git a/kdpkg/CMakeLists.txt b/kdpkg/CMakeLists.txt new file mode 100644 index 0000000..cf6bfc9 --- /dev/null +++ b/kdpkg/CMakeLists.txt @@ -0,0 +1,38 @@ +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} +) + + +##### kdpkg (executable) + +tde_add_executable( ${PROJECT_NAME} AUTOMOC + + SOURCES + kdpkgdialog.ui + main.cpp + kdpkg.cpp + process.cpp + LINK + tdecore-shared + tdeui-shared + tdeio-shared + + DESTINATION ${BIN_INSTALL_DIR} +) + + +##### other data + +install( + FILES ${PROJECT_NAME}.desktop + DESTINATION ${XDG_APPS_INSTALL_DIR} +) diff --git a/kdpkg/process.cpp b/kdpkg/process.cpp index b7f08f0..b901927 100644 --- a/kdpkg/process.cpp +++ b/kdpkg/process.cpp @@ -59,5 +59,5 @@ _buffer.append(TQString::fromLocal8Bit(buffer, len)); } - +#include "process.moc" diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt new file mode 100644 index 0000000..dd31c67 --- /dev/null +++ b/po/CMakeLists.txt @@ -0,0 +1,7 @@ +file( GLOB_RECURSE po_files RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po ) + +foreach( _po ${po_files} ) + string( REPLACE "/" ";" _path "${_po}" ) + list( GET _path 0 _lang ) + tde_create_translation( FILES ${_po} LANG ${_lang} ) +endforeach( )