Rename kde-config to tde-config

r14.0.x
Timothy Pearson 12 years ago
parent d6ef9b7247
commit 6a565761ab

@ -31,7 +31,7 @@ Compile BibleTime 1.6.5.1:
cd ~
tar -xjf bibletime-1.6.5.1.tar.bz2
cd ~/bibletime-1.6.5.1 # Move to your source directory
kde-config --prefix # Displays your KDE directory (optional)
tde-config --prefix # Displays your KDE directory (optional)
./configure --prefix=<your KDE dir> # create makefiles
make # compile BibleTime
su -c "make install" # change to "root user" and install BibleTime

@ -31,7 +31,7 @@ Compile BibleTime @VERSION@:
cd ~
tar -xjf bibletime-@VERSION@.tar.bz2
cd ~/bibletime-@VERSION@ # Move to your source directory
kde-config --prefix # Displays your KDE directory (optional)
tde-config --prefix # Displays your KDE directory (optional)
./configure --prefix=<your KDE dir> # create makefiles
make # compile BibleTime
su -c "make install" # change to "root user" and install BibleTime

@ -4763,13 +4763,13 @@ AC_DEFUN([KDE_SET_PREFIX],
KDE_SET_DEFAULT_BINDIRS
if test "x$prefix" = "xNONE"; then
dnl no prefix given: look for kde-config in the PATH and deduce the prefix from it
KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
dnl no prefix given: look for tde-config in the PATH and deduce the prefix from it
KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend)
else
dnl prefix given: look for kde-config, preferrably in prefix, otherwise in PATH
dnl prefix given: look for tde-config, preferrably in prefix, otherwise in PATH
kde_save_PATH="$PATH"
PATH="$exec_prefix/bin:$prefix/bin:$PATH"
KDE_FIND_PATH(kde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(kde-config)], [], prepend)
KDE_FIND_PATH(tde-config, KDECONFIG, [$kde_default_bindirs], [KDE_MISSING_PROG_ERROR(tde-config)], [], prepend)
PATH="$kde_save_PATH"
fi
@ -4786,7 +4786,7 @@ AC_DEFUN([KDE_SET_PREFIX],
AC_MSG_CHECKING([where to install])
if test "x$prefix" = "xNONE"; then
prefix=$kde_libs_prefix
AC_MSG_RESULT([$prefix (as returned by kde-config)])
AC_MSG_RESULT([$prefix (as returned by tde-config)])
else
dnl --prefix was given. Compare prefixes and warn (in configure.in.bot.end) if different
given_prefix=$prefix

@ -19,10 +19,10 @@ messages:
echo Now extract the messages...
perl ./extractrc ../bibletime/xml/*.rc > ../bibletime/rc-dummy.cpp
perl ./preparetips ../docs/tips > ../bibletime/tips-dummy.cpp
$(XGETTEXT) -C -F -L C++ -ki18n -kI18N_NOOP -x `kde-config --prefix`/include/tde/kde.pot `find .. -type f -not -name clanguagemgr.cpp -and -name \*.cpp -or -name \*.h -or -name \*.cc` -o messages.pot
$(XGETTEXT) -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot `find .. -type f -not -name clanguagemgr.cpp -and -name \*.cpp -or -name \*.h -or -name \*.cc` -o messages.pot
recode iso8859-1..utf-8 messages.pot
cp ../bibletime/backend/clanguagemgr.cpp clanguagemgr.cpp
$(XGETTEXT) --from-code=utf-8 --join-existing -C -F -L C++ -ki18n -kI18N_NOOP -x `kde-config --prefix`/include/tde/kde.pot clanguagemgr.cpp -o messages.pot
$(XGETTEXT) --from-code=utf-8 --join-existing -C -F -L C++ -ki18n -kI18N_NOOP -x `tde-config --prefix`/include/tde/kde.pot clanguagemgr.cpp -o messages.pot
rm clanguagemgr.cpp
echo Finished creating messages.pot.

Loading…
Cancel
Save