summaryrefslogtreecommitdiffstats
path: root/vcs/perforce
diff options
context:
space:
mode:
Diffstat (limited to 'vcs/perforce')
-rw-r--r--vcs/perforce/CMakeLists.txt2
-rw-r--r--vcs/perforce/Makefile.am2
-rw-r--r--vcs/perforce/README2
-rw-r--r--vcs/perforce/README.dox6
-rw-r--r--vcs/perforce/commitdlg.cpp4
-rw-r--r--vcs/perforce/commitdlg.h4
-rw-r--r--vcs/perforce/integrator/CMakeLists.txt2
-rw-r--r--vcs/perforce/integrator/Makefile.am2
-rw-r--r--vcs/perforce/integrator/perforceintegrator.cpp2
-rw-r--r--vcs/perforce/integrator/perforceintegrator.h2
-rw-r--r--vcs/perforce/integrator/pfintegratordlg.cpp2
-rw-r--r--vcs/perforce/integrator/pfintegratordlg.h2
-rw-r--r--vcs/perforce/perforcepart.cpp4
-rw-r--r--vcs/perforce/perforcepart.h4
14 files changed, 20 insertions, 20 deletions
diff --git a/vcs/perforce/CMakeLists.txt b/vcs/perforce/CMakeLists.txt
index d7b514a0..549eadb8 100644
--- a/vcs/perforce/CMakeLists.txt
+++ b/vcs/perforce/CMakeLists.txt
@@ -34,6 +34,6 @@ install( FILES kdevperforce.desktop DESTINATION ${SERVICES_INSTALL_DIR} )
tde_add_kpart( libkdevperforce AUTOMOC
SOURCES perforcepart.cpp commitdlg.cpp
- LINK kdevextensions-static kdevelop-shared
+ LINK kdevextensions-static tdevelop-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/vcs/perforce/Makefile.am b/vcs/perforce/Makefile.am
index e684e2f0..36e19325 100644
--- a/vcs/perforce/Makefile.am
+++ b/vcs/perforce/Makefile.am
@@ -5,7 +5,7 @@ INCLUDES = -I$(top_srcdir)/lib/interfaces \
kde_module_LTLIBRARIES = libkdevperforce.la
libkdevperforce_la_LDFLAGS = $(all_libraries) $(KDE_PLUGIN)
-libkdevperforce_la_LIBADD = $(top_builddir)/lib/libkdevelop.la $(top_builddir)/lib/interfaces/extensions/libkdevextensions.la
+libkdevperforce_la_LIBADD = $(top_builddir)/lib/libtdevelop.la $(top_builddir)/lib/interfaces/extensions/libkdevextensions.la
libkdevperforce_la_SOURCES = perforcepart.cpp commitdlg.cpp
diff --git a/vcs/perforce/README b/vcs/perforce/README
index 731741e1..7df3c4b5 100644
--- a/vcs/perforce/README
+++ b/vcs/perforce/README
@@ -1,3 +1,3 @@
Please read the on-line, automaticaly updated KDevelop API documentation at:
-http://www.kdevelop.org
+http://www.tdevelop.org
or read the README.dox file.
diff --git a/vcs/perforce/README.dox b/vcs/perforce/README.dox
index 6a0ae647..2c3fc3d8 100644
--- a/vcs/perforce/README.dox
+++ b/vcs/perforce/README.dox
@@ -1,10 +1,10 @@
/** \class PerforcePart
Integrates the perforce version managment system into KDevelop.
-\authors <a href="mailto:bernd AT kdevelop.org">Bernd Gehrmann</a> Copyright (C) 1999-2001
-\authors <a href="mailto:harry AT kdevelop.org">Harald Fernengel</a> Copyright (C) 2002-2003
+\authors <a href="mailto:bernd AT tdevelop.org">Bernd Gehrmann</a> Copyright (C) 1999-2001
+\authors <a href="mailto:harry AT tdevelop.org">Harald Fernengel</a> Copyright (C) 2002-2003
-\maintainer <a href="mailto:harry AT kdevelop.org">Harald Fernengel</a>
+\maintainer <a href="mailto:harry AT tdevelop.org">Harald Fernengel</a>
\feature edit, revert and submit
\feature use the diff frontend (also removes the crappy perforce diff headers)
diff --git a/vcs/perforce/commitdlg.cpp b/vcs/perforce/commitdlg.cpp
index 44ff0875..1f1f8290 100644
--- a/vcs/perforce/commitdlg.cpp
+++ b/vcs/perforce/commitdlg.cpp
@@ -1,7 +1,7 @@
/***************************************************************************
* Copyright (C) 1999, 2000 by Bernd Gehrmann *
- * bernd@kdevelop.org *
- * Modified for perforce 2002 by Harald Fernengel <harry@kdevelop.org> *
+ * bernd@tdevelop.org *
+ * Modified for perforce 2002 by Harald Fernengel <harry@tdevelop.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/commitdlg.h b/vcs/perforce/commitdlg.h
index a1642fd2..83766914 100644
--- a/vcs/perforce/commitdlg.h
+++ b/vcs/perforce/commitdlg.h
@@ -1,7 +1,7 @@
/***************************************************************************
* Copyright (C) 1999, 2000 by Bernd Gehrmann *
- * bernd@kdevelop.org *
- * Modified for perforce 2002 by Harald Fernengel <harry@kdevelop.org> *
+ * bernd@tdevelop.org *
+ * Modified for perforce 2002 by Harald Fernengel <harry@tdevelop.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/integrator/CMakeLists.txt b/vcs/perforce/integrator/CMakeLists.txt
index cd8fd0ee..e939e3ba 100644
--- a/vcs/perforce/integrator/CMakeLists.txt
+++ b/vcs/perforce/integrator/CMakeLists.txt
@@ -35,6 +35,6 @@ tde_add_kpart( libperforceintegrator AUTOMOC
SOURCES
perforceintegrator.cpp pfintegratordlgbase.ui
pfintegratordlg.cpp
- LINK kdevextras-shared kdevelop-shared
+ LINK kdevextras-shared tdevelop-shared
DESTINATION ${PLUGIN_INSTALL_DIR}
)
diff --git a/vcs/perforce/integrator/Makefile.am b/vcs/perforce/integrator/Makefile.am
index 0df84d8e..38e80bcd 100644
--- a/vcs/perforce/integrator/Makefile.am
+++ b/vcs/perforce/integrator/Makefile.am
@@ -6,7 +6,7 @@ kde_module_LTLIBRARIES = libperforceintegrator.la
libperforceintegrator_la_LDFLAGS = -avoid-version -no-undefined $(all_libraries)
libperforceintegrator_la_LIBADD =\
$(top_builddir)/lib/interfaces/extras/libkdevextras.la\
- $(top_builddir)/lib/libkdevelop.la
+ $(top_builddir)/lib/libtdevelop.la
kde_services_DATA = kdevperforceintegrator.desktop
noinst_HEADERS = perforceintegrator.h pfintegratordlg.h
libperforceintegrator_la_SOURCES = perforceintegrator.cpp \
diff --git a/vcs/perforce/integrator/perforceintegrator.cpp b/vcs/perforce/integrator/perforceintegrator.cpp
index bc7c0988..b881f94b 100644
--- a/vcs/perforce/integrator/perforceintegrator.cpp
+++ b/vcs/perforce/integrator/perforceintegrator.cpp
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2004 by Alexander Dymo *
- * adymo@kdevelop.org *
+ * adymo@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/integrator/perforceintegrator.h b/vcs/perforce/integrator/perforceintegrator.h
index 875d9a73..20026d82 100644
--- a/vcs/perforce/integrator/perforceintegrator.h
+++ b/vcs/perforce/integrator/perforceintegrator.h
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2004 by Alexander Dymo *
- * adymo@kdevelop.org *
+ * adymo@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/integrator/pfintegratordlg.cpp b/vcs/perforce/integrator/pfintegratordlg.cpp
index 8685b2f4..3a0ab9a5 100644
--- a/vcs/perforce/integrator/pfintegratordlg.cpp
+++ b/vcs/perforce/integrator/pfintegratordlg.cpp
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2004 by Alexander Dymo *
- * adymo@kdevelop.org *
+ * adymo@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/integrator/pfintegratordlg.h b/vcs/perforce/integrator/pfintegratordlg.h
index d20bd74c..7cb7b946 100644
--- a/vcs/perforce/integrator/pfintegratordlg.h
+++ b/vcs/perforce/integrator/pfintegratordlg.h
@@ -1,6 +1,6 @@
/***************************************************************************
* Copyright (C) 2004 by Alexander Dymo *
- * adymo@kdevelop.org *
+ * adymo@tdevelop.org *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/perforcepart.cpp b/vcs/perforce/perforcepart.cpp
index dd950121..ca81a8d4 100644
--- a/vcs/perforce/perforcepart.cpp
+++ b/vcs/perforce/perforcepart.cpp
@@ -1,7 +1,7 @@
/***************************************************************************
* Copyright (C) 1999-2001 by Bernd Gehrmann *
- * bernd@kdevelop.org *
- * Extended 2002 by Harald Fernengel <harry@kdevelop.org> *
+ * bernd@tdevelop.org *
+ * Extended 2002 by Harald Fernengel <harry@tdevelop.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
diff --git a/vcs/perforce/perforcepart.h b/vcs/perforce/perforcepart.h
index f7991438..3043a1a2 100644
--- a/vcs/perforce/perforcepart.h
+++ b/vcs/perforce/perforcepart.h
@@ -1,7 +1,7 @@
/***************************************************************************
* Copyright (C) 1999-2001 by Bernd Gehrmann *
- * bernd@kdevelop.org *
- * Extended to use perforce 2002 by Harald Fernengel <harry@kdevelop.org>*
+ * bernd@tdevelop.org *
+ * Extended to use perforce 2002 by Harald Fernengel <harry@tdevelop.org>*
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *