summaryrefslogtreecommitdiffstats
path: root/src/plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2025-05-25 10:22:12 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2025-06-30 16:09:30 +0900
commitd205f4cb9aae5a54d05970a01284a359dbbf3ba1 (patch)
treeb9bdbaf0e78d081491f6a1ae3e47f8a0a2d2607d /src/plugins
parent7e90bb1967477b331f134e27d6f0ea4cc69ffb0a (diff)
downloadktorrent-d205f4cb.tar.gz
ktorrent-d205f4cb.zip
Drop support for autotools
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit a3744301eacaa453450bc502a3c092a5b74dab55)
Diffstat (limited to 'src/plugins')
-rw-r--r--src/plugins/Makefile.am4
-rw-r--r--src/plugins/infowidget/Makefile.am47
-rw-r--r--src/plugins/infowidget/geoip/Makefile.am41
-rw-r--r--src/plugins/ipfilter/Makefile.am31
-rw-r--r--src/plugins/logviewer/Makefile.am33
-rw-r--r--src/plugins/partfileimport/Makefile.am26
-rw-r--r--src/plugins/rssfeed/Makefile.am30
-rw-r--r--src/plugins/rssfeed/rss/Makefile.am20
-rw-r--r--src/plugins/scanfolder/Makefile.am31
-rw-r--r--src/plugins/scheduler/Makefile.am36
-rw-r--r--src/plugins/search/Makefile.am28
-rw-r--r--src/plugins/stats/Makefile.am17
-rw-r--r--src/plugins/upnp/Makefile.am38
-rw-r--r--src/plugins/webinterface/Makefile.am34
-rw-r--r--src/plugins/webinterface/www/Makefile.am5
-rw-r--r--src/plugins/webinterface/www/coldmilk/Makefile.am8
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/16x16/Makefile.am6
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/22x22/Makefile.am6
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/32x32/Makefile.am6
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/48x48/Makefile.am6
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/64x64/Makefile.am6
-rw-r--r--src/plugins/webinterface/www/coldmilk/icons/Makefile.am1
-rw-r--r--src/plugins/webinterface/www/default/Makefile.am9
-rw-r--r--src/plugins/webinterface/www/mobile/Makefile.am8
-rw-r--r--src/plugins/zeroconf/Makefile.am21
25 files changed, 0 insertions, 498 deletions
diff --git a/src/plugins/Makefile.am b/src/plugins/Makefile.am
deleted file mode 100644
index ad2e28c..0000000
--- a/src/plugins/Makefile.am
+++ /dev/null
@@ -1,4 +0,0 @@
-INCLUDES =
-METASOURCES = AUTO
-SUBDIRS = search infowidget ipfilter logviewer upnp partfileimport scheduler \
- scanfolder rssfeed webinterface zeroconf stats
diff --git a/src/plugins/infowidget/Makefile.am b/src/plugins/infowidget/Makefile.am
deleted file mode 100644
index ace5e0d..0000000
--- a/src/plugins/infowidget/Makefile.am
+++ /dev/null
@@ -1,47 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-if USE_SYSTEM_GEOIP
-libgeoip_system = -lGeoIP
-else
-libgeoip_builtin = libgeoip_builtin.la
-endif
-
-noinst_LTLIBRARIES = $(libgeoip_builtin)
-
-kde_module_LTLIBRARIES = ktinfowidgetplugin.la
-noinst_HEADERS = infowidgetplugin.h infowidgetprefpage.h trackerview.h GeoIP.h \
- statustab.h fileview.h
-ktinfowidgetplugin_la_SOURCES = infowidgetplugin.cpp availabilitychunkbar.cpp \
- chunkbar.cpp chunkdownloadview.cpp downloadedchunkbar.cpp flagdb.cpp peerview.cpp \
- ktorrentmonitor.cpp iwfiletreediritem.cpp iwfiletreeitem.cpp infowidgetprefpage.cpp \
- infowidgetpluginsettings.kcfgc iwpref.ui trackerviewbase.ui trackerview.cpp floatspinbox.cpp \
- localefloatvalidator.cpp chunkdownloadviewbase.ui statustabbase.ui statustab.cpp fileview.cpp
-
-libgeoip_builtin_la_SOURCES = GeoIP.c
-
-# Libs needed by the plugin
-ktinfowidgetplugin_la_LIBADD = ../../libktorrent/libktorrent.la \
- $(LIB_TDEHTML) $(LIB_TDEPARTS) $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
- $(libgeoip_builtin)
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktinfowidgetplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) $(libgeoip_system)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktinfowidgetplugin.desktop
-
-kde_kcfg_DATA = ktinfowidgetplugin.kcfg
-
-ktdatadir = $(kde_datadir)/ktorrent/geoip
-
-SUBDIRS = geoip
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/infowidget/geoip/Makefile.am b/src/plugins/infowidget/geoip/Makefile.am
deleted file mode 100644
index 1a7d6c4..0000000
--- a/src/plugins/infowidget/geoip/Makefile.am
+++ /dev/null
@@ -1,41 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/geoip
-
-if ENABLE_GEOIP
-GEOIP_FILES = geoip.dat GeoIP-LICENSE.txt
-else
-GEOIP_FILES =
-endif
-
-if ENABLE_BUILTIN_COUNTRY_FLAGS
-FLAG_FILES = ad.png ae.png af.png ag.png ai.png al.png am.png an.png ao.png \
- aq.png ar.png as.png at.png au.png aw.png az.png ba.png bb.png bd.png be.png \
- bf.png bg.png bh.png bi.png bj.png bm.png bn.png bo.png br.png bs.png bt.png \
- bv.png bw.png by.png bz.png ca.png cc.png cd.png cf.png cg.png ch.png ci.png \
- ck.png cl.png cm.png cn.png co.png cr.png cs.png cu.png cv.png cx.png cy.png \
- cz.png de.png dj.png dk.png dm.png do.png dz.png ec.png ee.png eg.png eh.png \
- er.png es.png et.png eu.png fi.png fj.png fk.png fm.png fo.png fr.png ga.png \
- gb.png gd.png ge.png gf.png gh.png gi.png gl.png gm.png gn.png gp.png gq.png \
- gr.png gs.png gt.png gu.png gw.png gy.png hk.png hm.png hn.png hr.png ht.png \
- hu.png id.png ie.png il.png in.png io.png iq.png ir.png is.png it.png jm.png \
- jo.png jp.png ke.png kg.png kh.png ki.png km.png kn.png kp.png kr.png kw.png \
- ky.png kz.png la.png lb.png lc.png li.png lk.png lr.png ls.png lt.png lu.png \
- lv.png ly.png ma.png mc.png md.png mg.png mh.png mk.png ml.png mm.png mn.png \
- mo.png mp.png mq.png mr.png ms.png mt.png mu.png mv.png mw.png mx.png my.png \
- mz.png na.png nc.png ne.png nf.png ng.png ni.png nl.png no.png np.png nr.png \
- nu.png nz.png om.png pa.png pe.png pf.png pg.png ph.png pk.png pl.png pm.png \
- pn.png pr.png ps.png pt.png pw.png py.png qa.png re.png ro.png ru.png rw.png \
- sa.png sb.png sc.png sd.png se.png sg.png sh.png si.png sj.png sk.png sl.png \
- sm.png sn.png so.png sr.png st.png sv.png sy.png sz.png tc.png td.png tf.png \
- tg.png th.png tj.png tk.png tl.png tm.png tn.png to.png tp.png tr.png tt.png \
- tv.png tw.png tz.png ua.png ug.png um.png us.png uy.png uz.png va.png vc.png \
- ve.png vg.png vi.png vn.png vu.png wf.png ws.png ye.png yt.png yu.png za.png \
- zm.png zw.png FLAGS_LICENCE
-else
-FLAG_FILES =
-endif
-
-ktdata_DATA = $(FLAG_FILES) $(GEOIP_FILES)
-
diff --git a/src/plugins/ipfilter/Makefile.am b/src/plugins/ipfilter/Makefile.am
deleted file mode 100644
index c2395b0..0000000
--- a/src/plugins/ipfilter/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktipfilterplugin.la
-noinst_HEADERS = ipfilterplugin.h ipblockingprefpage.h antip2p.h \
- convertdialog.h
-ktipfilterplugin_la_SOURCES = ipfilterplugin.cpp ipblockingpref.ui \
- ipblockingprefpage.cpp ipfilterpluginsettings.kcfgc antip2p.cpp convert_dlg.ui \
- convertdialog.cpp
-
-# Libs needed by the plugin
-ktipfilterplugin_la_LIBADD = $(LIB_TDEHTML) $(LIB_TDEPARTS) \
- ../../libktorrent/libktorrent.la $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktipfilterplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktipfilterplugin.desktop
-
-kde_kcfg_DATA = ktipfilterplugin.kcfg
-
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/logviewer/Makefile.am b/src/plugins/logviewer/Makefile.am
deleted file mode 100644
index e11e126..0000000
--- a/src/plugins/logviewer/Makefile.am
+++ /dev/null
@@ -1,33 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktlogviewerplugin.la
-
-
-# Libs needed by the plugin
-ktlogviewerplugin_la_LIBADD = $(LIB_TDEHTML) $(LIB_TDEPARTS) \
- ../../libktorrent/libktorrent.la $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktlogviewerplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktlogviewerplugin.desktop
-
-kde_kcfg_DATA = ktlogviewerplugin.kcfg
-
-noinst_HEADERS = logviewerplugin.h logviewer.h logprefpage.h logprefwidget.h \
- logflags.h
-ktlogviewerplugin_la_SOURCES = logviewerplugin.cpp logviewer.cpp \
- logprefpage.cpp logprefwidgetbase.ui logprefwidget.cpp logviewerpluginsettings.kcfgc \
- logflags.cpp
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/partfileimport/Makefile.am b/src/plugins/partfileimport/Makefile.am
deleted file mode 100644
index 45fb6ba..0000000
--- a/src/plugins/partfileimport/Makefile.am
+++ /dev/null
@@ -1,26 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktpartfileimportplugin.la
-noinst_HEADERS = partfileimportplugin.h importdialog.h
-ktpartfileimportplugin_la_SOURCES = partfileimportplugin.cpp importdlgbase.ui importdialog.cpp
-
-# Libs needed by the plugin
-ktpartfileimportplugin_la_LIBADD = $(LIB_TDEHTML) $(LIB_TDEPARTS) \
- ../../libktorrent/libktorrent.la \
- $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktpartfileimportplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-rcdir = $(kde_datadir)/ktorrent
-rc_DATA = ktpartfileimportpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktpartfileimportplugin.desktop
-
-# kde_kcfg_DATA = ktpartfileimportplugin.kcfg
-
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/rssfeed/Makefile.am b/src/plugins/rssfeed/Makefile.am
deleted file mode 100644
index e5fa2ed..0000000
--- a/src/plugins/rssfeed/Makefile.am
+++ /dev/null
@@ -1,30 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktrssfeedplugin.la
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktrssfeedplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktrssfeedplugin
-# plugins_DATA = ktrssfeedpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-
-rcdir = $(kde_datadir)/ktorrent
-
-kde_kcfg_DATA = ktrssfeedplugin.kcfg
-kde_services_DATA = ktrssfeedplugin.desktop
-
-noinst_HEADERS = rssfeedplugin.h rssfeedmanager.h rssfeed.h rssfilter.h \
- rssarticle.h rsslinkdownloader.h
-ktrssfeedplugin_la_SOURCES = rssfeedplugin.cpp rssfeedmanager.cpp \
- rssfeedwidget.ui rssfeed.cpp rssfilter.cpp rssarticle.cpp rsslinkdownloader.cpp
-ktrssfeedplugin_la_LIBADD = $(LIB_TDEIO) $(LIB_TQT) rss/librsslocal.la \
- ../../libktorrent/libktorrent.la $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEHTML) $(LIB_TDEPARTS)
-
-SUBDIRS = rss
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/rssfeed/rss/Makefile.am b/src/plugins/rssfeed/rss/Makefile.am
deleted file mode 100644
index 8053f92..0000000
--- a/src/plugins/rssfeed/rss/Makefile.am
+++ /dev/null
@@ -1,20 +0,0 @@
-INCLUDES = \
- -I$(top_srcdir)/src \
- $(all_includes)
-
-noinst_LTLIBRARIES = \
- librsslocal.la
-
-noinst_HEADERS = article.h document.h global.h image.h textinput.h \
- loader.h librss.h
-
-librsslocal_la_SOURCES = article.cpp document.cpp image.cpp textinput.cpp \
- tools_p.cpp loader.cpp
-
-librsslocal_la_METASOURCES = AUTO
-
-check_PROGRAMS = testlibrss
-testlibrss_SOURCES = testlibrss.cpp
-testlibrss_LDFLAGS = $(all_libraries)
-testlibrss_LDADD = librsslocal.la $(LIB_TDEIO)
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/scanfolder/Makefile.am b/src/plugins/scanfolder/Makefile.am
deleted file mode 100644
index 49ba5a7..0000000
--- a/src/plugins/scanfolder/Makefile.am
+++ /dev/null
@@ -1,31 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktscanfolderplugin.la
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktscanfolderplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktscanfolderplugin
-# plugins_DATA = ktscanfolderpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-
-rcdir = $(kde_datadir)/ktorrent
-
-kde_kcfg_DATA = ktscanfolderplugin.kcfg
-kde_services_DATA = ktscanfolderplugin.desktop
-
-noinst_HEADERS = scanfolderplugin.h scanfolderprefpage.h \
- scanfolderprefpagewidget.h scanfolder.h
-ktscanfolderplugin_la_SOURCES = scanfolderplugin.cpp \
- scanfolderpluginsettings.kcfgc scanfolderprefpage.cpp sfprefwidgetbase.ui scanfolderprefpagewidget.cpp \
- scanfolder.cpp
-ktscanfolderplugin_la_LIBADD = $(LIB_TDEPARTS) ../../libktorrent/libktorrent.la \
- $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/scheduler/Makefile.am b/src/plugins/scheduler/Makefile.am
deleted file mode 100644
index 5b388eb..0000000
--- a/src/plugins/scheduler/Makefile.am
+++ /dev/null
@@ -1,36 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktschedulerplugin.la
-noinst_HEADERS = schedulerplugin.h bwscheduler.h schedulerprefpagewidget.h \
- bwsprefpagewidget.h bwswidget.h schedulerprefpage.h
-ktschedulerplugin_la_SOURCES = schedulerplugin.cpp \
- schedulerpluginsettings.kcfgc bwscheduler.cpp schedulerprefpagewidget.cpp schedulerpage.ui bwspage.ui \
- bwsprefpagewidget.cpp bwswidget.cpp schedulerprefpage.cpp
-
-# Libs needed by the plugin
-ktschedulerplugin_la_LIBADD = $(LIB_TDEHTML) $(LIB_TDEPARTS) \
- ../../libktorrent/libktorrent.la \
- $(LIB_TQT) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktschedulerplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktschedulerplugin
-# plugins_DATA = ktschedulerpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktschedulerplugin.desktop
-
-kde_kcfg_DATA = ktschedulerplugin.kcfg
-
-kticonsdir = $(kde_datadir)/ktorrent/icons
-
-kticons_DATA = cell-a-0000.png cell-a-0001.png cell-a-0002.png cell-a-0003.png\
- cell-a-0004.png cell-b-0000.png cell-b-0001.png cell-b-0002.png\
- cell-b-0003.png cell-b-0004.png
-rcdir = $(kde_datadir)/ktorrent
-rc_DATA = ktschedulerpluginui.rc
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/search/Makefile.am b/src/plugins/search/Makefile.am
deleted file mode 100644
index 9e5b312..0000000
--- a/src/plugins/search/Makefile.am
+++ /dev/null
@@ -1,28 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktsearchplugin.la
-noinst_HEADERS = searchplugin.h searchprefpage.h searchtab.h searchenginelist.h
-ktsearchplugin_la_SOURCES = searchplugin.cpp htmlpart.cpp searchbar.ui \
- searchpref.ui searchwidget.cpp searchprefpage.cpp searchpluginsettings.kcfgc \
- searchtab.cpp searchenginelist.cpp
-
-# Libs needed by the plugin
-ktsearchplugin_la_LIBADD = ../../libktorrent/libktorrent.la \
- $(LIB_TDEHTML) $(LIB_TDEPARTS) $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktsearchplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktsearchplugin.desktop
-
-kde_kcfg_DATA = ktsearchplugin.kcfg
-
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/stats/Makefile.am b/src/plugins/stats/Makefile.am
deleted file mode 100644
index efe26b6..0000000
--- a/src/plugins/stats/Makefile.am
+++ /dev/null
@@ -1,17 +0,0 @@
-INCLUDES = -I$(top_srcdir)/src/libktorrent -I$(top_builddir)/src/libktorrent $(all_includes)
-
-METASOURCES = AUTO
-
-kde_module_LTLIBRARIES = ktstatsplugin.la
-
-ktstatsplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEPARTS) $(all_libraries)
-ktstatsplugin_la_SOURCES = ChartDrawerData.cpp ChartDrawer.cpp statsspdwgt.ui statsconwgt.ui StatsSpd.cpp StatsCon.cpp sprefwgt.ui statspluginsettings.kcfgc \
- StatsPluginPrefsPage.cpp StatsPluginPrefs.cpp statsplugin.cpp
-
-ktstatsplugin_la_LIBADD = $(LIB_TQT) ../../libktorrent/libktorrent.la
-
-noinst_HEADERS = ChartDrawerData.h ChartDrawer.h StatsSpd.h StatsCon.h StatsPluginPrefsPage.h StatsPluginPrefs.h statsplugin.h
-
-kde_services_DATA = ktstatsplugin.desktop
-kde_kcfg_DATA = ktstatsplugin.kcfg
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/upnp/Makefile.am b/src/plugins/upnp/Makefile.am
deleted file mode 100644
index 467ebc4..0000000
--- a/src/plugins/upnp/Makefile.am
+++ /dev/null
@@ -1,38 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-libktupnp_la_LDFLAGS = $(all_libraries)
-noinst_LTLIBRARIES = libktupnp.la
-libktupnp_la_SOURCES = soap.cpp upnpdescriptionparser.cpp upnpmcastsocket.cpp\
- upnprouter.cpp
-
-kde_module_LTLIBRARIES = ktupnpplugin.la
-noinst_HEADERS = upnpplugin.h upnpmcastsocket.h upnprouter.h upnpprefpage.h \
- upnpprefwidget.h upnpdescriptionparser.h soap.h
-ktupnpplugin_la_SOURCES = upnpplugin.cpp upnpprefpage.cpp upnpwidget.ui \
- upnpprefwidget.cpp upnppluginsettings.kcfgc
-
-# Libs needed by the plugin
-ktupnpplugin_la_LIBADD = libktupnp.la \
- $(LIB_TDEPARTS) ../../libktorrent/libktorrent.la \
- $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktupnpplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktupnpplugin.desktop
-
-kde_kcfg_DATA = ktupnpplugin.kcfg
-
-
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/webinterface/Makefile.am b/src/plugins/webinterface/Makefile.am
deleted file mode 100644
index 5492966..0000000
--- a/src/plugins/webinterface/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-INCLUDES = -I$(top_srcdir)/src/libktorrent -I$(top_builddir)/src/libktorrent $(all_includes)
-
-METASOURCES = AUTO
-kde_module_LTLIBRARIES = ktwebinterfaceplugin.la
-noinst_HEADERS = webinterfaceplugin.h httpserver.h php_handler.h \
- php_interface.h webinterfaceprefwidget.h webinterfaceprefpage.h httpclienthandler.h \
- httpresponseheader.h
-ktwebinterfaceplugin_la_SOURCES = webinterfaceplugin.cpp httpserver.cpp \
- php_handler.cpp php_interface.cpp webinterfacepref.ui \
- webinterfacepluginsettings.kcfgc webinterfaceprefwidget.cpp webinterfaceprefpage.cpp \
- httpclienthandler.cpp httpresponseheader.cpp
-# Libs needed by the plugin
-ktwebinterfaceplugin_la_LIBADD = ../../libktorrent/libktorrent.la \
- $(LIB_TDEHTML) $(LIB_TDEPARTS) $(LIB_TQT) \
- $(LIB_TDECORE) $(LIB_TDEUI) $(LIB_TDEFILE)
-
-# LD flags for the plugin
-# -module says: this is a module, i.e. something you're going to dlopen
-# so e.g. it has no version number like a normal shared lib would have.
-ktwebinterfaceplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries)
-
-# rc file containing the GUI for the plugin
-# pluginsdir = $(kde_datadir)/ktsearchplugin
-# plugins_DATA = ktsearchpluginui.rc
-
-# Install the desktop file needed to detect the plugin
-kde_services_DATA = ktwebinterfaceplugin.desktop
-
-kde_kcfg_DATA = ktwebinterfaceplugin.kcfg
-
-ktdatadir = $(kde_datadir)/ktorrent/www
-
-SUBDIRS = www
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
diff --git a/src/plugins/webinterface/www/Makefile.am b/src/plugins/webinterface/www/Makefile.am
deleted file mode 100644
index 8a92573..0000000
--- a/src/plugins/webinterface/www/Makefile.am
+++ /dev/null
@@ -1,5 +0,0 @@
-METASOURCES = AUTO
-SUBDIRS = default mobile coldmilk
-
-
-
diff --git a/src/plugins/webinterface/www/coldmilk/Makefile.am b/src/plugins/webinterface/www/coldmilk/Makefile.am
deleted file mode 100644
index d6a5f08..0000000
--- a/src/plugins/webinterface/www/coldmilk/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk
-
-ktdata_DATA = favicon.ico icon.png interface.js interface.php login.html page_update.js rest.php shutdown.php style.css
-
-SUBDIRS= icons
diff --git a/src/plugins/webinterface/www/coldmilk/icons/16x16/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/16x16/Makefile.am
deleted file mode 100644
index 7380c25..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/16x16/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk/icons/16x16/
-
-ktdata_DATA = edit_user.png high_priority.png low_priority.png normal_priority.png only_seed.png
-
diff --git a/src/plugins/webinterface/www/coldmilk/icons/22x22/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/22x22/Makefile.am
deleted file mode 100644
index 2bd411f..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/22x22/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk/icons/22x22/
-
-ktdata_DATA = exit.png ktstart_all.png ktstop_all.png remove.png start.png stop.png
-
diff --git a/src/plugins/webinterface/www/coldmilk/icons/32x32/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/32x32/Makefile.am
deleted file mode 100644
index a2b93df..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/32x32/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk/icons/32x32/
-
-ktdata_DATA = configure.png extender_opened.png fileopen.png folder1.png
-
diff --git a/src/plugins/webinterface/www/coldmilk/icons/48x48/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/48x48/Makefile.am
deleted file mode 100644
index 9318a0c..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/48x48/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk/icons/48x48/
-
-ktdata_DATA = exit.png switchuser.png
-
diff --git a/src/plugins/webinterface/www/coldmilk/icons/64x64/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/64x64/Makefile.am
deleted file mode 100644
index 3ff3ae0..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/64x64/Makefile.am
+++ /dev/null
@@ -1,6 +0,0 @@
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/coldmilk/icons/64x64/
-
-ktdata_DATA = down.png folder1_man.png looknfeel.png
-
diff --git a/src/plugins/webinterface/www/coldmilk/icons/Makefile.am b/src/plugins/webinterface/www/coldmilk/icons/Makefile.am
deleted file mode 100644
index cbe7db5..0000000
--- a/src/plugins/webinterface/www/coldmilk/icons/Makefile.am
+++ /dev/null
@@ -1 +0,0 @@
-SUBDIRS= 16x16 22x22 32x32 48x48 64x64
diff --git a/src/plugins/webinterface/www/default/Makefile.am b/src/plugins/webinterface/www/default/Makefile.am
deleted file mode 100644
index 01f09df..0000000
--- a/src/plugins/webinterface/www/default/Makefile.am
+++ /dev/null
@@ -1,9 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/default
-
-ktdata_DATA = details.php only_seed.png favicon.ico grad1.jpg grad2.jpg menu_bg.png \
- header_tile.png high_priority.png icon.png interface.php ktorrentwebinterfacelogo.png \
- login.html low_priority.png normal_priority.png remove.png shutdown.php start.png \
- stop.png style.css stylen.css wz_tooltip.js
diff --git a/src/plugins/webinterface/www/mobile/Makefile.am b/src/plugins/webinterface/www/mobile/Makefile.am
deleted file mode 100644
index 3aae8b4..0000000
--- a/src/plugins/webinterface/www/mobile/Makefile.am
+++ /dev/null
@@ -1,8 +0,0 @@
-INCLUDES = -I$(srcdir)/../../libktorrent $(all_includes)
-METASOURCES = AUTO
-
-ktdatadir = $(kde_datadir)/ktorrent/www/mobile
-
-
-
-ktdata_DATA = favicon.ico interface.php ktorrentwebinterfacelogo.png login.html remove.png start.png stop.png settings.php torrent.php
diff --git a/src/plugins/zeroconf/Makefile.am b/src/plugins/zeroconf/Makefile.am
deleted file mode 100644
index 594adf8..0000000
--- a/src/plugins/zeroconf/Makefile.am
+++ /dev/null
@@ -1,21 +0,0 @@
-INCLUDES = -I$(top_srcdir)/src/libktorrent -I$(top_builddir)/src/libktorrent $(all_includes)
-
-METASOURCES = AUTO
-
-if COMPILE_ZEROCONF
-kde_module_LTLIBRARIES = ktzeroconfplugin.la
-endif
-
-ktzeroconfplugin_la_LDFLAGS = -module $(KDE_PLUGIN) $(all_libraries) $(AVAHI_LIBS) $(AVAHI_TQT_LIBS)
-ktzeroconfplugin_la_SOURCES = localbrowser.cpp avahiservice.cpp \
- zeroconfplugin.cpp
-
-ktzeroconfplugin_la_LIBADD = $(LIB_TDECORE) $(LIB_TDEFILE) $(LIB_TDEPARTS) $(LIB_TDEUI)\
- $(LIB_TQT) ../../libktorrent/libktorrent.la
-
-noinst_HEADERS = zeroconfplugin.h
-
-kde_services_DATA = ktzeroconfplugin.desktop
-KDE_CXXFLAGS = $(USE_EXCEPTIONS) $(USE_RTTI)
-
-