summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2022-05-11 17:15:09 +0200
committerSlávek Banko <slavek.banko@axis.cz>2022-05-11 17:15:09 +0200
commit7b6b219861a6a6ccde9211116a93d859e39c900f (patch)
tree88fa722a8f1211aadbcfdb059ec9c0b1c5e70df2
parentc0059995dde778fd838de18f649a8d12d0bef39a (diff)
downloadtde-packaging-7b6b219861a6a6ccde9211116a93d859e39c900f.tar.gz
tde-packaging-7b6b219861a6a6ccde9211116a93d859e39c900f.zip
FreeBSD: Add port for ktorrent.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
-rw-r--r--freebsd/applications/internet/Makefile1
-rw-r--r--freebsd/applications/internet/ktorrent/Makefile37
-rw-r--r--freebsd/applications/internet/ktorrent/distinfo3
-rw-r--r--freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff48
-rw-r--r--freebsd/applications/internet/ktorrent/pkg-descr6
-rw-r--r--freebsd/applications/internet/ktorrent/pkg-plist453
6 files changed, 548 insertions, 0 deletions
diff --git a/freebsd/applications/internet/Makefile b/freebsd/applications/internet/Makefile
index d54ed983b..30c058adb 100644
--- a/freebsd/applications/internet/Makefile
+++ b/freebsd/applications/internet/Makefile
@@ -8,6 +8,7 @@
SUBDIR += kopete-otr
SUBDIR += kshowmail
SUBDIR += kstreamripper
+ SUBDIR += ktorrent
SUBDIR += tork
.include <bsd.port.subdir.mk>
diff --git a/freebsd/applications/internet/ktorrent/Makefile b/freebsd/applications/internet/ktorrent/Makefile
new file mode 100644
index 000000000..6ab9b483b
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/Makefile
@@ -0,0 +1,37 @@
+# -*-mode: makefile-*-
+# Created by: slavek.banko@axis.cz
+# $FreeBSD$
+#
+
+.include <../../../trinity.port.mk>
+
+PORTNAME= ktorrent-trinity
+COMMENT= BitTorrent client for Trinity
+TDE_PREVERSION=
+MASTER_SITE_SUBDIR= k/${PORTNAME}
+PORTREVISION= 0
+CATEGORIES= misc x11
+DIST_SUBDIR= TDE/applications/internet
+
+
+# Use gmake for automake build
+USES= gmake
+
+BUILD_DEPENDS+= ${TDE_PREFIX}/lib/libtdecore.so:${PORTSDIR}/x11/trinity/core/tdelibs
+
+LIB_DEPENDS+= libtqt.so:${PORTSDIR}/x11/trinity/dependencies/tqtinterface \
+ libavahi-tqt.so:${PORTSDIR}/x11/trinity/dependencies/avahi-tqt \
+
+LIB_DEPENDS+= libgmp.so:${PORTSDIR}/math/gmp \
+
+# Build
+post-patch: tde-pathfix
+
+do-configure: tde-autotools-prepare
+ ${TDE_AUTOTOOLS_CONFIGURE}
+
+do-build: tde-autotools-build
+
+do-install: tde-autotools-install
+
+.include <bsd.port.mk>
diff --git a/freebsd/applications/internet/ktorrent/distinfo b/freebsd/applications/internet/ktorrent/distinfo
new file mode 100644
index 000000000..f1d3f558c
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/distinfo
@@ -0,0 +1,3 @@
+TIMESTAMP = 1652281404
+SHA256 (TDE/applications/internet/ktorrent-trinity_14.0.12.orig.tar.xz) = cc801f6f6535e87ec95157d15eef570e59b36d046f7332ada8bbc3553cdb2806
+SIZE (TDE/applications/internet/ktorrent-trinity_14.0.12.orig.tar.xz) = 2088924
diff --git a/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff b/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff
new file mode 100644
index 000000000..1d79bc90d
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/files/patch-bp000-fix-ftbfs.diff
@@ -0,0 +1,48 @@
+commit 3ce1e1ccb8105968b6cb2a506a627f60f50d2148
+Author: Michele Calgaro <michele.calgaro@yahoo.it>
+Date: Wed May 11 22:10:44 2022 +0900
+
+ Fix FTBFS described at issue #2.
+
+ Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
+
+diff --git a/plugins/infowidget/chunkbar.cpp b/plugins/infowidget/chunkbar.cpp
+index 1cd45eb..794bf5a 100644
+--- a/plugins/infowidget/chunkbar.cpp
++++ b/plugins/infowidget/chunkbar.cpp
+@@ -207,7 +207,7 @@ namespace kt
+
+ if (rs.empty())
+ {
+- Range r = {i,i,0};
++ Range r = {(int)i,(int)i,0};
+ rs.append(r);
+ }
+ else
+@@ -219,7 +219,7 @@ namespace kt
+ }
+ else
+ {
+- Range r = {i,i,0};
++ Range r = {(int)i,(int)i,0};
+ rs.append(r);
+ }
+ }
+@@ -256,7 +256,7 @@ namespace kt
+ int fac = int(100*((double)num_dl / (jEnd - jStart)) + 0.5);
+ if (rs.empty())
+ {
+- Range r = {i,i,fac};
++ Range r = {(int)i,(int)i,fac};
+ rs.append(r);
+ }
+ else
+@@ -268,7 +268,7 @@ namespace kt
+ }
+ else
+ {
+- Range r = {i,i,fac};
++ Range r = {(int)i,(int)i,fac};
+ rs.append(r);
+ }
+ }
diff --git a/freebsd/applications/internet/ktorrent/pkg-descr b/freebsd/applications/internet/ktorrent/pkg-descr
new file mode 100644
index 000000000..4ff1f8dce
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/pkg-descr
@@ -0,0 +1,6 @@
+BitTorrent client for Trinity
+
+KTorrent is a BitTorrent program for Trinity. Its features include speed capping
+(both down and up), integrated searching, UDP tracker support, preview of
+certain file types (video and audio) and integration into the TDE Panel
+enabling background downloading.
diff --git a/freebsd/applications/internet/ktorrent/pkg-plist b/freebsd/applications/internet/ktorrent/pkg-plist
new file mode 100644
index 000000000..94895e0d9
--- /dev/null
+++ b/freebsd/applications/internet/ktorrent/pkg-plist
@@ -0,0 +1,453 @@
+bin/ktcachecheck
+bin/ktorrent
+bin/ktshell
+bin/kttorinfo
+bin/ktupnptest
+lib/libktorrent-2.2.8.so
+lib/libktorrent.la
+lib/libktorrent.so
+lib/trinity/ktinfowidgetplugin.la
+lib/trinity/ktinfowidgetplugin.so
+lib/trinity/ktipfilterplugin.la
+lib/trinity/ktipfilterplugin.so
+lib/trinity/ktlogviewerplugin.la
+lib/trinity/ktlogviewerplugin.so
+lib/trinity/ktpartfileimportplugin.la
+lib/trinity/ktpartfileimportplugin.so
+lib/trinity/ktrssfeedplugin.la
+lib/trinity/ktrssfeedplugin.so
+lib/trinity/ktscanfolderplugin.la
+lib/trinity/ktscanfolderplugin.so
+lib/trinity/ktschedulerplugin.la
+lib/trinity/ktschedulerplugin.so
+lib/trinity/ktsearchplugin.la
+lib/trinity/ktsearchplugin.so
+lib/trinity/ktstatsplugin.la
+lib/trinity/ktstatsplugin.so
+lib/trinity/ktupnpplugin.la
+lib/trinity/ktupnpplugin.so
+lib/trinity/ktwebinterfaceplugin.la
+lib/trinity/ktwebinterfaceplugin.so
+lib/trinity/ktzeroconfplugin.la
+lib/trinity/ktzeroconfplugin.so
+share/applications/tde/ktorrent.desktop
+share/apps/ktorrent/geoip/FLAGS_LICENCE
+share/apps/ktorrent/geoip/GeoIP-LICENSE.txt
+share/apps/ktorrent/geoip/ad.png
+share/apps/ktorrent/geoip/ae.png
+share/apps/ktorrent/geoip/af.png
+share/apps/ktorrent/geoip/ag.png
+share/apps/ktorrent/geoip/ai.png
+share/apps/ktorrent/geoip/al.png
+share/apps/ktorrent/geoip/am.png
+share/apps/ktorrent/geoip/an.png
+share/apps/ktorrent/geoip/ao.png
+share/apps/ktorrent/geoip/aq.png
+share/apps/ktorrent/geoip/ar.png
+share/apps/ktorrent/geoip/as.png
+share/apps/ktorrent/geoip/at.png
+share/apps/ktorrent/geoip/au.png
+share/apps/ktorrent/geoip/aw.png
+share/apps/ktorrent/geoip/az.png
+share/apps/ktorrent/geoip/ba.png
+share/apps/ktorrent/geoip/bb.png
+share/apps/ktorrent/geoip/bd.png
+share/apps/ktorrent/geoip/be.png
+share/apps/ktorrent/geoip/bf.png
+share/apps/ktorrent/geoip/bg.png
+share/apps/ktorrent/geoip/bh.png
+share/apps/ktorrent/geoip/bi.png
+share/apps/ktorrent/geoip/bj.png
+share/apps/ktorrent/geoip/bm.png
+share/apps/ktorrent/geoip/bn.png
+share/apps/ktorrent/geoip/bo.png
+share/apps/ktorrent/geoip/br.png
+share/apps/ktorrent/geoip/bs.png
+share/apps/ktorrent/geoip/bt.png
+share/apps/ktorrent/geoip/bv.png
+share/apps/ktorrent/geoip/bw.png
+share/apps/ktorrent/geoip/by.png
+share/apps/ktorrent/geoip/bz.png
+share/apps/ktorrent/geoip/ca.png
+share/apps/ktorrent/geoip/cc.png
+share/apps/ktorrent/geoip/cd.png
+share/apps/ktorrent/geoip/cf.png
+share/apps/ktorrent/geoip/cg.png
+share/apps/ktorrent/geoip/ch.png
+share/apps/ktorrent/geoip/ci.png
+share/apps/ktorrent/geoip/ck.png
+share/apps/ktorrent/geoip/cl.png
+share/apps/ktorrent/geoip/cm.png
+share/apps/ktorrent/geoip/cn.png
+share/apps/ktorrent/geoip/co.png
+share/apps/ktorrent/geoip/cr.png
+share/apps/ktorrent/geoip/cs.png
+share/apps/ktorrent/geoip/cu.png
+share/apps/ktorrent/geoip/cv.png
+share/apps/ktorrent/geoip/cx.png
+share/apps/ktorrent/geoip/cy.png
+share/apps/ktorrent/geoip/cz.png
+share/apps/ktorrent/geoip/de.png
+share/apps/ktorrent/geoip/dj.png
+share/apps/ktorrent/geoip/dk.png
+share/apps/ktorrent/geoip/dm.png
+share/apps/ktorrent/geoip/do.png
+share/apps/ktorrent/geoip/dz.png
+share/apps/ktorrent/geoip/ec.png
+share/apps/ktorrent/geoip/ee.png
+share/apps/ktorrent/geoip/eg.png
+share/apps/ktorrent/geoip/eh.png
+share/apps/ktorrent/geoip/er.png
+share/apps/ktorrent/geoip/es.png
+share/apps/ktorrent/geoip/et.png
+share/apps/ktorrent/geoip/eu.png
+share/apps/ktorrent/geoip/fi.png
+share/apps/ktorrent/geoip/fj.png
+share/apps/ktorrent/geoip/fk.png
+share/apps/ktorrent/geoip/fm.png
+share/apps/ktorrent/geoip/fo.png
+share/apps/ktorrent/geoip/fr.png
+share/apps/ktorrent/geoip/ga.png
+share/apps/ktorrent/geoip/gb.png
+share/apps/ktorrent/geoip/gd.png
+share/apps/ktorrent/geoip/ge.png
+share/apps/ktorrent/geoip/geoip.dat
+share/apps/ktorrent/geoip/gf.png
+share/apps/ktorrent/geoip/gh.png
+share/apps/ktorrent/geoip/gi.png
+share/apps/ktorrent/geoip/gl.png
+share/apps/ktorrent/geoip/gm.png
+share/apps/ktorrent/geoip/gn.png
+share/apps/ktorrent/geoip/gp.png
+share/apps/ktorrent/geoip/gq.png
+share/apps/ktorrent/geoip/gr.png
+share/apps/ktorrent/geoip/gs.png
+share/apps/ktorrent/geoip/gt.png
+share/apps/ktorrent/geoip/gu.png
+share/apps/ktorrent/geoip/gw.png
+share/apps/ktorrent/geoip/gy.png
+share/apps/ktorrent/geoip/hk.png
+share/apps/ktorrent/geoip/hm.png
+share/apps/ktorrent/geoip/hn.png
+share/apps/ktorrent/geoip/hr.png
+share/apps/ktorrent/geoip/ht.png
+share/apps/ktorrent/geoip/hu.png
+share/apps/ktorrent/geoip/id.png
+share/apps/ktorrent/geoip/ie.png
+share/apps/ktorrent/geoip/il.png
+share/apps/ktorrent/geoip/in.png
+share/apps/ktorrent/geoip/io.png
+share/apps/ktorrent/geoip/iq.png
+share/apps/ktorrent/geoip/ir.png
+share/apps/ktorrent/geoip/is.png
+share/apps/ktorrent/geoip/it.png
+share/apps/ktorrent/geoip/jm.png
+share/apps/ktorrent/geoip/jo.png
+share/apps/ktorrent/geoip/jp.png
+share/apps/ktorrent/geoip/ke.png
+share/apps/ktorrent/geoip/kg.png
+share/apps/ktorrent/geoip/kh.png
+share/apps/ktorrent/geoip/ki.png
+share/apps/ktorrent/geoip/km.png
+share/apps/ktorrent/geoip/kn.png
+share/apps/ktorrent/geoip/kp.png
+share/apps/ktorrent/geoip/kr.png
+share/apps/ktorrent/geoip/kw.png
+share/apps/ktorrent/geoip/ky.png
+share/apps/ktorrent/geoip/kz.png
+share/apps/ktorrent/geoip/la.png
+share/apps/ktorrent/geoip/lb.png
+share/apps/ktorrent/geoip/lc.png
+share/apps/ktorrent/geoip/li.png
+share/apps/ktorrent/geoip/lk.png
+share/apps/ktorrent/geoip/lr.png
+share/apps/ktorrent/geoip/ls.png
+share/apps/ktorrent/geoip/lt.png
+share/apps/ktorrent/geoip/lu.png
+share/apps/ktorrent/geoip/lv.png
+share/apps/ktorrent/geoip/ly.png
+share/apps/ktorrent/geoip/ma.png
+share/apps/ktorrent/geoip/mc.png
+share/apps/ktorrent/geoip/md.png
+share/apps/ktorrent/geoip/mg.png
+share/apps/ktorrent/geoip/mh.png
+share/apps/ktorrent/geoip/mk.png
+share/apps/ktorrent/geoip/ml.png
+share/apps/ktorrent/geoip/mm.png
+share/apps/ktorrent/geoip/mn.png
+share/apps/ktorrent/geoip/mo.png
+share/apps/ktorrent/geoip/mp.png
+share/apps/ktorrent/geoip/mq.png
+share/apps/ktorrent/geoip/mr.png
+share/apps/ktorrent/geoip/ms.png
+share/apps/ktorrent/geoip/mt.png
+share/apps/ktorrent/geoip/mu.png
+share/apps/ktorrent/geoip/mv.png
+share/apps/ktorrent/geoip/mw.png
+share/apps/ktorrent/geoip/mx.png
+share/apps/ktorrent/geoip/my.png
+share/apps/ktorrent/geoip/mz.png
+share/apps/ktorrent/geoip/na.png
+share/apps/ktorrent/geoip/nc.png
+share/apps/ktorrent/geoip/ne.png
+share/apps/ktorrent/geoip/nf.png
+share/apps/ktorrent/geoip/ng.png
+share/apps/ktorrent/geoip/ni.png
+share/apps/ktorrent/geoip/nl.png
+share/apps/ktorrent/geoip/no.png
+share/apps/ktorrent/geoip/np.png
+share/apps/ktorrent/geoip/nr.png
+share/apps/ktorrent/geoip/nu.png
+share/apps/ktorrent/geoip/nz.png
+share/apps/ktorrent/geoip/om.png
+share/apps/ktorrent/geoip/pa.png
+share/apps/ktorrent/geoip/pe.png
+share/apps/ktorrent/geoip/pf.png
+share/apps/ktorrent/geoip/pg.png
+share/apps/ktorrent/geoip/ph.png
+share/apps/ktorrent/geoip/pk.png
+share/apps/ktorrent/geoip/pl.png
+share/apps/ktorrent/geoip/pm.png
+share/apps/ktorrent/geoip/pn.png
+share/apps/ktorrent/geoip/pr.png
+share/apps/ktorrent/geoip/ps.png
+share/apps/ktorrent/geoip/pt.png
+share/apps/ktorrent/geoip/pw.png
+share/apps/ktorrent/geoip/py.png
+share/apps/ktorrent/geoip/qa.png
+share/apps/ktorrent/geoip/re.png
+share/apps/ktorrent/geoip/ro.png
+share/apps/ktorrent/geoip/ru.png
+share/apps/ktorrent/geoip/rw.png
+share/apps/ktorrent/geoip/sa.png
+share/apps/ktorrent/geoip/sb.png
+share/apps/ktorrent/geoip/sc.png
+share/apps/ktorrent/geoip/sd.png
+share/apps/ktorrent/geoip/se.png
+share/apps/ktorrent/geoip/sg.png
+share/apps/ktorrent/geoip/sh.png
+share/apps/ktorrent/geoip/si.png
+share/apps/ktorrent/geoip/sj.png
+share/apps/ktorrent/geoip/sk.png
+share/apps/ktorrent/geoip/sl.png
+share/apps/ktorrent/geoip/sm.png
+share/apps/ktorrent/geoip/sn.png
+share/apps/ktorrent/geoip/so.png
+share/apps/ktorrent/geoip/sr.png
+share/apps/ktorrent/geoip/st.png
+share/apps/ktorrent/geoip/sv.png
+share/apps/ktorrent/geoip/sy.png
+share/apps/ktorrent/geoip/sz.png
+share/apps/ktorrent/geoip/tc.png
+share/apps/ktorrent/geoip/td.png
+share/apps/ktorrent/geoip/tf.png
+share/apps/ktorrent/geoip/tg.png
+share/apps/ktorrent/geoip/th.png
+share/apps/ktorrent/geoip/tj.png
+share/apps/ktorrent/geoip/tk.png
+share/apps/ktorrent/geoip/tl.png
+share/apps/ktorrent/geoip/tm.png
+share/apps/ktorrent/geoip/tn.png
+share/apps/ktorrent/geoip/to.png
+share/apps/ktorrent/geoip/tp.png
+share/apps/ktorrent/geoip/tr.png
+share/apps/ktorrent/geoip/tt.png
+share/apps/ktorrent/geoip/tv.png
+share/apps/ktorrent/geoip/tw.png
+share/apps/ktorrent/geoip/tz.png
+share/apps/ktorrent/geoip/ua.png
+share/apps/ktorrent/geoip/ug.png
+share/apps/ktorrent/geoip/um.png
+share/apps/ktorrent/geoip/us.png
+share/apps/ktorrent/geoip/uy.png
+share/apps/ktorrent/geoip/uz.png
+share/apps/ktorrent/geoip/va.png
+share/apps/ktorrent/geoip/vc.png
+share/apps/ktorrent/geoip/ve.png
+share/apps/ktorrent/geoip/vg.png
+share/apps/ktorrent/geoip/vi.png
+share/apps/ktorrent/geoip/vn.png
+share/apps/ktorrent/geoip/vu.png
+share/apps/ktorrent/geoip/wf.png
+share/apps/ktorrent/geoip/ws.png
+share/apps/ktorrent/geoip/ye.png
+share/apps/ktorrent/geoip/yt.png
+share/apps/ktorrent/geoip/yu.png
+share/apps/ktorrent/geoip/za.png
+share/apps/ktorrent/geoip/zm.png
+share/apps/ktorrent/geoip/zw.png
+share/apps/ktorrent/icons/cell-a-0000.png
+share/apps/ktorrent/icons/cell-a-0001.png
+share/apps/ktorrent/icons/cell-a-0002.png
+share/apps/ktorrent/icons/cell-a-0003.png
+share/apps/ktorrent/icons/cell-a-0004.png
+share/apps/ktorrent/icons/cell-b-0000.png
+share/apps/ktorrent/icons/cell-b-0001.png
+share/apps/ktorrent/icons/cell-b-0002.png
+share/apps/ktorrent/icons/cell-b-0003.png
+share/apps/ktorrent/icons/cell-b-0004.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktencrypted.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktremove.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktstart.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktstart_all.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktstop.png
+share/apps/ktorrent/icons/hicolor/22x22/actions/ktstop_all.png
+share/apps/ktorrent/icons/hicolor/48x48/actions/ktplugins.png
+share/apps/ktorrent/icons/hicolor/64x64/actions/ktinfowidget.png
+share/apps/ktorrent/icons/hicolor/64x64/actions/ktqueuemanager.png
+share/apps/ktorrent/icons/hicolor/64x64/actions/ktupnp.png
+share/apps/ktorrent/icons/hicolor/64x64/places/ktprefdownloads.png
+share/apps/ktorrent/ktorrentui.rc
+share/apps/ktorrent/ktpartfileimportpluginui.rc
+share/apps/ktorrent/ktschedulerpluginui.rc
+share/apps/ktorrent/www/coldmilk/favicon.ico
+share/apps/ktorrent/www/coldmilk/icon.png
+share/apps/ktorrent/www/coldmilk/icons/16x16/edit_user.png
+share/apps/ktorrent/www/coldmilk/icons/16x16/high_priority.png
+share/apps/ktorrent/www/coldmilk/icons/16x16/low_priority.png
+share/apps/ktorrent/www/coldmilk/icons/16x16/normal_priority.png
+share/apps/ktorrent/www/coldmilk/icons/16x16/only_seed.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/exit.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/ktstart_all.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/ktstop_all.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/remove.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/start.png
+share/apps/ktorrent/www/coldmilk/icons/22x22/stop.png
+share/apps/ktorrent/www/coldmilk/icons/32x32/configure.png
+share/apps/ktorrent/www/coldmilk/icons/32x32/extender_opened.png
+share/apps/ktorrent/www/coldmilk/icons/32x32/fileopen.png
+share/apps/ktorrent/www/coldmilk/icons/32x32/folder1.png
+share/apps/ktorrent/www/coldmilk/icons/48x48/exit.png
+share/apps/ktorrent/www/coldmilk/icons/48x48/switchuser.png
+share/apps/ktorrent/www/coldmilk/icons/64x64/down.png
+share/apps/ktorrent/www/coldmilk/icons/64x64/folder1_man.png
+share/apps/ktorrent/www/coldmilk/icons/64x64/looknfeel.png
+share/apps/ktorrent/www/coldmilk/interface.js
+share/apps/ktorrent/www/coldmilk/interface.php
+share/apps/ktorrent/www/coldmilk/login.html
+share/apps/ktorrent/www/coldmilk/page_update.js
+share/apps/ktorrent/www/coldmilk/rest.php
+share/apps/ktorrent/www/coldmilk/shutdown.php
+share/apps/ktorrent/www/coldmilk/style.css
+share/apps/ktorrent/www/default/details.php
+share/apps/ktorrent/www/default/favicon.ico
+share/apps/ktorrent/www/default/grad1.jpg
+share/apps/ktorrent/www/default/grad2.jpg
+share/apps/ktorrent/www/default/header_tile.png
+share/apps/ktorrent/www/default/high_priority.png
+share/apps/ktorrent/www/default/icon.png
+share/apps/ktorrent/www/default/interface.php
+share/apps/ktorrent/www/default/ktorrentwebinterfacelogo.png
+share/apps/ktorrent/www/default/login.html
+share/apps/ktorrent/www/default/low_priority.png
+share/apps/ktorrent/www/default/menu_bg.png
+share/apps/ktorrent/www/default/normal_priority.png
+share/apps/ktorrent/www/default/only_seed.png
+share/apps/ktorrent/www/default/remove.png
+share/apps/ktorrent/www/default/shutdown.php
+share/apps/ktorrent/www/default/start.png
+share/apps/ktorrent/www/default/stop.png
+share/apps/ktorrent/www/default/style.css
+share/apps/ktorrent/www/default/stylen.css
+share/apps/ktorrent/www/default/wz_tooltip.js
+share/apps/ktorrent/www/mobile/favicon.ico
+share/apps/ktorrent/www/mobile/interface.php
+share/apps/ktorrent/www/mobile/ktorrentwebinterfacelogo.png
+share/apps/ktorrent/www/mobile/login.html
+share/apps/ktorrent/www/mobile/remove.png
+share/apps/ktorrent/www/mobile/settings.php
+share/apps/ktorrent/www/mobile/start.png
+share/apps/ktorrent/www/mobile/stop.png
+share/apps/ktorrent/www/mobile/torrent.php
+share/config.kcfg/ktinfowidgetplugin.kcfg
+share/config.kcfg/ktipfilterplugin.kcfg
+share/config.kcfg/ktlogviewerplugin.kcfg
+share/config.kcfg/ktorrent.kcfg
+share/config.kcfg/ktrssfeedplugin.kcfg
+share/config.kcfg/ktscanfolderplugin.kcfg
+share/config.kcfg/ktschedulerplugin.kcfg
+share/config.kcfg/ktsearchplugin.kcfg
+share/config.kcfg/ktstatsplugin.kcfg
+share/config.kcfg/ktupnpplugin.kcfg
+share/config.kcfg/ktwebinterfaceplugin.kcfg
+share/doc/tde/HTML/en/ktorrent/advanced-config.png
+share/doc/tde/HTML/en/ktorrent/bittorrent-config.png
+share/doc/tde/HTML/en/ktorrent/commands.docbook
+share/doc/tde/HTML/en/ktorrent/common
+share/doc/tde/HTML/en/ktorrent/configure.docbook
+share/doc/tde/HTML/en/ktorrent/credits.docbook
+share/doc/tde/HTML/en/ktorrent/downloads-config.png
+share/doc/tde/HTML/en/ktorrent/faq.docbook
+share/doc/tde/HTML/en/ktorrent/general-config.png
+share/doc/tde/HTML/en/ktorrent/index.cache.bz2
+share/doc/tde/HTML/en/ktorrent/index.docbook
+share/doc/tde/HTML/en/ktorrent/introduction.docbook
+share/doc/tde/HTML/en/ktorrent/introduction.png
+share/doc/tde/HTML/en/ktorrent/plugins-config.png
+share/doc/tde/HTML/en/ktorrent/systemtray-popup.png
+share/doc/tde/HTML/en/ktorrent/using.docbook
+share/icons/hicolor/128x128/apps/ktorrent.png
+share/icons/hicolor/128x128/mimetypes/torrent.png
+share/icons/hicolor/16x16/apps/ktorrent.png
+share/icons/hicolor/16x16/mimetypes/torrent.png
+share/icons/hicolor/22x22/apps/ktorrent.png
+share/icons/hicolor/22x22/mimetypes/torrent.png
+share/icons/hicolor/32x32/apps/ktorrent.png
+share/icons/hicolor/32x32/mimetypes/torrent.png
+share/icons/hicolor/48x48/apps/ktorrent.png
+share/icons/hicolor/48x48/mimetypes/torrent.png
+share/icons/hicolor/64x64/apps/ktorrent.png
+share/icons/hicolor/64x64/mimetypes/torrent.png
+share/icons/hicolor/scalable/apps/ktorrent.svgz
+share/icons/hicolor/scalable/mimetypes/torrent.svgz
+share/locale/ar/LC_MESSAGES/ktorrent.mo
+share/locale/bg/LC_MESSAGES/ktorrent.mo
+share/locale/br/LC_MESSAGES/ktorrent.mo
+share/locale/ca/LC_MESSAGES/ktorrent.mo
+share/locale/cs/LC_MESSAGES/ktorrent.mo
+share/locale/cy/LC_MESSAGES/ktorrent.mo
+share/locale/da/LC_MESSAGES/ktorrent.mo
+share/locale/de/LC_MESSAGES/ktorrent.mo
+share/locale/el/LC_MESSAGES/ktorrent.mo
+share/locale/en_GB/LC_MESSAGES/ktorrent.mo
+share/locale/es/LC_MESSAGES/ktorrent.mo
+share/locale/et/LC_MESSAGES/ktorrent.mo
+share/locale/fa/LC_MESSAGES/ktorrent.mo
+share/locale/fr/LC_MESSAGES/ktorrent.mo
+share/locale/gl/LC_MESSAGES/ktorrent.mo
+share/locale/hu/LC_MESSAGES/ktorrent.mo
+share/locale/it/LC_MESSAGES/ktorrent.mo
+share/locale/ja/LC_MESSAGES/ktorrent.mo
+share/locale/ka/LC_MESSAGES/ktorrent.mo
+share/locale/lt/LC_MESSAGES/ktorrent.mo
+share/locale/ms/LC_MESSAGES/ktorrent.mo
+share/locale/nb/LC_MESSAGES/ktorrent.mo
+share/locale/nds/LC_MESSAGES/ktorrent.mo
+share/locale/nl/LC_MESSAGES/ktorrent.mo
+share/locale/pa/LC_MESSAGES/ktorrent.mo
+share/locale/pl/LC_MESSAGES/ktorrent.mo
+share/locale/pt/LC_MESSAGES/ktorrent.mo
+share/locale/pt_BR/LC_MESSAGES/ktorrent.mo
+share/locale/ru/LC_MESSAGES/ktorrent.mo
+share/locale/rw/LC_MESSAGES/ktorrent.mo
+share/locale/sk/LC_MESSAGES/ktorrent.mo
+share/locale/sr/LC_MESSAGES/ktorrent.mo
+share/locale/sr@Latn/LC_MESSAGES/ktorrent.mo
+share/locale/sv/LC_MESSAGES/ktorrent.mo
+share/locale/tr/LC_MESSAGES/ktorrent.mo
+share/locale/uk/LC_MESSAGES/ktorrent.mo
+share/locale/zh_CN/LC_MESSAGES/ktorrent.mo
+share/locale/zh_TW/LC_MESSAGES/ktorrent.mo
+share/services/ktinfowidgetplugin.desktop
+share/services/ktipfilterplugin.desktop
+share/services/ktlogviewerplugin.desktop
+share/services/ktpartfileimportplugin.desktop
+share/services/ktrssfeedplugin.desktop
+share/services/ktscanfolderplugin.desktop
+share/services/ktschedulerplugin.desktop
+share/services/ktsearchplugin.desktop
+share/services/ktstatsplugin.desktop
+share/services/ktupnpplugin.desktop
+share/services/ktwebinterfaceplugin.desktop
+share/services/ktzeroconfplugin.desktop
+share/servicetypes/ktorrentplugin.desktop