Updated cmake files to allow building the package, although it is just a dummy package (not functional).

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
r14.0.x
Michele Calgaro 2 years ago
parent 796d4dc1ab
commit ab12cfe230
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -1,42 +1,81 @@
project(polkit-kde-agent-1) ############################################
# #
# Improvements and feedbacks are welcome #
# #
# This file is released under GPL >= 3 #
# #
############################################
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake/modules")
find_package(KDE4 REQUIRED) cmake_minimum_required( VERSION 2.8.12 )
set(POLKITQT-1_MIN_VERSION "0.99.0")
find_package(PolkitQt-1 REQUIRED)
include_directories(${KDE4_INCLUDES} #### general package setup
${POLKITQT-1_INCLUDE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR})
set(policykit_SRCS project( polkit-agent-tde )
policykitkde.cpp set( VERSION R14.1.0 )
policykitlistener.cpp
main.cpp
AuthDialog.cpp
)
qt4_add_dbus_adaptor(policykit_SRCS org.kde.Polkit1AuthAgent.xml policykitlistener.h PolicyKitListener)
kde4_add_ui_files(policykit_SRCS AuthDialog.ui authdetails.ui) #### include essential cmake modules
kde4_add_executable(polkit-kde-authentication-agent-1 ${policykit_SRCS}) include( FindPkgConfig )
include( CheckFunctionExists )
include( CheckSymbolExists )
include( CheckIncludeFile )
include( CheckLibraryExists )
include( CheckCSourceCompiles )
include( CheckCXXSourceCompiles )
target_link_libraries(polkit-kde-authentication-agent-1
${KDE4_TDEUI_LIBS}
${POLKITQT-1_LIBRARIES}
)
configure_file(polkit-kde-authentication-agent-1.desktop.in ${CMAKE_BINARY_DIR}/polkit-kde-authentication-agent-1.desktop) #### include our cmake modules
install(TARGETS polkit-kde-authentication-agent-1 DESTINATION ${LIBEXEC_INSTALL_DIR}) include( TDEMacros )
install(FILES ${CMAKE_BINARY_DIR}/polkit-kde-authentication-agent-1.desktop DESTINATION ${AUTOSTART_INSTALL_DIR})
install(FILES policykit1-kde.notifyrc DESTINATION ${DATA_INSTALL_DIR}/policykit1-kde) ##### setup install paths
include(MacroOptionalAddSubdirectory) include( TDESetupPaths )
macro_optional_add_subdirectory( po ) 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 )
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( src )
##### other data ################################
#tde_conditional_add_project_docs( BUILD_DOC )
#tde_conditional_add_project_translations( BUILD_TRANSLATIONS )
##### write configure files
configure_file( config.h.cmake config.h @ONLY )

@ -0,0 +1,34 @@
###########################################
# #
# 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 )
##### check for polkit-tqt
pkg_search_module( POLKIT_TQT polkit-tqt )
if( NOT POLKIT_TQT_FOUND )
tde_message_fatal( "polkit-tqt is required, but was not found on your system" )
endif( )

@ -0,0 +1,12 @@
#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@
/* Defined if you don't have either the XTest headers or
the xcb-util-keysyms headers */
#cmakedefine NO_XTEST_EXTENSION 1

2
debian/changelog vendored

@ -1,7 +1,7 @@
polkit-agent-tde (0.99.1-2) unstable; urgency=low polkit-agent-tde (0.99.1-2) unstable; urgency=low
* Port to TDE and package renaming * Port to TDE and package renaming
* Initial release for TDE * Initial release for TDE
-- Michele Calgaro <michele.calgaro@yahoo.it> Sun, 19 Dec 2021 18:12:00 +0900 -- Michele Calgaro <michele.calgaro@yahoo.it> Sun, 19 Dec 2021 18:12:00 +0900

@ -0,0 +1,32 @@
#################################################
#
# (C) 2021 Michele Calgaro
# Michele (DOT) Calgaro (AT) yahoo.it
#
# Improvements and feedback are welcome
#
# This file is released under GPL >= 2
#
#################################################
include_directories(
${CMAKE_SOURCE_DIR}
${CMAKE_CURRENT_SOURCE_DIR}
${CMAKE_CURRENT_BINARY_DIR}
${TQT_INCLUDE_DIRS}
${TDE_INCLUDE_DIR}
)
link_directories(
${TQT_LIBRARY_DIRS}
)
##### executables #########################
tde_add_executable( polkit-agent-tde AUTOMOC
SOURCES main.cpp
LINK tdecore-shared tdeui-shared
DESTINATION ${BIN_INSTALL_DIR}
)

@ -1,4 +1,4 @@
/* This file is part of the KDE project /* This file is part of the TDE project
Copyright (C) 2009 Jaroslav Reznik <jreznik@redhat.com> Copyright (C) 2009 Jaroslav Reznik <jreznik@redhat.com>
This program is free software; you can redistribute it and/or This program is free software; you can redistribute it and/or
@ -18,31 +18,41 @@
*/ */
#include <TDECmdLineArgs> #include <tdeaboutdata.h>
#include <TDEAboutData> #include <tdecmdlineargs.h>
#include <TDELocale> #include <tdelocale.h>
#include <TDECrash>
#include "policykitkde.h" #include <tqpushbutton.h>
#include <tdeapplication.h>
//#include "policykitkde.h"
int main(int argc, char *argv[]) int main(int argc, char *argv[])
{ {
TDEAboutData aboutData("Polkit1AuthAgent", "polkit-kde-authentication-agent-1", ki18n("PolicyKit1-KDE"), "0.99.0", TDEAboutData aboutData("polkit-agent-tde", I18N_NOOP("Polkit-Agent-TDE"), "0.99.1",
ki18n("PolicyKit1-KDE"), TDEAboutData::License_GPL, I18N_NOOP("A Polkit authentication agent for TDE"), TDEAboutData::License_GPL,
ki18n("(c) 2009 Red Hat, Inc.")); I18N_NOOP("(c) 2009 Red Hat, Inc."));
aboutData.addAuthor(ki18n("Jaroslav Reznik"), ki18n("Maintainer"), "jreznik@redhat.com"); aboutData.addAuthor(I18N_NOOP("Jaroslav Reznik"), I18N_NOOP("Maintainer"), "jreznik@redhat.com");
aboutData.setProductName("policykit-kde/polkit-kde-authentication-agent-1"); aboutData.setProductName("policykit-agent-tde");
TDECmdLineArgs::init(argc, argv, &aboutData); TDECmdLineArgs::init(argc, argv, &aboutData);
TDEApplication app;
if (!PolicyKitKDE::start()) { TQPushButton *pbQuit = new TQPushButton("Quit", 0);
tqWarning("PolicyKitKDE is already running!\n"); app.setMainWidget(pbQuit);
return 0; app.connect(&app, TQT_SIGNAL(lastWindowClosed()), TQT_SLOT(quit()));
} app.connect(pbQuit, TQT_SIGNAL(clicked()), &app, TQT_SLOT(quit()));
pbQuit->show();
TDECrash::setFlags(TDECrash::AutoRestart); return app.exec();
PolicyKitKDE agent; /*
agent.disableSessionManagement(); if (!PolicyKitKDE::start()) {
agent.exec(); tqWarning("PolicyKitKDE is already running!\n");
return 0;
}
TDECrash::setFlags(TDECrash::AutoRestart);
PolicyKitKDE agent;
agent.disableSessionManagement();
agent.exec();
*/
} }

Loading…
Cancel
Save