summaryrefslogtreecommitdiffstats
path: root/tdeio_ftps
diff options
context:
space:
mode:
authorgregory guy <[email protected]>2020-04-15 21:51:56 +0200
committerMichele Calgaro <[email protected]>2020-04-29 21:33:00 +0900
commit75c266a791f2ef04362029f479c56fb7f27a8ea9 (patch)
tree83a25a519a33c521f09356de655bb5e2b18885dc /tdeio_ftps
parent890e148d43ff28b15ec943860f7799e4122ddfb0 (diff)
downloadtdeio-ftps-75c266a791f2ef04362029f479c56fb7f27a8ea9.tar.gz
tdeio-ftps-75c266a791f2ef04362029f479c56fb7f27a8ea9.zip
Drop automake build support.
Add basic cmake build instructions. Rework of the README file. Add the MODULE directive to the build. Some cosmetics. Signed-off-by: gregory guy <[email protected]> (cherry picked from commit 634aaabc8f08f2f28442c00207bed03c186f8ea5)
Diffstat (limited to 'tdeio_ftps')
-rw-r--r--tdeio_ftps/CMakeLists.txt11
-rw-r--r--tdeio_ftps/Makefile.am26
-rw-r--r--tdeio_ftps/configure.in.in5
3 files changed, 8 insertions, 34 deletions
diff --git a/tdeio_ftps/CMakeLists.txt b/tdeio_ftps/CMakeLists.txt
index e61038b..1548296 100644
--- a/tdeio_ftps/CMakeLists.txt
+++ b/tdeio_ftps/CMakeLists.txt
@@ -14,9 +14,14 @@ link_directories(
##### tdeio_ftps (kpart)
-tde_add_kpart( tdeio_ftps AUTOMOC
- SOURCES ftp.cc
- LINK tdecore-shared tdeio-shared
+tde_add_kpart( tdeio_ftps MODULE AUTOMOC
+
+ SOURCES
+ ftp.cc
+ LINK
+ tdecore-shared
+ tdeio-shared
+
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/tdeio_ftps/Makefile.am b/tdeio_ftps/Makefile.am
deleted file mode 100644
index f18fad9..0000000
--- a/tdeio_ftps/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-
-# all_includes definiert alle Verzeichnisnamen fr ben�igte Headerdateien
-# INCLUDES wird zum Kompilieren benutzt.
-INCLUDES= $(all_includes)
-
-# lib_ bedeutet, dass das folgende in libdir installiert werden soll
-# _LTLIBRARIES bedeutet, dass es sich hierbei um libtool (also shared)
-# Bibliotheken handelt
-kde_module_LTLIBRARIES = tdeio_ftps.la
-
-# Die Quellen fr tdeio_hello.la (Punkt durch _ ersetzt)
-tdeio_ftps_la_SOURCES = ftp.cc ftp.h
-
-# Die Bibliothek libtdesycoca wird fr Slaves ben�igt
-tdeio_ftps_la_LIBADD = $(LIB_TDESYCOCA)
-
-# Die Link-Pfade inklusive all_libraries (siehe oben)
-# -module gibt an, dass es von anderen Programmen geladen wird und
-# nicht wirklich als Bibliothek benutzt wird. $(KDE_PLUGIN) enth�t
-# Standardflags fr KDE Module, z.B. um die Versionsnummern zu unter-
-# drcken
-tdeio_ftps_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) $(LIB_QT) $(LIB_TDECORE)
-
-# kde_services_ installiert in kde_servicesdir ($TDEDIR/share/services)
-# _DATA sind einfache Dateien
-kde_services_DATA = ftps.protocol
diff --git a/tdeio_ftps/configure.in.in b/tdeio_ftps/configure.in.in
deleted file mode 100644
index 341ecaf..0000000
--- a/tdeio_ftps/configure.in.in
+++ /dev/null
@@ -1,5 +0,0 @@
-dnl For tdeio_ftps
-AC_LANG_SAVE
-AC_LANG_CPLUSPLUS
-AC_CHECK_FUNCS( setfsent )
-AC_LANG_RESTORE