summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:13:40 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-26 13:13:40 -0600
commit0067c3fe9dacaaa07c4cbddb51a516e943ebd940 (patch)
tree61e0b3852f9aece211c00d6c81fe635457f08ca2 /src
parent87e49a06e2f4ee153caeabfa4240e9ab94fbd135 (diff)
downloadsoundkonverter-0067c3fe9dacaaa07c4cbddb51a516e943ebd940.tar.gz
soundkonverter-0067c3fe9dacaaa07c4cbddb51a516e943ebd940.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am8
-rwxr-xr-xsrc/amarokscript/Makefile.am3
-rwxr-xr-xsrc/amarotdescript/Makefile.am3
-rw-r--r--src/amarotdescript/README (renamed from src/amarokscript/README)0
-rwxr-xr-xsrc/amarotdescript/soundKonverter.rb (renamed from src/amarokscript/soundKonverter.rb)0
-rwxr-xr-xsrc/config.cpp4
-rwxr-xr-xsrc/cuesheeteditor.cpp2
-rwxr-xr-xsrc/paranoia.cpp2
8 files changed, 11 insertions, 11 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
index 61820f7..afbee85 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -36,7 +36,7 @@ soundkonverter_SOURCES = cddb.cpp cdmanager.cpp cdopener.cpp combobutton.cpp \
optionseditor.cpp optionsrequester.cpp optionssimple.cpp outputdirectory.cpp paranoia.cpp \
progressindicator.cpp replaygain.cpp replaygainfilelist.cpp replaygainscanner.cpp \
soundkonverter.cpp soundkonverterapp.cpp
-soundkonverter_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -lktexteditor
+soundkonverter_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_KIO) -ltdetexteditor
soundkonverter_LDADD = $(LIB_TDEUI) $(LIB_KFILE) metadata/libmetadata.la \
pluginloader/libpluginloader.la -lcdda_interface -lcdda_paranoia
@@ -46,13 +46,13 @@ xdg_apps_DATA = soundkonverter.desktop
shellrcdir = $(kde_datadir)/soundkonverter
shellrc_DATA = soundkonverterui.rc
-SUBDIRS = amarokscript metadata pics pluginloader plugins
+SUBDIRS = amarotdescript metadata pics pluginloader plugins
soundkonverter_DEPENDENCIES = metadata/libmetadata.la \
pluginloader/libpluginloader.la
-amarokscriptsdir = $(kde_datadir)/amarok/scripts
+amarotdescriptsdir = $(kde_datadir)/amarok/scripts
servicemenusdir = $(kde_datadir)/konqueror/servicemenus
servicemenus_DATA = audiocd_extract_with_soundkonverter.desktop
-amarokscriptdir = $(kde_datadir)/soundkonverter/amarokscript
+amarotdescriptdir = $(kde_datadir)/soundkonverter/amarotdescript
bin_SCRIPTS = userscript.sh
userscriptdir = $(kde_datadir)/soundkonverter
userscript_SCRIPTS = userscript.sh
diff --git a/src/amarokscript/Makefile.am b/src/amarokscript/Makefile.am
deleted file mode 100755
index b8049a7..0000000
--- a/src/amarokscript/Makefile.am
+++ /dev/null
@@ -1,3 +0,0 @@
-amarokscriptdir = $(kde_datadir)/soundkonverter/amarokscript
-amarokscript_DATA = README \
- soundKonverter.rb
diff --git a/src/amarotdescript/Makefile.am b/src/amarotdescript/Makefile.am
new file mode 100755
index 0000000..7797a6e
--- /dev/null
+++ b/src/amarotdescript/Makefile.am
@@ -0,0 +1,3 @@
+amarotdescriptdir = $(kde_datadir)/soundkonverter/amarotdescript
+amarotdescript_DATA = README \
+ soundKonverter.rb
diff --git a/src/amarokscript/README b/src/amarotdescript/README
index 1186231..1186231 100644
--- a/src/amarokscript/README
+++ b/src/amarotdescript/README
diff --git a/src/amarokscript/soundKonverter.rb b/src/amarotdescript/soundKonverter.rb
index 144c0c8..144c0c8 100755
--- a/src/amarokscript/soundKonverter.rb
+++ b/src/amarotdescript/soundKonverter.rb
diff --git a/src/config.cpp b/src/config.cpp
index 4ec463b..bc635b8 100755
--- a/src/config.cpp
+++ b/src/config.cpp
@@ -640,10 +640,10 @@ void Config::writeAmarokScript()
KStandardDirs* stdDirs = new KStandardDirs();
if( !TQFile::exists(locateLocal("data","amarok/scripts/soundKonverter/soundKonverter.rb")) ) {
- TDEIO::NetAccess::file_copy( stdDirs->findResource("data","soundkonverter/amarokscript/soundKonverter.rb"), locateLocal("data","amarok/scripts/soundKonverter/soundKonverter.rb"), 0755, true );
+ TDEIO::NetAccess::file_copy( stdDirs->findResource("data","soundkonverter/amarotdescript/soundKonverter.rb"), locateLocal("data","amarok/scripts/soundKonverter/soundKonverter.rb"), 0755, true );
}
if( !TQFile::exists(locateLocal("data","amarok/scripts/soundKonverter/README")) ) {
- TDEIO::NetAccess::file_copy( stdDirs->findResource("data","soundkonverter/amarokscript/README"), locateLocal("data","amarok/scripts/soundKonverter/README"), -1, true );
+ TDEIO::NetAccess::file_copy( stdDirs->findResource("data","soundkonverter/amarotdescript/README"), locateLocal("data","amarok/scripts/soundKonverter/README"), -1, true );
}
delete stdDirs;
}
diff --git a/src/cuesheeteditor.cpp b/src/cuesheeteditor.cpp
index 812e916..bb07fa6 100755
--- a/src/cuesheeteditor.cpp
+++ b/src/cuesheeteditor.cpp
@@ -10,7 +10,7 @@
#include <kmessagebox.h>
//#include <ktextedit.h>
-/*#include <kparts/factory.h> // KPart Factory
+/*#include <tdeparts/factory.h> // KPart Factory
#include <klibloader.h> // LibLoader, contains factories
#include <kate/document.h> // Katepart document
#include <kate/view.h> // Katepart view
diff --git a/src/paranoia.cpp b/src/paranoia.cpp
index fba3d83..6031e84 100755
--- a/src/paranoia.cpp
+++ b/src/paranoia.cpp
@@ -36,7 +36,7 @@
#include <kpushbutton.h>
#include <kiconloader.h>
#include <kfiledialog.h>
-#include <kparts/componentfactory.h>
+#include <tdeparts/componentfactory.h>
#include "paranoia.h"