diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-26 14:45:00 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-02-26 14:45:00 -0600 |
commit | 1281f76995fa76e129d6014eafa637ba8fc71152 (patch) | |
tree | 9bf0470f9bc77e48b4624259c72819f61cc41733 /tdecore | |
parent | cb810cbe208862a88a0f20b3721d05ea7448c8c5 (diff) | |
download | tdelibs-1281f76995fa76e129d6014eafa637ba8fc71152.tar.gz tdelibs-1281f76995fa76e129d6014eafa637ba8fc71152.zip |
Rename kde-config to tde-config
Diffstat (limited to 'tdecore')
-rw-r--r-- | tdecore/CMakeLists.txt | 8 | ||||
-rw-r--r-- | tdecore/Makefile.am | 6 | ||||
-rw-r--r-- | tdecore/configure.in.in | 2 | ||||
-rw-r--r-- | tdecore/tde-config.cpp.cmake (renamed from tdecore/kde-config.cpp.cmake) | 4 | ||||
-rw-r--r-- | tdecore/tde-config.cpp.in (renamed from tdecore/kde-config.cpp.in) | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/tdecore/CMakeLists.txt b/tdecore/CMakeLists.txt index 1409c6cde..d5dbf8f96 100644 --- a/tdecore/CMakeLists.txt +++ b/tdecore/CMakeLists.txt @@ -177,14 +177,14 @@ tde_add_library( ${target} SHARED ) -##### kde-config ################################ +##### tde-config ################################ # FIXME still need some research and improvements -configure_file( kde-config.cpp.cmake kde-config.cpp @ONLY ) +configure_file( tde-config.cpp.cmake tde-config.cpp @ONLY ) -tde_add_executable( kde-config - SOURCES ${CMAKE_CURRENT_BINARY_DIR}/kde-config.cpp +tde_add_executable( tde-config + SOURCES ${CMAKE_CURRENT_BINARY_DIR}/tde-config.cpp LINK tdecore-shared DESTINATION ${BIN_INSTALL_DIR} ) diff --git a/tdecore/Makefile.am b/tdecore/Makefile.am index 976307ebd..f8856108c 100644 --- a/tdecore/Makefile.am +++ b/tdecore/Makefile.am @@ -168,9 +168,9 @@ kcharsets.lo: kentities.c parser: kentities.gperf cd $(srcdir) && gperf -a -L "ANSI-C" -E -C -c -o -t -k '*' -Nkde_findEntity -D -Hhash_Entity -Wwordlist_Entity -s 2 kentities.gperf > kentities.c -bin_PROGRAMS = kde-config kgrantpty +bin_PROGRAMS = tde-config kgrantpty -kde_config_SOURCES = kde-config.cpp +kde_config_SOURCES = tde-config.cpp kde_config_LDADD = ./libtdecore.la kde_config_LDFLAGS = $(KDE_RPATH) $(KDE_MT_LDFLAGS) @@ -186,7 +186,7 @@ install-exec-hook: @echo "This is needed for konsole, etc. to ensure that they can't be eavesdropped." @echo "" -DISTCLEANFILES = kde-config.cpp +DISTCLEANFILES = tde-config.cpp DOXYGEN_REFERENCES = dcop tdeui kparts kio DOXYGEN_EXCLUDE = malloc kde_file.h diff --git a/tdecore/configure.in.in b/tdecore/configure.in.in index 7439a7c12..ce957c92b 100644 --- a/tdecore/configure.in.in +++ b/tdecore/configure.in.in @@ -167,7 +167,7 @@ AC_TRY_LINK(dnl AC_CHECK_HEADERS(sys/mount.h) -dnl AC_OUTPUT(tdecore/kde-config.cpp) +dnl AC_OUTPUT(tdecore/tde-config.cpp) AM_CONFIG_HEADER(tdecore/kdemacros.h) diff --git a/tdecore/kde-config.cpp.cmake b/tdecore/tde-config.cpp.cmake index 8b3dd7afd..6716a24f6 100644 --- a/tdecore/kde-config.cpp.cmake +++ b/tdecore/tde-config.cpp.cmake @@ -114,12 +114,12 @@ void printResult(const TQString &s) int main(int argc, char **argv) { KLocale::setMainCatalogue("tdelibs"); - KAboutData about("kde-config", "kde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow"); + KAboutData about("tde-config", "tde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow"); KCmdLineArgs::init( argc, argv, &about); KCmdLineArgs::addCmdLineOptions( options ); // Add my own options. - KInstance a("kde-config"); + KInstance a("tde-config"); (void)KGlobal::dirs(); // trigger the creation (void)KGlobal::config(); diff --git a/tdecore/kde-config.cpp.in b/tdecore/tde-config.cpp.in index 0fdf56e3d..e5ee257c1 100644 --- a/tdecore/kde-config.cpp.in +++ b/tdecore/tde-config.cpp.in @@ -114,12 +114,12 @@ void printResult(const TQString &s) int main(int argc, char **argv) { KLocale::setMainCatalogue("tdelibs"); - KAboutData about("kde-config", "kde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow"); + KAboutData about("tde-config", "tde-config", "1.0", description, KAboutData::License_GPL, "(C) 2000 Stephan Kulow"); KCmdLineArgs::init( argc, argv, &about); KCmdLineArgs::addCmdLineOptions( options ); // Add my own options. - KInstance a("kde-config"); + KInstance a("tde-config"); (void)KGlobal::dirs(); // trigger the creation (void)KGlobal::config(); |