summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am58
-rwxr-xr-xsrc/amarokscript/Makefile.am3
-rw-r--r--src/metadata/Makefile.am29
-rw-r--r--src/metadata/aac/Makefile.am12
-rwxr-xr-xsrc/metadata/ape/Makefile.am6
-rw-r--r--src/metadata/asf/Makefile.am20
-rw-r--r--src/metadata/audible/Makefile.am17
-rw-r--r--src/metadata/m4a/Makefile.am84
-rwxr-xr-xsrc/metadata/optimfrog/Makefile.am6
-rw-r--r--src/metadata/rmff/Makefile.am15
-rw-r--r--src/metadata/speex/Makefile.am16
-rw-r--r--src/metadata/trueaudio/Makefile.am16
-rw-r--r--src/metadata/wav/Makefile.am15
-rw-r--r--src/metadata/wavpack/Makefile.am16
-rwxr-xr-xsrc/pics/Makefile.am7
-rwxr-xr-xsrc/pluginloader/Makefile.am9
-rwxr-xr-xsrc/plugins/Makefile.am5
-rw-r--r--src/plugins/format_infos/Makefile.am5
-rwxr-xr-xsrc/plugins/mime_types/Makefile.am11
-rw-r--r--src/plugins/plugins/Makefile.am14
20 files changed, 0 insertions, 364 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
deleted file mode 100644
index 7b28f13..0000000
--- a/src/Makefile.am
+++ /dev/null
@@ -1,58 +0,0 @@
-# set the include path for X, qt and KDE
-INCLUDES = $(all_includes) -I$(top_srcdir)/src/metadata/ \
- -I$(top_srcdir)/src/pluginloader/ $(cdda_includes)
-
-# these are the headers for your project
-noinst_HEADERS = cdmanager.h cdopener.h combobutton.h configuration.h \
- configbackendspage.h configdialog.h configenvironmentpage.h configgeneralpage.h \
- configpagebase.h configpluginspage.h conversionoptions.h convert.h cuesheeteditor.h \
- dcopinterface.h dirdialog.h filelist.h logger.h logviewer.h options.h optionsdetailed.h \
- optionseditor.h optionsrequester.h optionssimple.h outputdirectory.h \
- progressindicator.h replaygain.h replaygainfilelist.h replaygainscanner.h soundkonverter.h \
- soundkonverterapp.h
-
-# let automoc handle all of the meta source files (moc)
-METASOURCES = AUTO
-
-messages: rc.cpp
- $(EXTRACTRC) `find . -name \*.ui -o -name \*.rc` > rc.cpp
- $(XGETTEXT) *.cpp -o $(podir)/soundkonverter.pot
-
-KDE_ICON = AUTO
-
-#########################################################################
-# APPLICATION SECTION
-#########################################################################
-# this is the program that gets installed. it's name is used for all
-# of the other Makefile.am variables
-bin_PROGRAMS = soundkonverter
-
-# the application source, library search path, and link libraries
-soundkonverter_SOURCES = cddb.cpp cdmanager.cpp cdopener.cpp combobutton.cpp \
- configuration.cpp configbackendspage.cpp configdialog.cpp configenvironmentpage.cpp \
- configgeneralpage.cpp configpagebase.cpp configpluginspage.cpp conversionoptions.cpp \
- convert.cpp cuesheeteditor.cpp dcopinterface.skel dirdialog.cpp filelist.cpp \
- logger.cpp logviewer.cpp main.cpp options.cpp optionsdetailed.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_TQT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor
-soundkonverter_LDADD = $(LIB_TDEUI) $(LIB_TDEFILE) metadata/libmetadata.la \
- pluginloader/libpluginloader.la -lcdda_interface -lcdda_paranoia
-
-xdg_apps_DATA = soundkonverter.desktop
-
-# this is where the shell's XML-GUI resource file goes
-shellrcdir = $(kde_datadir)/soundkonverter
-shellrc_DATA = soundkonverterui.rc
-
-SUBDIRS = amarokscript metadata pics pluginloader plugins
-soundkonverter_DEPENDENCIES = metadata/libmetadata.la \
- pluginloader/libpluginloader.la
-amarokscriptsdir = $(kde_datadir)/amarok/scripts
-servicemenusdir = $(kde_datadir)/konqueror/servicemenus
-servicemenus_DATA = audiocd_extract_with_soundkonverter.desktop
-amarokscriptdir = $(kde_datadir)/soundkonverter/amarokscript
-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/metadata/Makefile.am b/src/metadata/Makefile.am
deleted file mode 100644
index 494ee23..0000000
--- a/src/metadata/Makefile.am
+++ /dev/null
@@ -1,29 +0,0 @@
-SUBDIRS = speex wavpack trueaudio asf audible rmff m4a aac wav ape optimfrog
-
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libmetadata_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libmetadata.la
-
-libmetadata_la_SOURCES = \
- tplugins.cpp \
- tagengine.cpp
-
-noinst_HEADERS = \
- tplugins.h \
- tagengine.h
-
-libmetadata_la_LIBADD = \
- speex/libtagspeex.la \
- trueaudio/libtagtrueaudio.la \
- wavpack/libtagwavpack.la \
- asf/libtagasf.la \
- wav/libtagwav.la \
- rmff/libtagrealmedia.la \
- m4a/libtagm4a.la \
- $(taglib_libs) \
- aac/libtagaac.la \
- audible/libtagaudible.la \
- ape/libtagmonkeysaudio.la \
- optimfrog/libtagoptimfrog.la
diff --git a/src/metadata/aac/Makefile.am b/src/metadata/aac/Makefile.am
deleted file mode 100644
index b6b0f43..0000000
--- a/src/metadata/aac/Makefile.am
+++ /dev/null
@@ -1,12 +0,0 @@
-SUBDIRS =
-METASOURCES = AUTO
-INCLUDES = $(all_includes) $(taglib_includes)
-
-libtagaac_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagaac.la
-
-libtagaac_la_SOURCES = \
- aacfiletyperesolver.cpp
-
-noinst_HEADERS = \
- aacfiletyperesolver.h
diff --git a/src/metadata/ape/Makefile.am b/src/metadata/ape/Makefile.am
deleted file mode 100755
index 156cf91..0000000
--- a/src/metadata/ape/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagmonkeysaudio_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagmonkeysaudio.la
-noinst_HEADERS = taglib_monkeysaudiofiletyperesolver.h
-libtagmonkeysaudio_la_SOURCES = taglib_monkeysaudiofiletyperesolver.cpp
diff --git a/src/metadata/asf/Makefile.am b/src/metadata/asf/Makefile.am
deleted file mode 100644
index 63fa0e1..0000000
--- a/src/metadata/asf/Makefile.am
+++ /dev/null
@@ -1,20 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagasf_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagasf.la
-
-libtagasf_la_SOURCES = \
- asfattribute.cpp \
- asfproperties.cpp \
- asftag.cpp \
- asffile.cpp \
- taglib_asffiletyperesolver.cpp
-
-noinst_HEADERS = \
- asfattribute.h \
- asfproperties.h \
- asftag.h \
- asffile.h \
- taglib_asffiletyperesolver.h
diff --git a/src/metadata/audible/Makefile.am b/src/metadata/audible/Makefile.am
deleted file mode 100644
index dcade34..0000000
--- a/src/metadata/audible/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagaudible_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagaudible.la
-
-libtagaudible_la_SOURCES = audibleproperties.cpp \
- audibletag.cpp \
- taglib_audiblefile.cpp \
- taglib_audiblefiletyperesolver.cpp
-
-noinst_HEADERS = audibleproperties.h \
- audibletag.h \
- taglib_audiblefile.h \
- taglib_audiblefiletyperesolver.h
-
diff --git a/src/metadata/m4a/Makefile.am b/src/metadata/m4a/Makefile.am
deleted file mode 100644
index 34d9af4..0000000
--- a/src/metadata/m4a/Makefile.am
+++ /dev/null
@@ -1,84 +0,0 @@
-SUBDIRS =
-METASOURCES = AUTO
-INCLUDES = $(all_includes) $(taglib_includes)
-
-libtagm4a_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagm4a.la
-
-libtagm4a_la_SOURCES = \
- taglib_mp4filetyperesolver.cpp \
- mp4file.cpp \
- mp4itunestag.cpp \
- mp4isobox.cpp \
- mp4isofullbox.cpp \
- mp4skipbox.cpp \
- mp4moovbox.cpp \
- mp4mvhdbox.cpp \
- mp4ilstbox.cpp \
- boxfactory.cpp \
- mp4fourcc.cpp \
- mp4udtabox.cpp \
- mp4metabox.cpp \
- mp4tagsproxy.cpp \
- mp4mdiabox.cpp \
- mp4minfbox.cpp \
- mp4audioproperties.cpp \
- mp4hdlrbox.cpp \
- mp4stblbox.cpp \
- mp4audiosampleentry.cpp \
- mp4stsdbox.cpp \
- mp4sampleentry.cpp \
- mp4trakbox.cpp \
- mp4propsproxy.cpp \
- itunesnambox.cpp \
- itunesartbox.cpp \
- itunesalbbox.cpp \
- itunescvrbox.cpp \
- itunesgenbox.cpp \
- itunestrknbox.cpp \
- itunesdaybox.cpp \
- itunescmtbox.cpp \
- itunesgrpbox.cpp \
- ituneswrtbox.cpp \
- itunesdiskbox.cpp \
- itunestmpobox.cpp \
- itunesdatabox.cpp
-
-noinst_HEADERS = \
- taglib_mp4filetyperesolver.h \
- mp4file.h \
- mp4itunestag.h \
- mp4isobox.h \
- mp4isofullbox.h \
- mp4skipbox.h \
- mp4moovbox.h \
- mp4mvhdbox.h \
- mp4ilstbox.h \
- boxfactory.h \
- mp4fourcc.h \
- mp4udtabox.h \
- mp4metabox.h \
- mp4tagsproxy.h \
- mp4audioproperties.h \
- mp4hdlrbox.h \
- mp4propsproxy.h \
- mp4mdiabox.h \
- mp4stsdbox.h \
- mp4trakbox.h \
- mp4stblbox.h \
- mp4audiosampleentry.h \
- mp4minfbox.h \
- mp4sampleentry.h \
- itunesnambox.h \
- itunesartbox.h \
- itunesalbbox.h \
- itunesgenbox.h \
- itunestrknbox.h \
- itunesdaybox.h \
- itunescmtbox.h \
- itunescvrbox.h \
- itunesgrpbox.h \
- ituneswrtbox.h \
- itunesdiskbox.h \
- itunestmpobox.h \
- itunesdatabox.h
diff --git a/src/metadata/optimfrog/Makefile.am b/src/metadata/optimfrog/Makefile.am
deleted file mode 100755
index f2b7e6b..0000000
--- a/src/metadata/optimfrog/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagoptimfrog_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagoptimfrog.la
-noinst_HEADERS = taglib_optimfrogfiletyperesolver.h
-libtagoptimfrog_la_SOURCES = taglib_optimfrogfiletyperesolver.cpp
diff --git a/src/metadata/rmff/Makefile.am b/src/metadata/rmff/Makefile.am
deleted file mode 100644
index b493e66..0000000
--- a/src/metadata/rmff/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagrealmedia_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagrealmedia.la
-
-libtagrealmedia_la_SOURCES = rmff.cpp \
- taglib_realmediafile.cpp \
- taglib_realmediafiletyperesolver.cpp
-
-noinst_HEADERS = rmff.h \
- taglib_realmediafile.h \
- taglib_realmediafiletyperesolver.h
-
diff --git a/src/metadata/speex/Makefile.am b/src/metadata/speex/Makefile.am
deleted file mode 100644
index 6bf01aa..0000000
--- a/src/metadata/speex/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagspeex_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagspeex.la
-
-libtagspeex_la_SOURCES = \
- speexfile.cpp \
- speexproperties.cpp \
- taglib_speexfiletyperesolver.cpp
-
-noinst_HEADERS = speexfile.h \
- speexproperties.h \
- taglib_speexfiletyperesolver.h
-
diff --git a/src/metadata/trueaudio/Makefile.am b/src/metadata/trueaudio/Makefile.am
deleted file mode 100644
index 01af09f..0000000
--- a/src/metadata/trueaudio/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagtrueaudio_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagtrueaudio.la
-
-libtagtrueaudio_la_SOURCES = \
- ttafile.cpp \
- ttaproperties.cpp \
- taglib_trueaudiofiletyperesolver.cpp
-
-noinst_HEADERS = ttafile.h \
- ttaproperties.h \
- taglib_trueaudiofiletyperesolver.h
-
diff --git a/src/metadata/wav/Makefile.am b/src/metadata/wav/Makefile.am
deleted file mode 100644
index add569f..0000000
--- a/src/metadata/wav/Makefile.am
+++ /dev/null
@@ -1,15 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagwav_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagwav.la
-
-libtagwav_la_SOURCES = wavproperties.cpp \
- wavfile.cpp \
- wavfiletyperesolver.cpp
-
-noinst_HEADERS = wavproperties.h \
- wavfile.h \
- wavfiletyperesolver.h
-
diff --git a/src/metadata/wavpack/Makefile.am b/src/metadata/wavpack/Makefile.am
deleted file mode 100644
index 93a98c6..0000000
--- a/src/metadata/wavpack/Makefile.am
+++ /dev/null
@@ -1,16 +0,0 @@
-SUBDIRS =
-
-INCLUDES = $(all_includes) $(taglib_includes)
-METASOURCES = AUTO
-libtagwavpack_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libtagwavpack.la
-
-libtagwavpack_la_SOURCES = \
- wvfile.cpp \
- wvproperties.cpp \
- taglib_wavpackfiletyperesolver.cpp
-
-noinst_HEADERS = wvfile.h \
- wvproperties.h \
- taglib_wavpackfiletyperesolver.h
-
diff --git a/src/pics/Makefile.am b/src/pics/Makefile.am
deleted file mode 100755
index 4120423..0000000
--- a/src/pics/Makefile.am
+++ /dev/null
@@ -1,7 +0,0 @@
-picsdir = $(kde_datadir)/soundkonverter/pics
-pics_DATA = ledgreen_legend.png \
- ledgreen.png \
- ledred_legend.png \
- ledred.png \
- ledyellow_legend.png \
- ledyellow.png
diff --git a/src/pluginloader/Makefile.am b/src/pluginloader/Makefile.am
deleted file mode 100755
index 64ca193..0000000
--- a/src/pluginloader/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-INCLUDES = -I$(top_srcdir)/src/metadata $(all_includes) -I$(top_srcdir)/src/
-METASOURCES = AUTO
-noinst_HEADERS = pluginloaderbase.h convertpluginloader.h \
- replaygainpluginloader.h formatinfoloader.h ripperpluginloader.h
-
-noinst_LTLIBRARIES = libpluginloader.la
-libpluginloader_la_SOURCES = pluginloaderbase.cpp \
- convertpluginloader.cpp replaygainpluginloader.cpp formatinfoloader.cpp \
- ripperpluginloader.cpp
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
deleted file mode 100755
index f3dea7a..0000000
--- a/src/plugins/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-
-pluginsdir = $(kde_datadir)/soundkonverter/plugins
-format_infos_endir = $(kde_datadir)/soundkonverter/format_infos/en
-
-SUBDIRS = format_infos mime_types plugins
diff --git a/src/plugins/format_infos/Makefile.am b/src/plugins/format_infos/Makefile.am
deleted file mode 100644
index 3f45bea..0000000
--- a/src/plugins/format_infos/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-format_infosdir = $(kde_datadir)/soundkonverter/format_infos
-format_infos_DATA = 3gp.xml aac.xml ac3.xml aiff.xml amr.xml ape.xml au.xml \
- avi.xml bonk.xml flac.xml la.xml m4a.xml mid.xml mod.xml mp2.xml mp3.xml \
- mpc.xml ofc.xml ofr.xml ofs.xml ogg.xml pac.xml qt.xml ra.xml shn.xml spx.xml \
- tta.xml wma.xml wv.xml wvc.xml
diff --git a/src/plugins/mime_types/Makefile.am b/src/plugins/mime_types/Makefile.am
deleted file mode 100755
index cedeba7..0000000
--- a/src/plugins/mime_types/Makefile.am
+++ /dev/null
@@ -1,11 +0,0 @@
-audio_mimedir = $(kde_mimedir)/audio
-application_mimedir = $(kde_mimedir)/application
-video_mimedir = $(kde_mimedir)/video
-audio_mime_DATA = amr.soundkonverter.desktop x-ape.soundkonverter.desktop x-bonk.soundkonverter.desktop x-pac.soundkonverter.desktop \
- x-tta.soundkonverter.desktop x-wavpack-correction.soundkonverter.desktop x-wavpack.soundkonverter.desktop
-application_mime_DATA = x-la.soundkonverter.desktop \
- x-ofc.soundkonverter.desktop \
- x-ofr.soundkonverter.desktop \
- x-ofs.soundkonverter.desktop \
- x-shorten.soundkonverter.desktop
-video_mime_DATA = x-flv.soundkonverter.desktop
diff --git a/src/plugins/plugins/Makefile.am b/src/plugins/plugins/Makefile.am
deleted file mode 100644
index 8471ac6..0000000
--- a/src/plugins/plugins/Makefile.am
+++ /dev/null
@@ -1,14 +0,0 @@
-pluginsdir = $(kde_datadir)/soundkonverter/plugins
-
-plugins_DATA = 110.oggvorbis.soundkonverter.xml 120.lame.soundkonverter.xml \
- 122.twolame.soundkonverter.xml 123.toolame.soundkonverter.xml 125.gogo.soundkonverter.xml \
- 127.faac.soundkonverter.xml 130.musepack.soundkonverter.xml 132.aften.soundkonverter.xml \
- 135.flac.soundkonverter.xml 136.flake.soundkonverter.xml 137.mac.soundkonverter.xml \
- 140.mplayer.soundkonverter.xml 145.ffmpeg.soundkonverter.xml 146.ffmpeg-lossless.soundkonverter.xml \
- 150.shorten.soundkonverter.xml 151.tta.soundkonverter.xml 153.bonk.soundkonverter.xml \
- 155.optimfrog.soundkonverter.xml 156.optimfrog-dualstream.soundkonverter.xml \
- 158.wavpack.soundkonverter.xml 160.lac.soundkonverter.xml 165.lpac.soundkonverter.xml \
- 170.speex.soundkonverter.xml 180.timidity.soundkonverter.xml 190.sox.soundkonverter.xml \
- 210.vorbisgain.soundkonverter.xml 220.mp3gain.soundkonverter.xml 225.aacgain.soundkonverter.xml \
- 230.replaygain.soundkonverter.xml 240.metaflac.soundkonverter.xml 250.wvgain.soundkonverter.xml \
- 310.cdda2wav.soundkonverter.xml 320.cdparanoia.soundkonverter.xml