Index: head/net-p2p/deluge/Makefile =================================================================== --- head/net-p2p/deluge/Makefile (revision 202036) +++ head/net-p2p/deluge/Makefile (revision 202037) @@ -1,51 +1,50 @@ # New ports collection makefile for: deluge # Date created: 03 December 2006 # Whom: Mezz # # $FreeBSD$ # PORTNAME= deluge -PORTVERSION= 0.5.5 -PORTREVISION= 1 +PORTVERSION= 0.5.6 CATEGORIES= net-p2p python MASTER_SITES= http://download.deluge-torrent.org/tarball/${PORTVERSION}/ MAINTAINER= mezz@FreeBSD.org COMMENT= A Bittorrent client, using Python, GTK+2 and Rasterbar libtorrent LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus \ ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/__init__.py:${PORTSDIR}/devel/py-notify USE_GNOME= pygtk2 desktopfileutils USE_GETTEXT= yes USE_OPENSSL= yes USE_PYTHON= yes USE_PYDISTUTILS=yes MAKE_ENV= CC="${CC}" CXX="${CXX}" DOCS= LICENSE README .include .if ${ARCH} == "sparc64" || ${ARCH} == "ia64" CFLAGS+= -DAMD64 .endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' ${WRKSRC}/setup.py post-install: @-update-desktop-database .ifndef (NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for i in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} .endfor .endif .include Property changes on: head/net-p2p/deluge/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.20 \ No newline at end of property +1.21 \ No newline at end of property Index: head/net-p2p/deluge/distinfo =================================================================== --- head/net-p2p/deluge/distinfo (revision 202036) +++ head/net-p2p/deluge/distinfo (revision 202037) @@ -1,3 +1,3 @@ -MD5 (deluge-0.5.5.tar.gz) = 76c1f8110aef4131d2bc83a7da957c6a -SHA256 (deluge-0.5.5.tar.gz) = 595bb32865fb369dfa1e18a1476a6708840f16af46f5a4a80019423eb2493a90 -SIZE (deluge-0.5.5.tar.gz) = 1606255 +MD5 (deluge-0.5.6.tar.gz) = c534b0fc6514a2d62d6ea9f5da8e2bcb +SHA256 (deluge-0.5.6.tar.gz) = 665e35893515d249021e8e971942aa3fa2a3df177ca826dd151b06efed2928f5 +SIZE (deluge-0.5.6.tar.gz) = 1736279 Property changes on: head/net-p2p/deluge/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp =================================================================== --- head/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp (revision 202036) +++ head/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp (nonexistent) @@ -1,23 +0,0 @@ ---- libtorrent/src/storage.cpp.orig 2007-08-11 01:51:04.000000000 -0500 -+++ libtorrent/src/storage.cpp 2007-08-11 01:52:15.000000000 -0500 -@@ -1027,7 +1027,7 @@ - return false; - #endif - --#if defined(__linux__) || defined(__FreeBSD__) -+#if defined(__linux__) - struct statfs buf; - int err = statfs(query_path.native_directory_string().c_str(), &buf); - if (err == 0) -@@ -1060,7 +1060,11 @@ - #endif - - // TODO: POSIX implementation -+#if defined(__FreeBSD__) -+ return true; -+#else - return false; -+#endif - } - - // -- piece_manager ----------------------------------------------------- Property changes on: head/net-p2p/deluge/files/patch-libtorrent_src_storage.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/net-p2p/deluge/files/patch-setup.py =================================================================== --- head/net-p2p/deluge/files/patch-setup.py (revision 202036) +++ head/net-p2p/deluge/files/patch-setup.py (revision 202037) @@ -1,43 +1,43 @@ ---- setup.py.orig 2007-08-14 11:14:32.000000000 -0500 -+++ setup.py 2007-08-14 11:16:15.000000000 -0500 -@@ -101,13 +101,13 @@ +--- setup.py.orig 2007-10-25 16:49:47.000000000 -0500 ++++ setup.py 2007-10-25 16:51:47.000000000 -0500 +@@ -103,13 +103,13 @@ "-DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1", "-DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1", "-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1", "-DHAVE_SSL=1", - "-DNDEBUG=1", "-O2"] + "-DNDEBUG=1"] if ARCH == "x64": EXTRA_COMPILE_ARGS.append("-DAMD64") includedirs = ['./libtorrent', './libtorrent/include', './libtorrent/include/libtorrent', - '/usr/include/python' + python_version] + '%%LOCALBASE%%/include'] if OS == "linux": if os.WEXITSTATUS(os.system('grep -iq "Debian GNU/Linux 4.0\|Ubuntu 7.04\|Ubuntu 6.06\|Ubuntu 6.10\|Fedora Core release 6\|openSUSE 10.2\|Mandriva Linux release 2007.1\|Fedora release 7\|BLAG release 60001\|Yellow Dog Linux release 5.0 (Phoenix)\|CentOS release 5 (Final)" /etc/issue')) == 0: -@@ -150,11 +150,11 @@ - # Ubuntu possible. - if boosttype == "nomt": - librariestype = ['boost_filesystem', 'boost_date_time', +@@ -164,11 +164,11 @@ + if not OS == "win": + if boosttype == "nomt": + librariestype = ['boost_filesystem', 'boost_date_time', - 'boost_thread', 'z', 'pthread', 'ssl'] + 'boost_thread', 'z', 'ssl'] - print 'Libraries nomt' - elif boosttype == "mt": - librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', + print 'Libraries nomt' + elif boosttype == "mt": + librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', - 'boost_thread-mt', 'z', 'pthread', 'ssl'] + 'boost_thread-mt', 'z', 'ssl'] - print 'Libraries mt' - - def fetchCpp(): -@@ -173,8 +173,10 @@ - - deluge_core = Extension('deluge_core', + print 'Libraries mt' + else: + librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', +@@ -189,8 +189,10 @@ + sources.remove('libtorrent/src/file_win.cpp') + deluge_core = Extension('deluge_core', include_dirs = includedirs, + library_dirs = ['%%LOCALBASE%%/lib'], - libraries = librariestype, + libraries = librariestype, extra_compile_args = EXTRA_COMPILE_ARGS, + extra_link_args = ['%%PTHREAD_LIBS%%'], sources = sources) - # Thanks to Iain Nicol for code to save the location for installed prefix - # At runtime, we need to know where we installed the data to. + else: + sources.remove('libtorrent\\src\\file.cpp') Property changes on: head/net-p2p/deluge/files/patch-setup.py ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/net-p2p/deluge/files/patch-src___init__.py =================================================================== --- head/net-p2p/deluge/files/patch-src___init__.py (revision 202036) +++ head/net-p2p/deluge/files/patch-src___init__.py (revision 202037) @@ -1,15 +1,27 @@ ---- src/__init__.py.orig 2007-08-05 13:08:25.000000000 -0500 -+++ src/__init__.py 2007-08-05 13:08:40.000000000 -0500 -@@ -6,9 +6,9 @@ +--- src/__init__.py.orig 2007-10-25 17:19:53.000000000 -0500 ++++ src/__init__.py 2007-10-25 17:21:29.000000000 -0500 +@@ -37,15 +37,15 @@ APP = 'deluge' - DIR = os.path.join(INSTALL_PREFIX, 'share', 'locale') --locale.setlocale(locale.LC_ALL, '') --locale.bindtextdomain(APP, DIR) --locale.textdomain(APP) -+#locale.setlocale(locale.LC_ALL, '') -+#locale.bindtextdomain(APP, DIR) -+#locale.textdomain(APP) + DIR = os.path.join(common.INSTALL_PREFIX, 'share', 'locale') +-if not common.windows_check(): +- locale.setlocale(locale.LC_MESSAGES, '') +- locale.bindtextdomain(APP, DIR) +- locale.textdomain(APP) +-else: +- import gtk.glade +- locale.setlocale(locale.LC_ALL, '') +- gtk.glade.bindtextdomain(APP, DIR) +- gtk.glade.textdomain(APP) ++#if not common.windows_check(): ++# locale.setlocale(locale.LC_MESSAGES, '') ++# locale.bindtextdomain(APP, DIR) ++# locale.textdomain(APP) ++#else: ++# import gtk.glade ++# locale.setlocale(locale.LC_ALL, '') ++# gtk.glade.bindtextdomain(APP, DIR) ++# gtk.glade.textdomain(APP) gettext.bindtextdomain(APP, DIR) gettext.textdomain(APP) gettext.install(APP, DIR) Property changes on: head/net-p2p/deluge/files/patch-src___init__.py ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/net-p2p/deluge/pkg-plist =================================================================== --- head/net-p2p/deluge/pkg-plist (revision 202036) +++ head/net-p2p/deluge/pkg-plist (revision 202037) @@ -1,703 +1,770 @@ bin/deluge %%PYTHON_SITELIBDIR%%/deluge/__init__.py %%PYTHON_SITELIBDIR%%/deluge/__init__.pyc %%PYTHON_SITELIBDIR%%/deluge/__init__.pyo %%PYTHON_SITELIBDIR%%/deluge/_dbus.py %%PYTHON_SITELIBDIR%%/deluge/_dbus.pyc %%PYTHON_SITELIBDIR%%/deluge/_dbus.pyo -%%PYTHON_SITELIBDIR%%/deluge/browser.py -%%PYTHON_SITELIBDIR%%/deluge/browser.pyc -%%PYTHON_SITELIBDIR%%/deluge/browser.pyo %%PYTHON_SITELIBDIR%%/deluge/common.py %%PYTHON_SITELIBDIR%%/deluge/common.pyc %%PYTHON_SITELIBDIR%%/deluge/common.pyo %%PYTHON_SITELIBDIR%%/deluge/core.py %%PYTHON_SITELIBDIR%%/deluge/core.pyc %%PYTHON_SITELIBDIR%%/deluge/core.pyo %%PYTHON_SITELIBDIR%%/deluge/deluge_core.so %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.py %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.pyc %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.pyo %%PYTHON_SITELIBDIR%%/deluge/dgtk.py %%PYTHON_SITELIBDIR%%/deluge/dgtk.pyc %%PYTHON_SITELIBDIR%%/deluge/dgtk.pyo %%PYTHON_SITELIBDIR%%/deluge/dialogs.py %%PYTHON_SITELIBDIR%%/deluge/dialogs.pyc %%PYTHON_SITELIBDIR%%/deluge/dialogs.pyo %%PYTHON_SITELIBDIR%%/deluge/files.py %%PYTHON_SITELIBDIR%%/deluge/files.pyc %%PYTHON_SITELIBDIR%%/deluge/files.pyo -%%PYTHON_SITELIBDIR%%/deluge/info.py -%%PYTHON_SITELIBDIR%%/deluge/info.pyc -%%PYTHON_SITELIBDIR%%/deluge/info.pyo %%PYTHON_SITELIBDIR%%/deluge/interface.py %%PYTHON_SITELIBDIR%%/deluge/interface.pyc %%PYTHON_SITELIBDIR%%/deluge/interface.pyo %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.py %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.pyc %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.pyo %%PYTHON_SITELIBDIR%%/deluge/plugins.py %%PYTHON_SITELIBDIR%%/deluge/plugins.pyc %%PYTHON_SITELIBDIR%%/deluge/plugins.pyo %%PYTHON_SITELIBDIR%%/deluge/pref.py %%PYTHON_SITELIBDIR%%/deluge/pref.pyc %%PYTHON_SITELIBDIR%%/deluge/pref.pyo %%PYTHON_SITELIBDIR%%/deluge/tab_details.py %%PYTHON_SITELIBDIR%%/deluge/tab_details.pyc %%PYTHON_SITELIBDIR%%/deluge/tab_details.pyo -%%PYTHON_SITELIBDIR%%/deluge/update.py -%%PYTHON_SITELIBDIR%%/deluge/update.pyc -%%PYTHON_SITELIBDIR%%/deluge/update.pyo %%PYTHON_SITELIBDIR%%/deluge/wizard.py %%PYTHON_SITELIBDIR%%/deluge/wizard.pyc %%PYTHON_SITELIBDIR%%/deluge/wizard.pyo share/applications/deluge.desktop %%DATADIR%%/glade/aboutdialog.glade %%DATADIR%%/glade/delugegtk.glade %%DATADIR%%/glade/dgtkpopups.glade %%DATADIR%%/glade/edit_trackers.glade %%DATADIR%%/glade/file_tab_menu.glade %%DATADIR%%/glade/files_dialog.glade %%DATADIR%%/glade/merge_dialog.glade %%DATADIR%%/glade/preferences_dialog.glade %%DATADIR%%/glade/torrent_menu.glade %%DATADIR%%/glade/tray_menu.glade %%DATADIR%%/glade/wizard.glade %%DATADIR%%/pixmaps/deluge-about.png -%%DATADIR%%/pixmaps/deluge128.png -%%DATADIR%%/pixmaps/deluge192.png -%%DATADIR%%/pixmaps/deluge22.png -%%DATADIR%%/pixmaps/deluge256.png -%%DATADIR%%/pixmaps/deluge32.png -%%DATADIR%%/pixmaps/deluge48.png +%%DATADIR%%/pixmaps/deluge.png +%%DATADIR%%/pixmaps/deluge.svg %%DATADIR%%/pixmaps/downloading16.png %%DATADIR%%/pixmaps/flags18x12/ad.png %%DATADIR%%/pixmaps/flags18x12/ae.png %%DATADIR%%/pixmaps/flags18x12/af.png %%DATADIR%%/pixmaps/flags18x12/ag.png %%DATADIR%%/pixmaps/flags18x12/ai.png %%DATADIR%%/pixmaps/flags18x12/al.png %%DATADIR%%/pixmaps/flags18x12/am.png %%DATADIR%%/pixmaps/flags18x12/an.png %%DATADIR%%/pixmaps/flags18x12/ao.png %%DATADIR%%/pixmaps/flags18x12/aq.png %%DATADIR%%/pixmaps/flags18x12/ar.png %%DATADIR%%/pixmaps/flags18x12/as.png %%DATADIR%%/pixmaps/flags18x12/at.png %%DATADIR%%/pixmaps/flags18x12/au.png %%DATADIR%%/pixmaps/flags18x12/aw.png %%DATADIR%%/pixmaps/flags18x12/ax.png %%DATADIR%%/pixmaps/flags18x12/az.png %%DATADIR%%/pixmaps/flags18x12/ba.png %%DATADIR%%/pixmaps/flags18x12/bb.png %%DATADIR%%/pixmaps/flags18x12/bd.png %%DATADIR%%/pixmaps/flags18x12/be.png %%DATADIR%%/pixmaps/flags18x12/bf.png %%DATADIR%%/pixmaps/flags18x12/bg.png %%DATADIR%%/pixmaps/flags18x12/bh.png %%DATADIR%%/pixmaps/flags18x12/bi.png %%DATADIR%%/pixmaps/flags18x12/bj.png %%DATADIR%%/pixmaps/flags18x12/bm.png %%DATADIR%%/pixmaps/flags18x12/bn.png %%DATADIR%%/pixmaps/flags18x12/bo.png %%DATADIR%%/pixmaps/flags18x12/br.png %%DATADIR%%/pixmaps/flags18x12/bs.png %%DATADIR%%/pixmaps/flags18x12/bt.png %%DATADIR%%/pixmaps/flags18x12/bv.png %%DATADIR%%/pixmaps/flags18x12/bw.png %%DATADIR%%/pixmaps/flags18x12/by.png %%DATADIR%%/pixmaps/flags18x12/bz.png %%DATADIR%%/pixmaps/flags18x12/ca.png %%DATADIR%%/pixmaps/flags18x12/cc.png %%DATADIR%%/pixmaps/flags18x12/cd.png %%DATADIR%%/pixmaps/flags18x12/cf.png %%DATADIR%%/pixmaps/flags18x12/cg.png %%DATADIR%%/pixmaps/flags18x12/ch.png %%DATADIR%%/pixmaps/flags18x12/ci.png %%DATADIR%%/pixmaps/flags18x12/ck.png %%DATADIR%%/pixmaps/flags18x12/cl.png %%DATADIR%%/pixmaps/flags18x12/cm.png %%DATADIR%%/pixmaps/flags18x12/cn.png %%DATADIR%%/pixmaps/flags18x12/co.png %%DATADIR%%/pixmaps/flags18x12/cr.png %%DATADIR%%/pixmaps/flags18x12/cs.png %%DATADIR%%/pixmaps/flags18x12/cu.png %%DATADIR%%/pixmaps/flags18x12/cv.png %%DATADIR%%/pixmaps/flags18x12/cx.png %%DATADIR%%/pixmaps/flags18x12/cy.png %%DATADIR%%/pixmaps/flags18x12/cz.png %%DATADIR%%/pixmaps/flags18x12/de.png %%DATADIR%%/pixmaps/flags18x12/dj.png %%DATADIR%%/pixmaps/flags18x12/dk.png %%DATADIR%%/pixmaps/flags18x12/dm.png %%DATADIR%%/pixmaps/flags18x12/do.png %%DATADIR%%/pixmaps/flags18x12/dz.png %%DATADIR%%/pixmaps/flags18x12/ec.png %%DATADIR%%/pixmaps/flags18x12/ee.png %%DATADIR%%/pixmaps/flags18x12/eg.png %%DATADIR%%/pixmaps/flags18x12/eh.png %%DATADIR%%/pixmaps/flags18x12/er.png %%DATADIR%%/pixmaps/flags18x12/es.png %%DATADIR%%/pixmaps/flags18x12/et.png %%DATADIR%%/pixmaps/flags18x12/fi.png %%DATADIR%%/pixmaps/flags18x12/fj.png %%DATADIR%%/pixmaps/flags18x12/fk.png %%DATADIR%%/pixmaps/flags18x12/fm.png %%DATADIR%%/pixmaps/flags18x12/fo.png %%DATADIR%%/pixmaps/flags18x12/fr.png %%DATADIR%%/pixmaps/flags18x12/fx.png %%DATADIR%%/pixmaps/flags18x12/ga.png %%DATADIR%%/pixmaps/flags18x12/gb.png %%DATADIR%%/pixmaps/flags18x12/gd.png %%DATADIR%%/pixmaps/flags18x12/ge.png %%DATADIR%%/pixmaps/flags18x12/gf.png %%DATADIR%%/pixmaps/flags18x12/gg.png %%DATADIR%%/pixmaps/flags18x12/gh.png %%DATADIR%%/pixmaps/flags18x12/gi.png %%DATADIR%%/pixmaps/flags18x12/gl.png %%DATADIR%%/pixmaps/flags18x12/gm.png %%DATADIR%%/pixmaps/flags18x12/gn.png %%DATADIR%%/pixmaps/flags18x12/gp.png %%DATADIR%%/pixmaps/flags18x12/gq.png %%DATADIR%%/pixmaps/flags18x12/gr.png %%DATADIR%%/pixmaps/flags18x12/gs.png %%DATADIR%%/pixmaps/flags18x12/gt.png %%DATADIR%%/pixmaps/flags18x12/gu.png %%DATADIR%%/pixmaps/flags18x12/gw.png %%DATADIR%%/pixmaps/flags18x12/gy.png %%DATADIR%%/pixmaps/flags18x12/hk.png %%DATADIR%%/pixmaps/flags18x12/hm.png %%DATADIR%%/pixmaps/flags18x12/hn.png %%DATADIR%%/pixmaps/flags18x12/hr.png %%DATADIR%%/pixmaps/flags18x12/ht.png %%DATADIR%%/pixmaps/flags18x12/hu.png %%DATADIR%%/pixmaps/flags18x12/id.png %%DATADIR%%/pixmaps/flags18x12/ie.png %%DATADIR%%/pixmaps/flags18x12/il.png %%DATADIR%%/pixmaps/flags18x12/in.png %%DATADIR%%/pixmaps/flags18x12/io.png %%DATADIR%%/pixmaps/flags18x12/iq.png %%DATADIR%%/pixmaps/flags18x12/ir.png %%DATADIR%%/pixmaps/flags18x12/is.png %%DATADIR%%/pixmaps/flags18x12/it.png %%DATADIR%%/pixmaps/flags18x12/je.png %%DATADIR%%/pixmaps/flags18x12/jm.png %%DATADIR%%/pixmaps/flags18x12/jo.png %%DATADIR%%/pixmaps/flags18x12/jp.png %%DATADIR%%/pixmaps/flags18x12/ke.png %%DATADIR%%/pixmaps/flags18x12/kg.png %%DATADIR%%/pixmaps/flags18x12/kh.png %%DATADIR%%/pixmaps/flags18x12/ki.png %%DATADIR%%/pixmaps/flags18x12/km.png %%DATADIR%%/pixmaps/flags18x12/kn.png %%DATADIR%%/pixmaps/flags18x12/kp.png %%DATADIR%%/pixmaps/flags18x12/kr.png %%DATADIR%%/pixmaps/flags18x12/kw.png %%DATADIR%%/pixmaps/flags18x12/ky.png %%DATADIR%%/pixmaps/flags18x12/kz.png %%DATADIR%%/pixmaps/flags18x12/la.png %%DATADIR%%/pixmaps/flags18x12/lb.png %%DATADIR%%/pixmaps/flags18x12/lc.png %%DATADIR%%/pixmaps/flags18x12/li.png %%DATADIR%%/pixmaps/flags18x12/lk.png %%DATADIR%%/pixmaps/flags18x12/lr.png %%DATADIR%%/pixmaps/flags18x12/ls.png %%DATADIR%%/pixmaps/flags18x12/lt.png %%DATADIR%%/pixmaps/flags18x12/lu.png %%DATADIR%%/pixmaps/flags18x12/lv.png %%DATADIR%%/pixmaps/flags18x12/ly.png %%DATADIR%%/pixmaps/flags18x12/ma.png %%DATADIR%%/pixmaps/flags18x12/mc.png %%DATADIR%%/pixmaps/flags18x12/md.png %%DATADIR%%/pixmaps/flags18x12/me.png %%DATADIR%%/pixmaps/flags18x12/mg.png %%DATADIR%%/pixmaps/flags18x12/mh.png %%DATADIR%%/pixmaps/flags18x12/mk.png %%DATADIR%%/pixmaps/flags18x12/ml.png %%DATADIR%%/pixmaps/flags18x12/mm.png %%DATADIR%%/pixmaps/flags18x12/mn.png %%DATADIR%%/pixmaps/flags18x12/mo.png %%DATADIR%%/pixmaps/flags18x12/mp.png %%DATADIR%%/pixmaps/flags18x12/mq.png %%DATADIR%%/pixmaps/flags18x12/mr.png %%DATADIR%%/pixmaps/flags18x12/ms.png %%DATADIR%%/pixmaps/flags18x12/mt.png %%DATADIR%%/pixmaps/flags18x12/mu.png %%DATADIR%%/pixmaps/flags18x12/mv.png %%DATADIR%%/pixmaps/flags18x12/mw.png %%DATADIR%%/pixmaps/flags18x12/mx.png %%DATADIR%%/pixmaps/flags18x12/my.png %%DATADIR%%/pixmaps/flags18x12/mz.png %%DATADIR%%/pixmaps/flags18x12/na.png %%DATADIR%%/pixmaps/flags18x12/nc.png %%DATADIR%%/pixmaps/flags18x12/ne.png %%DATADIR%%/pixmaps/flags18x12/nf.png %%DATADIR%%/pixmaps/flags18x12/ng.png %%DATADIR%%/pixmaps/flags18x12/ni.png %%DATADIR%%/pixmaps/flags18x12/nl.png %%DATADIR%%/pixmaps/flags18x12/no.png %%DATADIR%%/pixmaps/flags18x12/np.png %%DATADIR%%/pixmaps/flags18x12/nr.png %%DATADIR%%/pixmaps/flags18x12/nu.png %%DATADIR%%/pixmaps/flags18x12/nz.png %%DATADIR%%/pixmaps/flags18x12/om.png %%DATADIR%%/pixmaps/flags18x12/pa.png %%DATADIR%%/pixmaps/flags18x12/pe.png %%DATADIR%%/pixmaps/flags18x12/pf.png %%DATADIR%%/pixmaps/flags18x12/pg.png %%DATADIR%%/pixmaps/flags18x12/ph.png %%DATADIR%%/pixmaps/flags18x12/pk.png %%DATADIR%%/pixmaps/flags18x12/pl.png %%DATADIR%%/pixmaps/flags18x12/pm.png %%DATADIR%%/pixmaps/flags18x12/pn.png %%DATADIR%%/pixmaps/flags18x12/pr.png %%DATADIR%%/pixmaps/flags18x12/ps.png %%DATADIR%%/pixmaps/flags18x12/pt.png %%DATADIR%%/pixmaps/flags18x12/pw.png %%DATADIR%%/pixmaps/flags18x12/py.png %%DATADIR%%/pixmaps/flags18x12/qa.png %%DATADIR%%/pixmaps/flags18x12/re.png %%DATADIR%%/pixmaps/flags18x12/ro.png %%DATADIR%%/pixmaps/flags18x12/rs.png %%DATADIR%%/pixmaps/flags18x12/ru.png %%DATADIR%%/pixmaps/flags18x12/rw.png %%DATADIR%%/pixmaps/flags18x12/sa.png %%DATADIR%%/pixmaps/flags18x12/sb.png %%DATADIR%%/pixmaps/flags18x12/sc.png %%DATADIR%%/pixmaps/flags18x12/sd.png %%DATADIR%%/pixmaps/flags18x12/se.png %%DATADIR%%/pixmaps/flags18x12/sg.png %%DATADIR%%/pixmaps/flags18x12/sh.png %%DATADIR%%/pixmaps/flags18x12/si.png %%DATADIR%%/pixmaps/flags18x12/sj.png %%DATADIR%%/pixmaps/flags18x12/sk.png %%DATADIR%%/pixmaps/flags18x12/sl.png %%DATADIR%%/pixmaps/flags18x12/sm.png %%DATADIR%%/pixmaps/flags18x12/sn.png %%DATADIR%%/pixmaps/flags18x12/so.png %%DATADIR%%/pixmaps/flags18x12/sr.png %%DATADIR%%/pixmaps/flags18x12/st.png %%DATADIR%%/pixmaps/flags18x12/sv.png %%DATADIR%%/pixmaps/flags18x12/sy.png %%DATADIR%%/pixmaps/flags18x12/sz.png %%DATADIR%%/pixmaps/flags18x12/tc.png %%DATADIR%%/pixmaps/flags18x12/td.png %%DATADIR%%/pixmaps/flags18x12/tf.png %%DATADIR%%/pixmaps/flags18x12/tg.png %%DATADIR%%/pixmaps/flags18x12/th.png %%DATADIR%%/pixmaps/flags18x12/tj.png %%DATADIR%%/pixmaps/flags18x12/tk.png %%DATADIR%%/pixmaps/flags18x12/tl.png %%DATADIR%%/pixmaps/flags18x12/tm.png %%DATADIR%%/pixmaps/flags18x12/tn.png %%DATADIR%%/pixmaps/flags18x12/to.png %%DATADIR%%/pixmaps/flags18x12/tp.png %%DATADIR%%/pixmaps/flags18x12/tr.png %%DATADIR%%/pixmaps/flags18x12/tt.png %%DATADIR%%/pixmaps/flags18x12/tv.png %%DATADIR%%/pixmaps/flags18x12/tw.png %%DATADIR%%/pixmaps/flags18x12/tz.png %%DATADIR%%/pixmaps/flags18x12/ua.png %%DATADIR%%/pixmaps/flags18x12/ug.png %%DATADIR%%/pixmaps/flags18x12/um.png %%DATADIR%%/pixmaps/flags18x12/us.png %%DATADIR%%/pixmaps/flags18x12/uy.png %%DATADIR%%/pixmaps/flags18x12/uz.png %%DATADIR%%/pixmaps/flags18x12/va.png %%DATADIR%%/pixmaps/flags18x12/vc.png %%DATADIR%%/pixmaps/flags18x12/ve.png %%DATADIR%%/pixmaps/flags18x12/vg.png %%DATADIR%%/pixmaps/flags18x12/vi.png %%DATADIR%%/pixmaps/flags18x12/vn.png %%DATADIR%%/pixmaps/flags18x12/vu.png %%DATADIR%%/pixmaps/flags18x12/wf.png %%DATADIR%%/pixmaps/flags18x12/ws.png %%DATADIR%%/pixmaps/flags18x12/ye.png %%DATADIR%%/pixmaps/flags18x12/yt.png %%DATADIR%%/pixmaps/flags18x12/yu.png %%DATADIR%%/pixmaps/flags18x12/za.png %%DATADIR%%/pixmaps/flags18x12/zm.png %%DATADIR%%/pixmaps/flags18x12/zw.png %%DATADIR%%/pixmaps/flags25x15/ad.png %%DATADIR%%/pixmaps/flags25x15/ae.png %%DATADIR%%/pixmaps/flags25x15/af.png %%DATADIR%%/pixmaps/flags25x15/ag.png %%DATADIR%%/pixmaps/flags25x15/ai.png %%DATADIR%%/pixmaps/flags25x15/al.png %%DATADIR%%/pixmaps/flags25x15/am.png %%DATADIR%%/pixmaps/flags25x15/an.png %%DATADIR%%/pixmaps/flags25x15/ao.png %%DATADIR%%/pixmaps/flags25x15/aq.png %%DATADIR%%/pixmaps/flags25x15/ar.png %%DATADIR%%/pixmaps/flags25x15/as.png %%DATADIR%%/pixmaps/flags25x15/at.png %%DATADIR%%/pixmaps/flags25x15/au.png %%DATADIR%%/pixmaps/flags25x15/aw.png %%DATADIR%%/pixmaps/flags25x15/ax.png %%DATADIR%%/pixmaps/flags25x15/az.png %%DATADIR%%/pixmaps/flags25x15/ba.png %%DATADIR%%/pixmaps/flags25x15/bb.png %%DATADIR%%/pixmaps/flags25x15/bd.png %%DATADIR%%/pixmaps/flags25x15/be.png %%DATADIR%%/pixmaps/flags25x15/bf.png %%DATADIR%%/pixmaps/flags25x15/bg.png %%DATADIR%%/pixmaps/flags25x15/bh.png %%DATADIR%%/pixmaps/flags25x15/bi.png %%DATADIR%%/pixmaps/flags25x15/bj.png %%DATADIR%%/pixmaps/flags25x15/bm.png %%DATADIR%%/pixmaps/flags25x15/bn.png %%DATADIR%%/pixmaps/flags25x15/bo.png %%DATADIR%%/pixmaps/flags25x15/br.png %%DATADIR%%/pixmaps/flags25x15/bs.png %%DATADIR%%/pixmaps/flags25x15/bt.png %%DATADIR%%/pixmaps/flags25x15/bv.png %%DATADIR%%/pixmaps/flags25x15/bw.png %%DATADIR%%/pixmaps/flags25x15/by.png %%DATADIR%%/pixmaps/flags25x15/bz.png %%DATADIR%%/pixmaps/flags25x15/ca.png %%DATADIR%%/pixmaps/flags25x15/cc.png %%DATADIR%%/pixmaps/flags25x15/cd.png %%DATADIR%%/pixmaps/flags25x15/cf.png %%DATADIR%%/pixmaps/flags25x15/cg.png %%DATADIR%%/pixmaps/flags25x15/ch.png %%DATADIR%%/pixmaps/flags25x15/ci.png %%DATADIR%%/pixmaps/flags25x15/ck.png %%DATADIR%%/pixmaps/flags25x15/cl.png %%DATADIR%%/pixmaps/flags25x15/cm.png %%DATADIR%%/pixmaps/flags25x15/cn.png %%DATADIR%%/pixmaps/flags25x15/co.png %%DATADIR%%/pixmaps/flags25x15/cr.png %%DATADIR%%/pixmaps/flags25x15/cs.png %%DATADIR%%/pixmaps/flags25x15/cu.png %%DATADIR%%/pixmaps/flags25x15/cv.png %%DATADIR%%/pixmaps/flags25x15/cx.png %%DATADIR%%/pixmaps/flags25x15/cy.png %%DATADIR%%/pixmaps/flags25x15/cz.png %%DATADIR%%/pixmaps/flags25x15/de.png %%DATADIR%%/pixmaps/flags25x15/dj.png %%DATADIR%%/pixmaps/flags25x15/dk.png %%DATADIR%%/pixmaps/flags25x15/dm.png %%DATADIR%%/pixmaps/flags25x15/do.png %%DATADIR%%/pixmaps/flags25x15/dz.png %%DATADIR%%/pixmaps/flags25x15/ec.png %%DATADIR%%/pixmaps/flags25x15/ee.png %%DATADIR%%/pixmaps/flags25x15/eg.png %%DATADIR%%/pixmaps/flags25x15/eh.png %%DATADIR%%/pixmaps/flags25x15/er.png %%DATADIR%%/pixmaps/flags25x15/es.png %%DATADIR%%/pixmaps/flags25x15/et.png %%DATADIR%%/pixmaps/flags25x15/fi.png %%DATADIR%%/pixmaps/flags25x15/fj.png %%DATADIR%%/pixmaps/flags25x15/fk.png %%DATADIR%%/pixmaps/flags25x15/fm.png %%DATADIR%%/pixmaps/flags25x15/fo.png %%DATADIR%%/pixmaps/flags25x15/fr.png %%DATADIR%%/pixmaps/flags25x15/fx.png %%DATADIR%%/pixmaps/flags25x15/ga.png %%DATADIR%%/pixmaps/flags25x15/gb.png %%DATADIR%%/pixmaps/flags25x15/gd.png %%DATADIR%%/pixmaps/flags25x15/ge.png %%DATADIR%%/pixmaps/flags25x15/gf.png %%DATADIR%%/pixmaps/flags25x15/gg.png %%DATADIR%%/pixmaps/flags25x15/gh.png %%DATADIR%%/pixmaps/flags25x15/gi.png %%DATADIR%%/pixmaps/flags25x15/gl.png %%DATADIR%%/pixmaps/flags25x15/gm.png %%DATADIR%%/pixmaps/flags25x15/gn.png %%DATADIR%%/pixmaps/flags25x15/gp.png %%DATADIR%%/pixmaps/flags25x15/gq.png %%DATADIR%%/pixmaps/flags25x15/gr.png %%DATADIR%%/pixmaps/flags25x15/gs.png %%DATADIR%%/pixmaps/flags25x15/gt.png %%DATADIR%%/pixmaps/flags25x15/gu.png %%DATADIR%%/pixmaps/flags25x15/gw.png %%DATADIR%%/pixmaps/flags25x15/gy.png %%DATADIR%%/pixmaps/flags25x15/hk.png %%DATADIR%%/pixmaps/flags25x15/hm.png %%DATADIR%%/pixmaps/flags25x15/hn.png %%DATADIR%%/pixmaps/flags25x15/hr.png %%DATADIR%%/pixmaps/flags25x15/ht.png %%DATADIR%%/pixmaps/flags25x15/hu.png %%DATADIR%%/pixmaps/flags25x15/id.png %%DATADIR%%/pixmaps/flags25x15/ie.png %%DATADIR%%/pixmaps/flags25x15/il.png %%DATADIR%%/pixmaps/flags25x15/in.png %%DATADIR%%/pixmaps/flags25x15/io.png %%DATADIR%%/pixmaps/flags25x15/iq.png %%DATADIR%%/pixmaps/flags25x15/ir.png %%DATADIR%%/pixmaps/flags25x15/is.png %%DATADIR%%/pixmaps/flags25x15/it.png %%DATADIR%%/pixmaps/flags25x15/je.png %%DATADIR%%/pixmaps/flags25x15/jm.png %%DATADIR%%/pixmaps/flags25x15/jo.png %%DATADIR%%/pixmaps/flags25x15/jp.png %%DATADIR%%/pixmaps/flags25x15/ke.png %%DATADIR%%/pixmaps/flags25x15/kg.png %%DATADIR%%/pixmaps/flags25x15/kh.png %%DATADIR%%/pixmaps/flags25x15/ki.png %%DATADIR%%/pixmaps/flags25x15/km.png %%DATADIR%%/pixmaps/flags25x15/kn.png %%DATADIR%%/pixmaps/flags25x15/kp.png %%DATADIR%%/pixmaps/flags25x15/kr.png %%DATADIR%%/pixmaps/flags25x15/kw.png %%DATADIR%%/pixmaps/flags25x15/ky.png %%DATADIR%%/pixmaps/flags25x15/kz.png %%DATADIR%%/pixmaps/flags25x15/la.png %%DATADIR%%/pixmaps/flags25x15/lb.png %%DATADIR%%/pixmaps/flags25x15/lc.png %%DATADIR%%/pixmaps/flags25x15/li.png %%DATADIR%%/pixmaps/flags25x15/lk.png %%DATADIR%%/pixmaps/flags25x15/lr.png %%DATADIR%%/pixmaps/flags25x15/ls.png %%DATADIR%%/pixmaps/flags25x15/lt.png %%DATADIR%%/pixmaps/flags25x15/lu.png %%DATADIR%%/pixmaps/flags25x15/lv.png %%DATADIR%%/pixmaps/flags25x15/ly.png %%DATADIR%%/pixmaps/flags25x15/ma.png %%DATADIR%%/pixmaps/flags25x15/mc.png %%DATADIR%%/pixmaps/flags25x15/md.png %%DATADIR%%/pixmaps/flags25x15/me.png %%DATADIR%%/pixmaps/flags25x15/mg.png %%DATADIR%%/pixmaps/flags25x15/mh.png %%DATADIR%%/pixmaps/flags25x15/mk.png %%DATADIR%%/pixmaps/flags25x15/ml.png %%DATADIR%%/pixmaps/flags25x15/mm.png %%DATADIR%%/pixmaps/flags25x15/mn.png %%DATADIR%%/pixmaps/flags25x15/mo.png %%DATADIR%%/pixmaps/flags25x15/mp.png %%DATADIR%%/pixmaps/flags25x15/mq.png %%DATADIR%%/pixmaps/flags25x15/mr.png %%DATADIR%%/pixmaps/flags25x15/ms.png %%DATADIR%%/pixmaps/flags25x15/mt.png %%DATADIR%%/pixmaps/flags25x15/mu.png %%DATADIR%%/pixmaps/flags25x15/mv.png %%DATADIR%%/pixmaps/flags25x15/mw.png %%DATADIR%%/pixmaps/flags25x15/mx.png %%DATADIR%%/pixmaps/flags25x15/my.png %%DATADIR%%/pixmaps/flags25x15/mz.png %%DATADIR%%/pixmaps/flags25x15/na.png %%DATADIR%%/pixmaps/flags25x15/nc.png %%DATADIR%%/pixmaps/flags25x15/ne.png %%DATADIR%%/pixmaps/flags25x15/nf.png %%DATADIR%%/pixmaps/flags25x15/ng.png %%DATADIR%%/pixmaps/flags25x15/ni.png %%DATADIR%%/pixmaps/flags25x15/nl.png %%DATADIR%%/pixmaps/flags25x15/no.png %%DATADIR%%/pixmaps/flags25x15/np.png %%DATADIR%%/pixmaps/flags25x15/nr.png %%DATADIR%%/pixmaps/flags25x15/nu.png %%DATADIR%%/pixmaps/flags25x15/nz.png %%DATADIR%%/pixmaps/flags25x15/om.png %%DATADIR%%/pixmaps/flags25x15/pa.png %%DATADIR%%/pixmaps/flags25x15/pe.png %%DATADIR%%/pixmaps/flags25x15/pf.png %%DATADIR%%/pixmaps/flags25x15/pg.png %%DATADIR%%/pixmaps/flags25x15/ph.png %%DATADIR%%/pixmaps/flags25x15/pk.png %%DATADIR%%/pixmaps/flags25x15/pl.png %%DATADIR%%/pixmaps/flags25x15/pm.png %%DATADIR%%/pixmaps/flags25x15/pn.png %%DATADIR%%/pixmaps/flags25x15/pr.png %%DATADIR%%/pixmaps/flags25x15/ps.png %%DATADIR%%/pixmaps/flags25x15/pt.png %%DATADIR%%/pixmaps/flags25x15/pw.png %%DATADIR%%/pixmaps/flags25x15/py.png %%DATADIR%%/pixmaps/flags25x15/qa.png %%DATADIR%%/pixmaps/flags25x15/re.png %%DATADIR%%/pixmaps/flags25x15/ro.png %%DATADIR%%/pixmaps/flags25x15/rs.png %%DATADIR%%/pixmaps/flags25x15/ru.png %%DATADIR%%/pixmaps/flags25x15/rw.png %%DATADIR%%/pixmaps/flags25x15/sa.png %%DATADIR%%/pixmaps/flags25x15/sb.png %%DATADIR%%/pixmaps/flags25x15/sc.png %%DATADIR%%/pixmaps/flags25x15/sd.png %%DATADIR%%/pixmaps/flags25x15/se.png %%DATADIR%%/pixmaps/flags25x15/sg.png %%DATADIR%%/pixmaps/flags25x15/sh.png %%DATADIR%%/pixmaps/flags25x15/si.png %%DATADIR%%/pixmaps/flags25x15/sj.png %%DATADIR%%/pixmaps/flags25x15/sk.png %%DATADIR%%/pixmaps/flags25x15/sl.png %%DATADIR%%/pixmaps/flags25x15/sm.png %%DATADIR%%/pixmaps/flags25x15/sn.png %%DATADIR%%/pixmaps/flags25x15/so.png %%DATADIR%%/pixmaps/flags25x15/sr.png %%DATADIR%%/pixmaps/flags25x15/st.png %%DATADIR%%/pixmaps/flags25x15/sv.png %%DATADIR%%/pixmaps/flags25x15/sy.png %%DATADIR%%/pixmaps/flags25x15/sz.png %%DATADIR%%/pixmaps/flags25x15/tc.png %%DATADIR%%/pixmaps/flags25x15/td.png %%DATADIR%%/pixmaps/flags25x15/tf.png %%DATADIR%%/pixmaps/flags25x15/tg.png %%DATADIR%%/pixmaps/flags25x15/th.png %%DATADIR%%/pixmaps/flags25x15/tj.png %%DATADIR%%/pixmaps/flags25x15/tk.png %%DATADIR%%/pixmaps/flags25x15/tl.png %%DATADIR%%/pixmaps/flags25x15/tm.png %%DATADIR%%/pixmaps/flags25x15/tn.png %%DATADIR%%/pixmaps/flags25x15/to.png %%DATADIR%%/pixmaps/flags25x15/tp.png %%DATADIR%%/pixmaps/flags25x15/tr.png %%DATADIR%%/pixmaps/flags25x15/tt.png %%DATADIR%%/pixmaps/flags25x15/tv.png %%DATADIR%%/pixmaps/flags25x15/tw.png %%DATADIR%%/pixmaps/flags25x15/tz.png %%DATADIR%%/pixmaps/flags25x15/ua.png %%DATADIR%%/pixmaps/flags25x15/ug.png %%DATADIR%%/pixmaps/flags25x15/um.png %%DATADIR%%/pixmaps/flags25x15/us.png %%DATADIR%%/pixmaps/flags25x15/uy.png %%DATADIR%%/pixmaps/flags25x15/uz.png %%DATADIR%%/pixmaps/flags25x15/va.png %%DATADIR%%/pixmaps/flags25x15/vc.png %%DATADIR%%/pixmaps/flags25x15/ve.png %%DATADIR%%/pixmaps/flags25x15/vg.png %%DATADIR%%/pixmaps/flags25x15/vi.png %%DATADIR%%/pixmaps/flags25x15/vn.png %%DATADIR%%/pixmaps/flags25x15/vu.png %%DATADIR%%/pixmaps/flags25x15/wf.png %%DATADIR%%/pixmaps/flags25x15/ws.png %%DATADIR%%/pixmaps/flags25x15/ye.png %%DATADIR%%/pixmaps/flags25x15/yt.png %%DATADIR%%/pixmaps/flags25x15/yu.png %%DATADIR%%/pixmaps/flags25x15/za.png %%DATADIR%%/pixmaps/flags25x15/zm.png %%DATADIR%%/pixmaps/flags25x15/zw.png %%DATADIR%%/pixmaps/inactive16.png %%DATADIR%%/pixmaps/seeding16.png %%DATADIR%%/plugins/BlocklistImport/__init__.py %%DATADIR%%/plugins/BlocklistImport/listfile1.txt %%DATADIR%%/plugins/BlocklistImport/listfile2.txt %%DATADIR%%/plugins/BlocklistImport/nipfilter.dat.gz %%DATADIR%%/plugins/BlocklistImport/peerguardian.py %%DATADIR%%/plugins/BlocklistImport/pg.txt %%DATADIR%%/plugins/BlocklistImport/splist.txt %%DATADIR%%/plugins/BlocklistImport/test.py %%DATADIR%%/plugins/BlocklistImport/text.py %%DATADIR%%/plugins/BlocklistImport/ui.py %%DATADIR%%/plugins/DesiredRatio/__init__.py %%DATADIR%%/plugins/EventLogging/__init__.py %%DATADIR%%/plugins/EventLogging/event_logging_preferences.glade %%DATADIR%%/plugins/EventLogging/tab_log.py %%DATADIR%%/plugins/ExtraStats/__init__.py %%DATADIR%%/plugins/ExtraStats/stats_preferences.glade %%DATADIR%%/plugins/Locations/__init__.py %%DATADIR%%/plugins/Locations/plugin.py %%DATADIR%%/plugins/MoveTorrent/__init__.py %%DATADIR%%/plugins/MoveTorrent/movetorrent.glade %%DATADIR%%/plugins/NetworkGraph/__init__.py %%DATADIR%%/plugins/NetworkGraph/graph_preferences.glade %%DATADIR%%/plugins/NetworkGraph/tab_graph.py %%DATADIR%%/plugins/NetworkHealth/__init__.py %%DATADIR%%/plugins/NetworkHealth/plugin.py +%%DATADIR%%/plugins/Scheduler/__init__.py +%%DATADIR%%/plugins/Scheduler/plugin.py %%DATADIR%%/plugins/SimpleRSS/__init__.py %%DATADIR%%/plugins/SimpleRSS/feedparser.py %%DATADIR%%/plugins/SimpleRSS/plugin.py %%DATADIR%%/plugins/SimpleRSS/rss.glade %%DATADIR%%/plugins/SimpleRSS/rss.png %%DATADIR%%/plugins/SpeedLimiter/__init__.py %%DATADIR%%/plugins/TorrentCreator/__init__.py %%DATADIR%%/plugins/TorrentCreator/torrentcreator.glade %%DATADIR%%/plugins/TorrentFiles/__init__.py %%DATADIR%%/plugins/TorrentFiles/files_preferences.glade %%DATADIR%%/plugins/TorrentFiles/tab_files.py %%DATADIR%%/plugins/TorrentNotification/__init__.py %%DATADIR%%/plugins/TorrentNotification/notification_preferences.glade %%DATADIR%%/plugins/TorrentPeers/__init__.py %%DATADIR%%/plugins/TorrentPeers/peers_preferences.glade %%DATADIR%%/plugins/TorrentPeers/tab_peers.py -%%DATADIR%%/plugins/TorrentPieces/__init__.py -%%DATADIR%%/plugins/TorrentPieces/pieces_preferences.glade -%%DATADIR%%/plugins/TorrentPieces/tab_pieces.py %%DATADIR%%/plugins/TorrentSearch/__init__.py %%DATADIR%%/plugins/TorrentSearch/plugin.py %%DATADIR%%/plugins/TorrentSearch/searchdlg.glade %%DATADIR%%/plugins/WebSeed/__init__.py %%DATADIR%%/plugins/WebSeed/webseed.glade +%%DATADIR%%/plugins/WebUi/LICENSE +%%DATADIR%%/plugins/WebUi/__init__.py +%%DATADIR%%/plugins/WebUi/dbus_interface.py +%%DATADIR%%/plugins/WebUi/dbus_pythonize.py +%%DATADIR%%/plugins/WebUi/debugerror.py +%%DATADIR%%/plugins/WebUi/deluge_webserver.py +%%DATADIR%%/plugins/WebUi/gtk_cherrypy_wsgiserver.py +%%DATADIR%%/plugins/WebUi/revno +%%DATADIR%%/plugins/WebUi/run_webserver +%%DATADIR%%/plugins/WebUi/scripts/add_torrents_to_deluge.user.js +%%DATADIR%%/plugins/WebUi/scripts/build_webui_tarball.sh +%%DATADIR%%/plugins/WebUi/scripts/curl-example +%%DATADIR%%/plugins/WebUi/scripts/extract_template_strings.py +%%DATADIR%%/plugins/WebUi/scripts/template_strings.py +%%DATADIR%%/plugins/WebUi/static/images/deluge_icon.gif +%%DATADIR%%/plugins/WebUi/static/images/downloading16.png +%%DATADIR%%/plugins/WebUi/static/images/inactive16.png +%%DATADIR%%/plugins/WebUi/static/images/seeding16.png +%%DATADIR%%/plugins/WebUi/static/images/simple_bg.jpg +%%DATADIR%%/plugins/WebUi/static/images/simple_line.jpg +%%DATADIR%%/plugins/WebUi/static/images/simple_logo.jpg +%%DATADIR%%/plugins/WebUi/static/images/tango/down.png +%%DATADIR%%/plugins/WebUi/static/images/tango/list-add.png +%%DATADIR%%/plugins/WebUi/static/images/tango/list-remove.png +%%DATADIR%%/plugins/WebUi/static/images/tango/media-playback-pause.png +%%DATADIR%%/plugins/WebUi/static/images/tango/media-playback-start.png +%%DATADIR%%/plugins/WebUi/static/images/tango/preferences-system.png +%%DATADIR%%/plugins/WebUi/static/images/tango/process-stop.png +%%DATADIR%%/plugins/WebUi/static/images/tango/up.png +%%DATADIR%%/plugins/WebUi/static/images/tango/user-trash.png +%%DATADIR%%/plugins/WebUi/static/images/tango/view-refresh.png +%%DATADIR%%/plugins/WebUi/static/simple_site_style.css +%%DATADIR%%/plugins/WebUi/templates/deluge/about.html +%%DATADIR%%/plugins/WebUi/templates/deluge/authors.txt +%%DATADIR%%/plugins/WebUi/templates/deluge/error.html +%%DATADIR%%/plugins/WebUi/templates/deluge/footer.html +%%DATADIR%%/plugins/WebUi/templates/deluge/header.html +%%DATADIR%%/plugins/WebUi/templates/deluge/index.html +%%DATADIR%%/plugins/WebUi/templates/deluge/login.html +%%DATADIR%%/plugins/WebUi/templates/deluge/part_button.html +%%DATADIR%%/plugins/WebUi/templates/deluge/part_refresh.html +%%DATADIR%%/plugins/WebUi/templates/deluge/refresh_form.html +%%DATADIR%%/plugins/WebUi/templates/deluge/sort_column_head.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_add.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_delete.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_info.html +%%DATADIR%%/plugins/WebUi/templates/hacking-templates.txt +%%DATADIR%%/plugins/WebUi/version +%%DATADIR%%/plugins/WebUi/webpy022/Dependency-not-really part of webui.txt +%%DATADIR%%/plugins/WebUi/webpy022/__init__.py +%%DATADIR%%/plugins/WebUi/webpy022/changes.txt +%%DATADIR%%/plugins/WebUi/webpy022/cheetah.py +%%DATADIR%%/plugins/WebUi/webpy022/db.py +%%DATADIR%%/plugins/WebUi/webpy022/debugerror.py +%%DATADIR%%/plugins/WebUi/webpy022/form.py +%%DATADIR%%/plugins/WebUi/webpy022/http.py +%%DATADIR%%/plugins/WebUi/webpy022/httpserver.py +%%DATADIR%%/plugins/WebUi/webpy022/net.py +%%DATADIR%%/plugins/WebUi/webpy022/request.py +%%DATADIR%%/plugins/WebUi/webpy022/template.py +%%DATADIR%%/plugins/WebUi/webpy022/utils.py +%%DATADIR%%/plugins/WebUi/webpy022/webapi.py +%%DATADIR%%/plugins/WebUi/webpy022/wsgi.py +%%DATADIR%%/plugins/WebUi/webpy022/wsgiserver/__init__.py +%%DATADIR%%/plugins/WebUi/webserver_common.py +%%DATADIR%%/plugins/WebUi/webserver_framework.py %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README share/locale/ar/LC_MESSAGES/deluge.mo share/locale/ast/LC_MESSAGES/deluge.mo share/locale/bg/LC_MESSAGES/deluge.mo share/locale/ca/LC_MESSAGES/deluge.mo share/locale/cs/LC_MESSAGES/deluge.mo share/locale/da/LC_MESSAGES/deluge.mo share/locale/de/LC_MESSAGES/deluge.mo share/locale/el/LC_MESSAGES/deluge.mo share/locale/en_AU/LC_MESSAGES/deluge.mo share/locale/en_CA/LC_MESSAGES/deluge.mo share/locale/en_GB/LC_MESSAGES/deluge.mo share/locale/es/LC_MESSAGES/deluge.mo share/locale/et/LC_MESSAGES/deluge.mo share/locale/eu/LC_MESSAGES/deluge.mo share/locale/fi/LC_MESSAGES/deluge.mo share/locale/fr/LC_MESSAGES/deluge.mo share/locale/gl/LC_MESSAGES/deluge.mo share/locale/he/LC_MESSAGES/deluge.mo share/locale/hr/LC_MESSAGES/deluge.mo share/locale/hu/LC_MESSAGES/deluge.mo share/locale/id/LC_MESSAGES/deluge.mo +share/locale/is/LC_MESSAGES/deluge.mo share/locale/it/LC_MESSAGES/deluge.mo share/locale/ja/LC_MESSAGES/deluge.mo share/locale/ko/LC_MESSAGES/deluge.mo share/locale/ku/LC_MESSAGES/deluge.mo share/locale/la/LC_MESSAGES/deluge.mo share/locale/lt/LC_MESSAGES/deluge.mo share/locale/lv/LC_MESSAGES/deluge.mo share/locale/mk/LC_MESSAGES/deluge.mo +share/locale/ms/LC_MESSAGES/deluge.mo share/locale/nb/LC_MESSAGES/deluge.mo share/locale/nl/LC_MESSAGES/deluge.mo share/locale/pl/LC_MESSAGES/deluge.mo share/locale/pt/LC_MESSAGES/deluge.mo share/locale/pt_BR/LC_MESSAGES/deluge.mo share/locale/ro/LC_MESSAGES/deluge.mo share/locale/ru/LC_MESSAGES/deluge.mo share/locale/sk/LC_MESSAGES/deluge.mo share/locale/sl/LC_MESSAGES/deluge.mo share/locale/sr/LC_MESSAGES/deluge.mo share/locale/sv/LC_MESSAGES/deluge.mo share/locale/ta/LC_MESSAGES/deluge.mo share/locale/tlh/LC_MESSAGES/deluge.mo share/locale/tr/LC_MESSAGES/deluge.mo share/locale/uk/LC_MESSAGES/deluge.mo share/locale/zh_CN/LC_MESSAGES/deluge.mo share/locale/zh_TW/LC_MESSAGES/deluge.mo share/pixmaps/deluge.png @dirrmtry share/locale/tlh/LC_MESSAGES @dirrmtry share/locale/tlh @dirrmtry share/locale/la/LC_MESSAGES @dirrmtry share/locale/la @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku @dirrmtry share/locale/ast/LC_MESSAGES @dirrmtry share/locale/ast %%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/plugins/WebUi/webpy022/wsgiserver +@dirrm %%DATADIR%%/plugins/WebUi/webpy022 +@dirrm %%DATADIR%%/plugins/WebUi/templates/deluge +@dirrm %%DATADIR%%/plugins/WebUi/templates +@dirrm %%DATADIR%%/plugins/WebUi/static/images/tango +@dirrm %%DATADIR%%/plugins/WebUi/static/images +@dirrm %%DATADIR%%/plugins/WebUi/static +@dirrm %%DATADIR%%/plugins/WebUi/scripts +@dirrm %%DATADIR%%/plugins/WebUi @dirrm %%DATADIR%%/plugins/WebSeed @dirrm %%DATADIR%%/plugins/TorrentSearch -@dirrm %%DATADIR%%/plugins/TorrentPieces @dirrm %%DATADIR%%/plugins/TorrentPeers @dirrm %%DATADIR%%/plugins/TorrentNotification @dirrm %%DATADIR%%/plugins/TorrentFiles @dirrm %%DATADIR%%/plugins/TorrentCreator @dirrm %%DATADIR%%/plugins/SpeedLimiter @dirrm %%DATADIR%%/plugins/SimpleRSS +@dirrm %%DATADIR%%/plugins/Scheduler @dirrm %%DATADIR%%/plugins/NetworkHealth @dirrm %%DATADIR%%/plugins/NetworkGraph @dirrm %%DATADIR%%/plugins/MoveTorrent @dirrm %%DATADIR%%/plugins/Locations @dirrm %%DATADIR%%/plugins/ExtraStats @dirrm %%DATADIR%%/plugins/EventLogging @dirrm %%DATADIR%%/plugins/DesiredRatio @dirrm %%DATADIR%%/plugins/BlocklistImport @dirrmtry %%DATADIR%%/plugins @dirrm %%DATADIR%%/pixmaps/flags25x15 @dirrm %%DATADIR%%/pixmaps/flags18x12 @dirrm %%DATADIR%%/pixmaps +@dirrm %%DATADIR%%/icons/scalable/apps +@dirrm %%DATADIR%%/icons/scalable +@dirrm %%DATADIR%%/icons/hicolor +@dirrm %%DATADIR%%/icons @dirrm %%DATADIR%%/glade @dirrmtry %%DATADIR%% @dirrmtry share/applications @dirrm %%PYTHON_SITELIBDIR%%/deluge @exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true Property changes on: head/net-p2p/deluge/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property Index: head/net-p2p/deluge05/Makefile =================================================================== --- head/net-p2p/deluge05/Makefile (revision 202036) +++ head/net-p2p/deluge05/Makefile (revision 202037) @@ -1,51 +1,50 @@ # New ports collection makefile for: deluge # Date created: 03 December 2006 # Whom: Mezz # # $FreeBSD$ # PORTNAME= deluge -PORTVERSION= 0.5.5 -PORTREVISION= 1 +PORTVERSION= 0.5.6 CATEGORIES= net-p2p python MASTER_SITES= http://download.deluge-torrent.org/tarball/${PORTVERSION}/ MAINTAINER= mezz@FreeBSD.org COMMENT= A Bittorrent client, using Python, GTK+2 and Rasterbar libtorrent LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost RUN_DEPENDS= ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \ ${PYTHON_SITELIBDIR}/dbus/__init__.py:${PORTSDIR}/devel/py-dbus \ ${PYTHON_SITELIBDIR}/gtk-2.0/pynotify/__init__.py:${PORTSDIR}/devel/py-notify USE_GNOME= pygtk2 desktopfileutils USE_GETTEXT= yes USE_OPENSSL= yes USE_PYTHON= yes USE_PYDISTUTILS=yes MAKE_ENV= CC="${CC}" CXX="${CXX}" DOCS= LICENSE README .include .if ${ARCH} == "sparc64" || ${ARCH} == "ia64" CFLAGS+= -DAMD64 .endif post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g ; \ s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' ${WRKSRC}/setup.py post-install: @-update-desktop-database .ifndef (NOPORTDOCS) @${MKDIR} ${DOCSDIR} .for i in ${DOCS} @${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR} .endfor .endif .include Property changes on: head/net-p2p/deluge05/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.20 \ No newline at end of property +1.21 \ No newline at end of property Index: head/net-p2p/deluge05/distinfo =================================================================== --- head/net-p2p/deluge05/distinfo (revision 202036) +++ head/net-p2p/deluge05/distinfo (revision 202037) @@ -1,3 +1,3 @@ -MD5 (deluge-0.5.5.tar.gz) = 76c1f8110aef4131d2bc83a7da957c6a -SHA256 (deluge-0.5.5.tar.gz) = 595bb32865fb369dfa1e18a1476a6708840f16af46f5a4a80019423eb2493a90 -SIZE (deluge-0.5.5.tar.gz) = 1606255 +MD5 (deluge-0.5.6.tar.gz) = c534b0fc6514a2d62d6ea9f5da8e2bcb +SHA256 (deluge-0.5.6.tar.gz) = 665e35893515d249021e8e971942aa3fa2a3df177ca826dd151b06efed2928f5 +SIZE (deluge-0.5.6.tar.gz) = 1736279 Property changes on: head/net-p2p/deluge05/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.13 \ No newline at end of property +1.14 \ No newline at end of property Index: head/net-p2p/deluge05/files/patch-libtorrent_src_storage.cpp =================================================================== --- head/net-p2p/deluge05/files/patch-libtorrent_src_storage.cpp (revision 202036) +++ head/net-p2p/deluge05/files/patch-libtorrent_src_storage.cpp (nonexistent) @@ -1,23 +0,0 @@ ---- libtorrent/src/storage.cpp.orig 2007-08-11 01:51:04.000000000 -0500 -+++ libtorrent/src/storage.cpp 2007-08-11 01:52:15.000000000 -0500 -@@ -1027,7 +1027,7 @@ - return false; - #endif - --#if defined(__linux__) || defined(__FreeBSD__) -+#if defined(__linux__) - struct statfs buf; - int err = statfs(query_path.native_directory_string().c_str(), &buf); - if (err == 0) -@@ -1060,7 +1060,11 @@ - #endif - - // TODO: POSIX implementation -+#if defined(__FreeBSD__) -+ return true; -+#else - return false; -+#endif - } - - // -- piece_manager ----------------------------------------------------- Property changes on: head/net-p2p/deluge05/files/patch-libtorrent_src_storage.cpp ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.2 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/net-p2p/deluge05/files/patch-setup.py =================================================================== --- head/net-p2p/deluge05/files/patch-setup.py (revision 202036) +++ head/net-p2p/deluge05/files/patch-setup.py (revision 202037) @@ -1,43 +1,43 @@ ---- setup.py.orig 2007-08-14 11:14:32.000000000 -0500 -+++ setup.py 2007-08-14 11:16:15.000000000 -0500 -@@ -101,13 +101,13 @@ +--- setup.py.orig 2007-10-25 16:49:47.000000000 -0500 ++++ setup.py 2007-10-25 16:51:47.000000000 -0500 +@@ -103,13 +103,13 @@ "-DHAVE_INCLUDE_LIBTORRENT_ASIO_SSL_STREAM_HPP=1", "-DHAVE_INCLUDE_LIBTORRENT_ASIO_IP_TCP_HPP=1", "-DHAVE_PTHREAD=1", "-DTORRENT_USE_OPENSSL=1", "-DHAVE_SSL=1", - "-DNDEBUG=1", "-O2"] + "-DNDEBUG=1"] if ARCH == "x64": EXTRA_COMPILE_ARGS.append("-DAMD64") includedirs = ['./libtorrent', './libtorrent/include', './libtorrent/include/libtorrent', - '/usr/include/python' + python_version] + '%%LOCALBASE%%/include'] if OS == "linux": if os.WEXITSTATUS(os.system('grep -iq "Debian GNU/Linux 4.0\|Ubuntu 7.04\|Ubuntu 6.06\|Ubuntu 6.10\|Fedora Core release 6\|openSUSE 10.2\|Mandriva Linux release 2007.1\|Fedora release 7\|BLAG release 60001\|Yellow Dog Linux release 5.0 (Phoenix)\|CentOS release 5 (Final)" /etc/issue')) == 0: -@@ -150,11 +150,11 @@ - # Ubuntu possible. - if boosttype == "nomt": - librariestype = ['boost_filesystem', 'boost_date_time', +@@ -164,11 +164,11 @@ + if not OS == "win": + if boosttype == "nomt": + librariestype = ['boost_filesystem', 'boost_date_time', - 'boost_thread', 'z', 'pthread', 'ssl'] + 'boost_thread', 'z', 'ssl'] - print 'Libraries nomt' - elif boosttype == "mt": - librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', + print 'Libraries nomt' + elif boosttype == "mt": + librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', - 'boost_thread-mt', 'z', 'pthread', 'ssl'] + 'boost_thread-mt', 'z', 'ssl'] - print 'Libraries mt' - - def fetchCpp(): -@@ -173,8 +173,10 @@ - - deluge_core = Extension('deluge_core', + print 'Libraries mt' + else: + librariestype = ['boost_filesystem-mt', 'boost_date_time-mt', +@@ -189,8 +189,10 @@ + sources.remove('libtorrent/src/file_win.cpp') + deluge_core = Extension('deluge_core', include_dirs = includedirs, + library_dirs = ['%%LOCALBASE%%/lib'], - libraries = librariestype, + libraries = librariestype, extra_compile_args = EXTRA_COMPILE_ARGS, + extra_link_args = ['%%PTHREAD_LIBS%%'], sources = sources) - # Thanks to Iain Nicol for code to save the location for installed prefix - # At runtime, we need to know where we installed the data to. + else: + sources.remove('libtorrent\\src\\file.cpp') Property changes on: head/net-p2p/deluge05/files/patch-setup.py ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.7 \ No newline at end of property +1.8 \ No newline at end of property Index: head/net-p2p/deluge05/files/patch-src___init__.py =================================================================== --- head/net-p2p/deluge05/files/patch-src___init__.py (revision 202036) +++ head/net-p2p/deluge05/files/patch-src___init__.py (revision 202037) @@ -1,15 +1,27 @@ ---- src/__init__.py.orig 2007-08-05 13:08:25.000000000 -0500 -+++ src/__init__.py 2007-08-05 13:08:40.000000000 -0500 -@@ -6,9 +6,9 @@ +--- src/__init__.py.orig 2007-10-25 17:19:53.000000000 -0500 ++++ src/__init__.py 2007-10-25 17:21:29.000000000 -0500 +@@ -37,15 +37,15 @@ APP = 'deluge' - DIR = os.path.join(INSTALL_PREFIX, 'share', 'locale') --locale.setlocale(locale.LC_ALL, '') --locale.bindtextdomain(APP, DIR) --locale.textdomain(APP) -+#locale.setlocale(locale.LC_ALL, '') -+#locale.bindtextdomain(APP, DIR) -+#locale.textdomain(APP) + DIR = os.path.join(common.INSTALL_PREFIX, 'share', 'locale') +-if not common.windows_check(): +- locale.setlocale(locale.LC_MESSAGES, '') +- locale.bindtextdomain(APP, DIR) +- locale.textdomain(APP) +-else: +- import gtk.glade +- locale.setlocale(locale.LC_ALL, '') +- gtk.glade.bindtextdomain(APP, DIR) +- gtk.glade.textdomain(APP) ++#if not common.windows_check(): ++# locale.setlocale(locale.LC_MESSAGES, '') ++# locale.bindtextdomain(APP, DIR) ++# locale.textdomain(APP) ++#else: ++# import gtk.glade ++# locale.setlocale(locale.LC_ALL, '') ++# gtk.glade.bindtextdomain(APP, DIR) ++# gtk.glade.textdomain(APP) gettext.bindtextdomain(APP, DIR) gettext.textdomain(APP) gettext.install(APP, DIR) Property changes on: head/net-p2p/deluge05/files/patch-src___init__.py ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/net-p2p/deluge05/pkg-plist =================================================================== --- head/net-p2p/deluge05/pkg-plist (revision 202036) +++ head/net-p2p/deluge05/pkg-plist (revision 202037) @@ -1,703 +1,770 @@ bin/deluge %%PYTHON_SITELIBDIR%%/deluge/__init__.py %%PYTHON_SITELIBDIR%%/deluge/__init__.pyc %%PYTHON_SITELIBDIR%%/deluge/__init__.pyo %%PYTHON_SITELIBDIR%%/deluge/_dbus.py %%PYTHON_SITELIBDIR%%/deluge/_dbus.pyc %%PYTHON_SITELIBDIR%%/deluge/_dbus.pyo -%%PYTHON_SITELIBDIR%%/deluge/browser.py -%%PYTHON_SITELIBDIR%%/deluge/browser.pyc -%%PYTHON_SITELIBDIR%%/deluge/browser.pyo %%PYTHON_SITELIBDIR%%/deluge/common.py %%PYTHON_SITELIBDIR%%/deluge/common.pyc %%PYTHON_SITELIBDIR%%/deluge/common.pyo %%PYTHON_SITELIBDIR%%/deluge/core.py %%PYTHON_SITELIBDIR%%/deluge/core.pyc %%PYTHON_SITELIBDIR%%/deluge/core.pyo %%PYTHON_SITELIBDIR%%/deluge/deluge_core.so %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.py %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.pyc %%PYTHON_SITELIBDIR%%/deluge/deluge_stats.pyo %%PYTHON_SITELIBDIR%%/deluge/dgtk.py %%PYTHON_SITELIBDIR%%/deluge/dgtk.pyc %%PYTHON_SITELIBDIR%%/deluge/dgtk.pyo %%PYTHON_SITELIBDIR%%/deluge/dialogs.py %%PYTHON_SITELIBDIR%%/deluge/dialogs.pyc %%PYTHON_SITELIBDIR%%/deluge/dialogs.pyo %%PYTHON_SITELIBDIR%%/deluge/files.py %%PYTHON_SITELIBDIR%%/deluge/files.pyc %%PYTHON_SITELIBDIR%%/deluge/files.pyo -%%PYTHON_SITELIBDIR%%/deluge/info.py -%%PYTHON_SITELIBDIR%%/deluge/info.pyc -%%PYTHON_SITELIBDIR%%/deluge/info.pyo %%PYTHON_SITELIBDIR%%/deluge/interface.py %%PYTHON_SITELIBDIR%%/deluge/interface.pyc %%PYTHON_SITELIBDIR%%/deluge/interface.pyo %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.py %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.pyc %%PYTHON_SITELIBDIR%%/deluge/ipc_manager.pyo %%PYTHON_SITELIBDIR%%/deluge/plugins.py %%PYTHON_SITELIBDIR%%/deluge/plugins.pyc %%PYTHON_SITELIBDIR%%/deluge/plugins.pyo %%PYTHON_SITELIBDIR%%/deluge/pref.py %%PYTHON_SITELIBDIR%%/deluge/pref.pyc %%PYTHON_SITELIBDIR%%/deluge/pref.pyo %%PYTHON_SITELIBDIR%%/deluge/tab_details.py %%PYTHON_SITELIBDIR%%/deluge/tab_details.pyc %%PYTHON_SITELIBDIR%%/deluge/tab_details.pyo -%%PYTHON_SITELIBDIR%%/deluge/update.py -%%PYTHON_SITELIBDIR%%/deluge/update.pyc -%%PYTHON_SITELIBDIR%%/deluge/update.pyo %%PYTHON_SITELIBDIR%%/deluge/wizard.py %%PYTHON_SITELIBDIR%%/deluge/wizard.pyc %%PYTHON_SITELIBDIR%%/deluge/wizard.pyo share/applications/deluge.desktop %%DATADIR%%/glade/aboutdialog.glade %%DATADIR%%/glade/delugegtk.glade %%DATADIR%%/glade/dgtkpopups.glade %%DATADIR%%/glade/edit_trackers.glade %%DATADIR%%/glade/file_tab_menu.glade %%DATADIR%%/glade/files_dialog.glade %%DATADIR%%/glade/merge_dialog.glade %%DATADIR%%/glade/preferences_dialog.glade %%DATADIR%%/glade/torrent_menu.glade %%DATADIR%%/glade/tray_menu.glade %%DATADIR%%/glade/wizard.glade %%DATADIR%%/pixmaps/deluge-about.png -%%DATADIR%%/pixmaps/deluge128.png -%%DATADIR%%/pixmaps/deluge192.png -%%DATADIR%%/pixmaps/deluge22.png -%%DATADIR%%/pixmaps/deluge256.png -%%DATADIR%%/pixmaps/deluge32.png -%%DATADIR%%/pixmaps/deluge48.png +%%DATADIR%%/pixmaps/deluge.png +%%DATADIR%%/pixmaps/deluge.svg %%DATADIR%%/pixmaps/downloading16.png %%DATADIR%%/pixmaps/flags18x12/ad.png %%DATADIR%%/pixmaps/flags18x12/ae.png %%DATADIR%%/pixmaps/flags18x12/af.png %%DATADIR%%/pixmaps/flags18x12/ag.png %%DATADIR%%/pixmaps/flags18x12/ai.png %%DATADIR%%/pixmaps/flags18x12/al.png %%DATADIR%%/pixmaps/flags18x12/am.png %%DATADIR%%/pixmaps/flags18x12/an.png %%DATADIR%%/pixmaps/flags18x12/ao.png %%DATADIR%%/pixmaps/flags18x12/aq.png %%DATADIR%%/pixmaps/flags18x12/ar.png %%DATADIR%%/pixmaps/flags18x12/as.png %%DATADIR%%/pixmaps/flags18x12/at.png %%DATADIR%%/pixmaps/flags18x12/au.png %%DATADIR%%/pixmaps/flags18x12/aw.png %%DATADIR%%/pixmaps/flags18x12/ax.png %%DATADIR%%/pixmaps/flags18x12/az.png %%DATADIR%%/pixmaps/flags18x12/ba.png %%DATADIR%%/pixmaps/flags18x12/bb.png %%DATADIR%%/pixmaps/flags18x12/bd.png %%DATADIR%%/pixmaps/flags18x12/be.png %%DATADIR%%/pixmaps/flags18x12/bf.png %%DATADIR%%/pixmaps/flags18x12/bg.png %%DATADIR%%/pixmaps/flags18x12/bh.png %%DATADIR%%/pixmaps/flags18x12/bi.png %%DATADIR%%/pixmaps/flags18x12/bj.png %%DATADIR%%/pixmaps/flags18x12/bm.png %%DATADIR%%/pixmaps/flags18x12/bn.png %%DATADIR%%/pixmaps/flags18x12/bo.png %%DATADIR%%/pixmaps/flags18x12/br.png %%DATADIR%%/pixmaps/flags18x12/bs.png %%DATADIR%%/pixmaps/flags18x12/bt.png %%DATADIR%%/pixmaps/flags18x12/bv.png %%DATADIR%%/pixmaps/flags18x12/bw.png %%DATADIR%%/pixmaps/flags18x12/by.png %%DATADIR%%/pixmaps/flags18x12/bz.png %%DATADIR%%/pixmaps/flags18x12/ca.png %%DATADIR%%/pixmaps/flags18x12/cc.png %%DATADIR%%/pixmaps/flags18x12/cd.png %%DATADIR%%/pixmaps/flags18x12/cf.png %%DATADIR%%/pixmaps/flags18x12/cg.png %%DATADIR%%/pixmaps/flags18x12/ch.png %%DATADIR%%/pixmaps/flags18x12/ci.png %%DATADIR%%/pixmaps/flags18x12/ck.png %%DATADIR%%/pixmaps/flags18x12/cl.png %%DATADIR%%/pixmaps/flags18x12/cm.png %%DATADIR%%/pixmaps/flags18x12/cn.png %%DATADIR%%/pixmaps/flags18x12/co.png %%DATADIR%%/pixmaps/flags18x12/cr.png %%DATADIR%%/pixmaps/flags18x12/cs.png %%DATADIR%%/pixmaps/flags18x12/cu.png %%DATADIR%%/pixmaps/flags18x12/cv.png %%DATADIR%%/pixmaps/flags18x12/cx.png %%DATADIR%%/pixmaps/flags18x12/cy.png %%DATADIR%%/pixmaps/flags18x12/cz.png %%DATADIR%%/pixmaps/flags18x12/de.png %%DATADIR%%/pixmaps/flags18x12/dj.png %%DATADIR%%/pixmaps/flags18x12/dk.png %%DATADIR%%/pixmaps/flags18x12/dm.png %%DATADIR%%/pixmaps/flags18x12/do.png %%DATADIR%%/pixmaps/flags18x12/dz.png %%DATADIR%%/pixmaps/flags18x12/ec.png %%DATADIR%%/pixmaps/flags18x12/ee.png %%DATADIR%%/pixmaps/flags18x12/eg.png %%DATADIR%%/pixmaps/flags18x12/eh.png %%DATADIR%%/pixmaps/flags18x12/er.png %%DATADIR%%/pixmaps/flags18x12/es.png %%DATADIR%%/pixmaps/flags18x12/et.png %%DATADIR%%/pixmaps/flags18x12/fi.png %%DATADIR%%/pixmaps/flags18x12/fj.png %%DATADIR%%/pixmaps/flags18x12/fk.png %%DATADIR%%/pixmaps/flags18x12/fm.png %%DATADIR%%/pixmaps/flags18x12/fo.png %%DATADIR%%/pixmaps/flags18x12/fr.png %%DATADIR%%/pixmaps/flags18x12/fx.png %%DATADIR%%/pixmaps/flags18x12/ga.png %%DATADIR%%/pixmaps/flags18x12/gb.png %%DATADIR%%/pixmaps/flags18x12/gd.png %%DATADIR%%/pixmaps/flags18x12/ge.png %%DATADIR%%/pixmaps/flags18x12/gf.png %%DATADIR%%/pixmaps/flags18x12/gg.png %%DATADIR%%/pixmaps/flags18x12/gh.png %%DATADIR%%/pixmaps/flags18x12/gi.png %%DATADIR%%/pixmaps/flags18x12/gl.png %%DATADIR%%/pixmaps/flags18x12/gm.png %%DATADIR%%/pixmaps/flags18x12/gn.png %%DATADIR%%/pixmaps/flags18x12/gp.png %%DATADIR%%/pixmaps/flags18x12/gq.png %%DATADIR%%/pixmaps/flags18x12/gr.png %%DATADIR%%/pixmaps/flags18x12/gs.png %%DATADIR%%/pixmaps/flags18x12/gt.png %%DATADIR%%/pixmaps/flags18x12/gu.png %%DATADIR%%/pixmaps/flags18x12/gw.png %%DATADIR%%/pixmaps/flags18x12/gy.png %%DATADIR%%/pixmaps/flags18x12/hk.png %%DATADIR%%/pixmaps/flags18x12/hm.png %%DATADIR%%/pixmaps/flags18x12/hn.png %%DATADIR%%/pixmaps/flags18x12/hr.png %%DATADIR%%/pixmaps/flags18x12/ht.png %%DATADIR%%/pixmaps/flags18x12/hu.png %%DATADIR%%/pixmaps/flags18x12/id.png %%DATADIR%%/pixmaps/flags18x12/ie.png %%DATADIR%%/pixmaps/flags18x12/il.png %%DATADIR%%/pixmaps/flags18x12/in.png %%DATADIR%%/pixmaps/flags18x12/io.png %%DATADIR%%/pixmaps/flags18x12/iq.png %%DATADIR%%/pixmaps/flags18x12/ir.png %%DATADIR%%/pixmaps/flags18x12/is.png %%DATADIR%%/pixmaps/flags18x12/it.png %%DATADIR%%/pixmaps/flags18x12/je.png %%DATADIR%%/pixmaps/flags18x12/jm.png %%DATADIR%%/pixmaps/flags18x12/jo.png %%DATADIR%%/pixmaps/flags18x12/jp.png %%DATADIR%%/pixmaps/flags18x12/ke.png %%DATADIR%%/pixmaps/flags18x12/kg.png %%DATADIR%%/pixmaps/flags18x12/kh.png %%DATADIR%%/pixmaps/flags18x12/ki.png %%DATADIR%%/pixmaps/flags18x12/km.png %%DATADIR%%/pixmaps/flags18x12/kn.png %%DATADIR%%/pixmaps/flags18x12/kp.png %%DATADIR%%/pixmaps/flags18x12/kr.png %%DATADIR%%/pixmaps/flags18x12/kw.png %%DATADIR%%/pixmaps/flags18x12/ky.png %%DATADIR%%/pixmaps/flags18x12/kz.png %%DATADIR%%/pixmaps/flags18x12/la.png %%DATADIR%%/pixmaps/flags18x12/lb.png %%DATADIR%%/pixmaps/flags18x12/lc.png %%DATADIR%%/pixmaps/flags18x12/li.png %%DATADIR%%/pixmaps/flags18x12/lk.png %%DATADIR%%/pixmaps/flags18x12/lr.png %%DATADIR%%/pixmaps/flags18x12/ls.png %%DATADIR%%/pixmaps/flags18x12/lt.png %%DATADIR%%/pixmaps/flags18x12/lu.png %%DATADIR%%/pixmaps/flags18x12/lv.png %%DATADIR%%/pixmaps/flags18x12/ly.png %%DATADIR%%/pixmaps/flags18x12/ma.png %%DATADIR%%/pixmaps/flags18x12/mc.png %%DATADIR%%/pixmaps/flags18x12/md.png %%DATADIR%%/pixmaps/flags18x12/me.png %%DATADIR%%/pixmaps/flags18x12/mg.png %%DATADIR%%/pixmaps/flags18x12/mh.png %%DATADIR%%/pixmaps/flags18x12/mk.png %%DATADIR%%/pixmaps/flags18x12/ml.png %%DATADIR%%/pixmaps/flags18x12/mm.png %%DATADIR%%/pixmaps/flags18x12/mn.png %%DATADIR%%/pixmaps/flags18x12/mo.png %%DATADIR%%/pixmaps/flags18x12/mp.png %%DATADIR%%/pixmaps/flags18x12/mq.png %%DATADIR%%/pixmaps/flags18x12/mr.png %%DATADIR%%/pixmaps/flags18x12/ms.png %%DATADIR%%/pixmaps/flags18x12/mt.png %%DATADIR%%/pixmaps/flags18x12/mu.png %%DATADIR%%/pixmaps/flags18x12/mv.png %%DATADIR%%/pixmaps/flags18x12/mw.png %%DATADIR%%/pixmaps/flags18x12/mx.png %%DATADIR%%/pixmaps/flags18x12/my.png %%DATADIR%%/pixmaps/flags18x12/mz.png %%DATADIR%%/pixmaps/flags18x12/na.png %%DATADIR%%/pixmaps/flags18x12/nc.png %%DATADIR%%/pixmaps/flags18x12/ne.png %%DATADIR%%/pixmaps/flags18x12/nf.png %%DATADIR%%/pixmaps/flags18x12/ng.png %%DATADIR%%/pixmaps/flags18x12/ni.png %%DATADIR%%/pixmaps/flags18x12/nl.png %%DATADIR%%/pixmaps/flags18x12/no.png %%DATADIR%%/pixmaps/flags18x12/np.png %%DATADIR%%/pixmaps/flags18x12/nr.png %%DATADIR%%/pixmaps/flags18x12/nu.png %%DATADIR%%/pixmaps/flags18x12/nz.png %%DATADIR%%/pixmaps/flags18x12/om.png %%DATADIR%%/pixmaps/flags18x12/pa.png %%DATADIR%%/pixmaps/flags18x12/pe.png %%DATADIR%%/pixmaps/flags18x12/pf.png %%DATADIR%%/pixmaps/flags18x12/pg.png %%DATADIR%%/pixmaps/flags18x12/ph.png %%DATADIR%%/pixmaps/flags18x12/pk.png %%DATADIR%%/pixmaps/flags18x12/pl.png %%DATADIR%%/pixmaps/flags18x12/pm.png %%DATADIR%%/pixmaps/flags18x12/pn.png %%DATADIR%%/pixmaps/flags18x12/pr.png %%DATADIR%%/pixmaps/flags18x12/ps.png %%DATADIR%%/pixmaps/flags18x12/pt.png %%DATADIR%%/pixmaps/flags18x12/pw.png %%DATADIR%%/pixmaps/flags18x12/py.png %%DATADIR%%/pixmaps/flags18x12/qa.png %%DATADIR%%/pixmaps/flags18x12/re.png %%DATADIR%%/pixmaps/flags18x12/ro.png %%DATADIR%%/pixmaps/flags18x12/rs.png %%DATADIR%%/pixmaps/flags18x12/ru.png %%DATADIR%%/pixmaps/flags18x12/rw.png %%DATADIR%%/pixmaps/flags18x12/sa.png %%DATADIR%%/pixmaps/flags18x12/sb.png %%DATADIR%%/pixmaps/flags18x12/sc.png %%DATADIR%%/pixmaps/flags18x12/sd.png %%DATADIR%%/pixmaps/flags18x12/se.png %%DATADIR%%/pixmaps/flags18x12/sg.png %%DATADIR%%/pixmaps/flags18x12/sh.png %%DATADIR%%/pixmaps/flags18x12/si.png %%DATADIR%%/pixmaps/flags18x12/sj.png %%DATADIR%%/pixmaps/flags18x12/sk.png %%DATADIR%%/pixmaps/flags18x12/sl.png %%DATADIR%%/pixmaps/flags18x12/sm.png %%DATADIR%%/pixmaps/flags18x12/sn.png %%DATADIR%%/pixmaps/flags18x12/so.png %%DATADIR%%/pixmaps/flags18x12/sr.png %%DATADIR%%/pixmaps/flags18x12/st.png %%DATADIR%%/pixmaps/flags18x12/sv.png %%DATADIR%%/pixmaps/flags18x12/sy.png %%DATADIR%%/pixmaps/flags18x12/sz.png %%DATADIR%%/pixmaps/flags18x12/tc.png %%DATADIR%%/pixmaps/flags18x12/td.png %%DATADIR%%/pixmaps/flags18x12/tf.png %%DATADIR%%/pixmaps/flags18x12/tg.png %%DATADIR%%/pixmaps/flags18x12/th.png %%DATADIR%%/pixmaps/flags18x12/tj.png %%DATADIR%%/pixmaps/flags18x12/tk.png %%DATADIR%%/pixmaps/flags18x12/tl.png %%DATADIR%%/pixmaps/flags18x12/tm.png %%DATADIR%%/pixmaps/flags18x12/tn.png %%DATADIR%%/pixmaps/flags18x12/to.png %%DATADIR%%/pixmaps/flags18x12/tp.png %%DATADIR%%/pixmaps/flags18x12/tr.png %%DATADIR%%/pixmaps/flags18x12/tt.png %%DATADIR%%/pixmaps/flags18x12/tv.png %%DATADIR%%/pixmaps/flags18x12/tw.png %%DATADIR%%/pixmaps/flags18x12/tz.png %%DATADIR%%/pixmaps/flags18x12/ua.png %%DATADIR%%/pixmaps/flags18x12/ug.png %%DATADIR%%/pixmaps/flags18x12/um.png %%DATADIR%%/pixmaps/flags18x12/us.png %%DATADIR%%/pixmaps/flags18x12/uy.png %%DATADIR%%/pixmaps/flags18x12/uz.png %%DATADIR%%/pixmaps/flags18x12/va.png %%DATADIR%%/pixmaps/flags18x12/vc.png %%DATADIR%%/pixmaps/flags18x12/ve.png %%DATADIR%%/pixmaps/flags18x12/vg.png %%DATADIR%%/pixmaps/flags18x12/vi.png %%DATADIR%%/pixmaps/flags18x12/vn.png %%DATADIR%%/pixmaps/flags18x12/vu.png %%DATADIR%%/pixmaps/flags18x12/wf.png %%DATADIR%%/pixmaps/flags18x12/ws.png %%DATADIR%%/pixmaps/flags18x12/ye.png %%DATADIR%%/pixmaps/flags18x12/yt.png %%DATADIR%%/pixmaps/flags18x12/yu.png %%DATADIR%%/pixmaps/flags18x12/za.png %%DATADIR%%/pixmaps/flags18x12/zm.png %%DATADIR%%/pixmaps/flags18x12/zw.png %%DATADIR%%/pixmaps/flags25x15/ad.png %%DATADIR%%/pixmaps/flags25x15/ae.png %%DATADIR%%/pixmaps/flags25x15/af.png %%DATADIR%%/pixmaps/flags25x15/ag.png %%DATADIR%%/pixmaps/flags25x15/ai.png %%DATADIR%%/pixmaps/flags25x15/al.png %%DATADIR%%/pixmaps/flags25x15/am.png %%DATADIR%%/pixmaps/flags25x15/an.png %%DATADIR%%/pixmaps/flags25x15/ao.png %%DATADIR%%/pixmaps/flags25x15/aq.png %%DATADIR%%/pixmaps/flags25x15/ar.png %%DATADIR%%/pixmaps/flags25x15/as.png %%DATADIR%%/pixmaps/flags25x15/at.png %%DATADIR%%/pixmaps/flags25x15/au.png %%DATADIR%%/pixmaps/flags25x15/aw.png %%DATADIR%%/pixmaps/flags25x15/ax.png %%DATADIR%%/pixmaps/flags25x15/az.png %%DATADIR%%/pixmaps/flags25x15/ba.png %%DATADIR%%/pixmaps/flags25x15/bb.png %%DATADIR%%/pixmaps/flags25x15/bd.png %%DATADIR%%/pixmaps/flags25x15/be.png %%DATADIR%%/pixmaps/flags25x15/bf.png %%DATADIR%%/pixmaps/flags25x15/bg.png %%DATADIR%%/pixmaps/flags25x15/bh.png %%DATADIR%%/pixmaps/flags25x15/bi.png %%DATADIR%%/pixmaps/flags25x15/bj.png %%DATADIR%%/pixmaps/flags25x15/bm.png %%DATADIR%%/pixmaps/flags25x15/bn.png %%DATADIR%%/pixmaps/flags25x15/bo.png %%DATADIR%%/pixmaps/flags25x15/br.png %%DATADIR%%/pixmaps/flags25x15/bs.png %%DATADIR%%/pixmaps/flags25x15/bt.png %%DATADIR%%/pixmaps/flags25x15/bv.png %%DATADIR%%/pixmaps/flags25x15/bw.png %%DATADIR%%/pixmaps/flags25x15/by.png %%DATADIR%%/pixmaps/flags25x15/bz.png %%DATADIR%%/pixmaps/flags25x15/ca.png %%DATADIR%%/pixmaps/flags25x15/cc.png %%DATADIR%%/pixmaps/flags25x15/cd.png %%DATADIR%%/pixmaps/flags25x15/cf.png %%DATADIR%%/pixmaps/flags25x15/cg.png %%DATADIR%%/pixmaps/flags25x15/ch.png %%DATADIR%%/pixmaps/flags25x15/ci.png %%DATADIR%%/pixmaps/flags25x15/ck.png %%DATADIR%%/pixmaps/flags25x15/cl.png %%DATADIR%%/pixmaps/flags25x15/cm.png %%DATADIR%%/pixmaps/flags25x15/cn.png %%DATADIR%%/pixmaps/flags25x15/co.png %%DATADIR%%/pixmaps/flags25x15/cr.png %%DATADIR%%/pixmaps/flags25x15/cs.png %%DATADIR%%/pixmaps/flags25x15/cu.png %%DATADIR%%/pixmaps/flags25x15/cv.png %%DATADIR%%/pixmaps/flags25x15/cx.png %%DATADIR%%/pixmaps/flags25x15/cy.png %%DATADIR%%/pixmaps/flags25x15/cz.png %%DATADIR%%/pixmaps/flags25x15/de.png %%DATADIR%%/pixmaps/flags25x15/dj.png %%DATADIR%%/pixmaps/flags25x15/dk.png %%DATADIR%%/pixmaps/flags25x15/dm.png %%DATADIR%%/pixmaps/flags25x15/do.png %%DATADIR%%/pixmaps/flags25x15/dz.png %%DATADIR%%/pixmaps/flags25x15/ec.png %%DATADIR%%/pixmaps/flags25x15/ee.png %%DATADIR%%/pixmaps/flags25x15/eg.png %%DATADIR%%/pixmaps/flags25x15/eh.png %%DATADIR%%/pixmaps/flags25x15/er.png %%DATADIR%%/pixmaps/flags25x15/es.png %%DATADIR%%/pixmaps/flags25x15/et.png %%DATADIR%%/pixmaps/flags25x15/fi.png %%DATADIR%%/pixmaps/flags25x15/fj.png %%DATADIR%%/pixmaps/flags25x15/fk.png %%DATADIR%%/pixmaps/flags25x15/fm.png %%DATADIR%%/pixmaps/flags25x15/fo.png %%DATADIR%%/pixmaps/flags25x15/fr.png %%DATADIR%%/pixmaps/flags25x15/fx.png %%DATADIR%%/pixmaps/flags25x15/ga.png %%DATADIR%%/pixmaps/flags25x15/gb.png %%DATADIR%%/pixmaps/flags25x15/gd.png %%DATADIR%%/pixmaps/flags25x15/ge.png %%DATADIR%%/pixmaps/flags25x15/gf.png %%DATADIR%%/pixmaps/flags25x15/gg.png %%DATADIR%%/pixmaps/flags25x15/gh.png %%DATADIR%%/pixmaps/flags25x15/gi.png %%DATADIR%%/pixmaps/flags25x15/gl.png %%DATADIR%%/pixmaps/flags25x15/gm.png %%DATADIR%%/pixmaps/flags25x15/gn.png %%DATADIR%%/pixmaps/flags25x15/gp.png %%DATADIR%%/pixmaps/flags25x15/gq.png %%DATADIR%%/pixmaps/flags25x15/gr.png %%DATADIR%%/pixmaps/flags25x15/gs.png %%DATADIR%%/pixmaps/flags25x15/gt.png %%DATADIR%%/pixmaps/flags25x15/gu.png %%DATADIR%%/pixmaps/flags25x15/gw.png %%DATADIR%%/pixmaps/flags25x15/gy.png %%DATADIR%%/pixmaps/flags25x15/hk.png %%DATADIR%%/pixmaps/flags25x15/hm.png %%DATADIR%%/pixmaps/flags25x15/hn.png %%DATADIR%%/pixmaps/flags25x15/hr.png %%DATADIR%%/pixmaps/flags25x15/ht.png %%DATADIR%%/pixmaps/flags25x15/hu.png %%DATADIR%%/pixmaps/flags25x15/id.png %%DATADIR%%/pixmaps/flags25x15/ie.png %%DATADIR%%/pixmaps/flags25x15/il.png %%DATADIR%%/pixmaps/flags25x15/in.png %%DATADIR%%/pixmaps/flags25x15/io.png %%DATADIR%%/pixmaps/flags25x15/iq.png %%DATADIR%%/pixmaps/flags25x15/ir.png %%DATADIR%%/pixmaps/flags25x15/is.png %%DATADIR%%/pixmaps/flags25x15/it.png %%DATADIR%%/pixmaps/flags25x15/je.png %%DATADIR%%/pixmaps/flags25x15/jm.png %%DATADIR%%/pixmaps/flags25x15/jo.png %%DATADIR%%/pixmaps/flags25x15/jp.png %%DATADIR%%/pixmaps/flags25x15/ke.png %%DATADIR%%/pixmaps/flags25x15/kg.png %%DATADIR%%/pixmaps/flags25x15/kh.png %%DATADIR%%/pixmaps/flags25x15/ki.png %%DATADIR%%/pixmaps/flags25x15/km.png %%DATADIR%%/pixmaps/flags25x15/kn.png %%DATADIR%%/pixmaps/flags25x15/kp.png %%DATADIR%%/pixmaps/flags25x15/kr.png %%DATADIR%%/pixmaps/flags25x15/kw.png %%DATADIR%%/pixmaps/flags25x15/ky.png %%DATADIR%%/pixmaps/flags25x15/kz.png %%DATADIR%%/pixmaps/flags25x15/la.png %%DATADIR%%/pixmaps/flags25x15/lb.png %%DATADIR%%/pixmaps/flags25x15/lc.png %%DATADIR%%/pixmaps/flags25x15/li.png %%DATADIR%%/pixmaps/flags25x15/lk.png %%DATADIR%%/pixmaps/flags25x15/lr.png %%DATADIR%%/pixmaps/flags25x15/ls.png %%DATADIR%%/pixmaps/flags25x15/lt.png %%DATADIR%%/pixmaps/flags25x15/lu.png %%DATADIR%%/pixmaps/flags25x15/lv.png %%DATADIR%%/pixmaps/flags25x15/ly.png %%DATADIR%%/pixmaps/flags25x15/ma.png %%DATADIR%%/pixmaps/flags25x15/mc.png %%DATADIR%%/pixmaps/flags25x15/md.png %%DATADIR%%/pixmaps/flags25x15/me.png %%DATADIR%%/pixmaps/flags25x15/mg.png %%DATADIR%%/pixmaps/flags25x15/mh.png %%DATADIR%%/pixmaps/flags25x15/mk.png %%DATADIR%%/pixmaps/flags25x15/ml.png %%DATADIR%%/pixmaps/flags25x15/mm.png %%DATADIR%%/pixmaps/flags25x15/mn.png %%DATADIR%%/pixmaps/flags25x15/mo.png %%DATADIR%%/pixmaps/flags25x15/mp.png %%DATADIR%%/pixmaps/flags25x15/mq.png %%DATADIR%%/pixmaps/flags25x15/mr.png %%DATADIR%%/pixmaps/flags25x15/ms.png %%DATADIR%%/pixmaps/flags25x15/mt.png %%DATADIR%%/pixmaps/flags25x15/mu.png %%DATADIR%%/pixmaps/flags25x15/mv.png %%DATADIR%%/pixmaps/flags25x15/mw.png %%DATADIR%%/pixmaps/flags25x15/mx.png %%DATADIR%%/pixmaps/flags25x15/my.png %%DATADIR%%/pixmaps/flags25x15/mz.png %%DATADIR%%/pixmaps/flags25x15/na.png %%DATADIR%%/pixmaps/flags25x15/nc.png %%DATADIR%%/pixmaps/flags25x15/ne.png %%DATADIR%%/pixmaps/flags25x15/nf.png %%DATADIR%%/pixmaps/flags25x15/ng.png %%DATADIR%%/pixmaps/flags25x15/ni.png %%DATADIR%%/pixmaps/flags25x15/nl.png %%DATADIR%%/pixmaps/flags25x15/no.png %%DATADIR%%/pixmaps/flags25x15/np.png %%DATADIR%%/pixmaps/flags25x15/nr.png %%DATADIR%%/pixmaps/flags25x15/nu.png %%DATADIR%%/pixmaps/flags25x15/nz.png %%DATADIR%%/pixmaps/flags25x15/om.png %%DATADIR%%/pixmaps/flags25x15/pa.png %%DATADIR%%/pixmaps/flags25x15/pe.png %%DATADIR%%/pixmaps/flags25x15/pf.png %%DATADIR%%/pixmaps/flags25x15/pg.png %%DATADIR%%/pixmaps/flags25x15/ph.png %%DATADIR%%/pixmaps/flags25x15/pk.png %%DATADIR%%/pixmaps/flags25x15/pl.png %%DATADIR%%/pixmaps/flags25x15/pm.png %%DATADIR%%/pixmaps/flags25x15/pn.png %%DATADIR%%/pixmaps/flags25x15/pr.png %%DATADIR%%/pixmaps/flags25x15/ps.png %%DATADIR%%/pixmaps/flags25x15/pt.png %%DATADIR%%/pixmaps/flags25x15/pw.png %%DATADIR%%/pixmaps/flags25x15/py.png %%DATADIR%%/pixmaps/flags25x15/qa.png %%DATADIR%%/pixmaps/flags25x15/re.png %%DATADIR%%/pixmaps/flags25x15/ro.png %%DATADIR%%/pixmaps/flags25x15/rs.png %%DATADIR%%/pixmaps/flags25x15/ru.png %%DATADIR%%/pixmaps/flags25x15/rw.png %%DATADIR%%/pixmaps/flags25x15/sa.png %%DATADIR%%/pixmaps/flags25x15/sb.png %%DATADIR%%/pixmaps/flags25x15/sc.png %%DATADIR%%/pixmaps/flags25x15/sd.png %%DATADIR%%/pixmaps/flags25x15/se.png %%DATADIR%%/pixmaps/flags25x15/sg.png %%DATADIR%%/pixmaps/flags25x15/sh.png %%DATADIR%%/pixmaps/flags25x15/si.png %%DATADIR%%/pixmaps/flags25x15/sj.png %%DATADIR%%/pixmaps/flags25x15/sk.png %%DATADIR%%/pixmaps/flags25x15/sl.png %%DATADIR%%/pixmaps/flags25x15/sm.png %%DATADIR%%/pixmaps/flags25x15/sn.png %%DATADIR%%/pixmaps/flags25x15/so.png %%DATADIR%%/pixmaps/flags25x15/sr.png %%DATADIR%%/pixmaps/flags25x15/st.png %%DATADIR%%/pixmaps/flags25x15/sv.png %%DATADIR%%/pixmaps/flags25x15/sy.png %%DATADIR%%/pixmaps/flags25x15/sz.png %%DATADIR%%/pixmaps/flags25x15/tc.png %%DATADIR%%/pixmaps/flags25x15/td.png %%DATADIR%%/pixmaps/flags25x15/tf.png %%DATADIR%%/pixmaps/flags25x15/tg.png %%DATADIR%%/pixmaps/flags25x15/th.png %%DATADIR%%/pixmaps/flags25x15/tj.png %%DATADIR%%/pixmaps/flags25x15/tk.png %%DATADIR%%/pixmaps/flags25x15/tl.png %%DATADIR%%/pixmaps/flags25x15/tm.png %%DATADIR%%/pixmaps/flags25x15/tn.png %%DATADIR%%/pixmaps/flags25x15/to.png %%DATADIR%%/pixmaps/flags25x15/tp.png %%DATADIR%%/pixmaps/flags25x15/tr.png %%DATADIR%%/pixmaps/flags25x15/tt.png %%DATADIR%%/pixmaps/flags25x15/tv.png %%DATADIR%%/pixmaps/flags25x15/tw.png %%DATADIR%%/pixmaps/flags25x15/tz.png %%DATADIR%%/pixmaps/flags25x15/ua.png %%DATADIR%%/pixmaps/flags25x15/ug.png %%DATADIR%%/pixmaps/flags25x15/um.png %%DATADIR%%/pixmaps/flags25x15/us.png %%DATADIR%%/pixmaps/flags25x15/uy.png %%DATADIR%%/pixmaps/flags25x15/uz.png %%DATADIR%%/pixmaps/flags25x15/va.png %%DATADIR%%/pixmaps/flags25x15/vc.png %%DATADIR%%/pixmaps/flags25x15/ve.png %%DATADIR%%/pixmaps/flags25x15/vg.png %%DATADIR%%/pixmaps/flags25x15/vi.png %%DATADIR%%/pixmaps/flags25x15/vn.png %%DATADIR%%/pixmaps/flags25x15/vu.png %%DATADIR%%/pixmaps/flags25x15/wf.png %%DATADIR%%/pixmaps/flags25x15/ws.png %%DATADIR%%/pixmaps/flags25x15/ye.png %%DATADIR%%/pixmaps/flags25x15/yt.png %%DATADIR%%/pixmaps/flags25x15/yu.png %%DATADIR%%/pixmaps/flags25x15/za.png %%DATADIR%%/pixmaps/flags25x15/zm.png %%DATADIR%%/pixmaps/flags25x15/zw.png %%DATADIR%%/pixmaps/inactive16.png %%DATADIR%%/pixmaps/seeding16.png %%DATADIR%%/plugins/BlocklistImport/__init__.py %%DATADIR%%/plugins/BlocklistImport/listfile1.txt %%DATADIR%%/plugins/BlocklistImport/listfile2.txt %%DATADIR%%/plugins/BlocklistImport/nipfilter.dat.gz %%DATADIR%%/plugins/BlocklistImport/peerguardian.py %%DATADIR%%/plugins/BlocklistImport/pg.txt %%DATADIR%%/plugins/BlocklistImport/splist.txt %%DATADIR%%/plugins/BlocklistImport/test.py %%DATADIR%%/plugins/BlocklistImport/text.py %%DATADIR%%/plugins/BlocklistImport/ui.py %%DATADIR%%/plugins/DesiredRatio/__init__.py %%DATADIR%%/plugins/EventLogging/__init__.py %%DATADIR%%/plugins/EventLogging/event_logging_preferences.glade %%DATADIR%%/plugins/EventLogging/tab_log.py %%DATADIR%%/plugins/ExtraStats/__init__.py %%DATADIR%%/plugins/ExtraStats/stats_preferences.glade %%DATADIR%%/plugins/Locations/__init__.py %%DATADIR%%/plugins/Locations/plugin.py %%DATADIR%%/plugins/MoveTorrent/__init__.py %%DATADIR%%/plugins/MoveTorrent/movetorrent.glade %%DATADIR%%/plugins/NetworkGraph/__init__.py %%DATADIR%%/plugins/NetworkGraph/graph_preferences.glade %%DATADIR%%/plugins/NetworkGraph/tab_graph.py %%DATADIR%%/plugins/NetworkHealth/__init__.py %%DATADIR%%/plugins/NetworkHealth/plugin.py +%%DATADIR%%/plugins/Scheduler/__init__.py +%%DATADIR%%/plugins/Scheduler/plugin.py %%DATADIR%%/plugins/SimpleRSS/__init__.py %%DATADIR%%/plugins/SimpleRSS/feedparser.py %%DATADIR%%/plugins/SimpleRSS/plugin.py %%DATADIR%%/plugins/SimpleRSS/rss.glade %%DATADIR%%/plugins/SimpleRSS/rss.png %%DATADIR%%/plugins/SpeedLimiter/__init__.py %%DATADIR%%/plugins/TorrentCreator/__init__.py %%DATADIR%%/plugins/TorrentCreator/torrentcreator.glade %%DATADIR%%/plugins/TorrentFiles/__init__.py %%DATADIR%%/plugins/TorrentFiles/files_preferences.glade %%DATADIR%%/plugins/TorrentFiles/tab_files.py %%DATADIR%%/plugins/TorrentNotification/__init__.py %%DATADIR%%/plugins/TorrentNotification/notification_preferences.glade %%DATADIR%%/plugins/TorrentPeers/__init__.py %%DATADIR%%/plugins/TorrentPeers/peers_preferences.glade %%DATADIR%%/plugins/TorrentPeers/tab_peers.py -%%DATADIR%%/plugins/TorrentPieces/__init__.py -%%DATADIR%%/plugins/TorrentPieces/pieces_preferences.glade -%%DATADIR%%/plugins/TorrentPieces/tab_pieces.py %%DATADIR%%/plugins/TorrentSearch/__init__.py %%DATADIR%%/plugins/TorrentSearch/plugin.py %%DATADIR%%/plugins/TorrentSearch/searchdlg.glade %%DATADIR%%/plugins/WebSeed/__init__.py %%DATADIR%%/plugins/WebSeed/webseed.glade +%%DATADIR%%/plugins/WebUi/LICENSE +%%DATADIR%%/plugins/WebUi/__init__.py +%%DATADIR%%/plugins/WebUi/dbus_interface.py +%%DATADIR%%/plugins/WebUi/dbus_pythonize.py +%%DATADIR%%/plugins/WebUi/debugerror.py +%%DATADIR%%/plugins/WebUi/deluge_webserver.py +%%DATADIR%%/plugins/WebUi/gtk_cherrypy_wsgiserver.py +%%DATADIR%%/plugins/WebUi/revno +%%DATADIR%%/plugins/WebUi/run_webserver +%%DATADIR%%/plugins/WebUi/scripts/add_torrents_to_deluge.user.js +%%DATADIR%%/plugins/WebUi/scripts/build_webui_tarball.sh +%%DATADIR%%/plugins/WebUi/scripts/curl-example +%%DATADIR%%/plugins/WebUi/scripts/extract_template_strings.py +%%DATADIR%%/plugins/WebUi/scripts/template_strings.py +%%DATADIR%%/plugins/WebUi/static/images/deluge_icon.gif +%%DATADIR%%/plugins/WebUi/static/images/downloading16.png +%%DATADIR%%/plugins/WebUi/static/images/inactive16.png +%%DATADIR%%/plugins/WebUi/static/images/seeding16.png +%%DATADIR%%/plugins/WebUi/static/images/simple_bg.jpg +%%DATADIR%%/plugins/WebUi/static/images/simple_line.jpg +%%DATADIR%%/plugins/WebUi/static/images/simple_logo.jpg +%%DATADIR%%/plugins/WebUi/static/images/tango/down.png +%%DATADIR%%/plugins/WebUi/static/images/tango/list-add.png +%%DATADIR%%/plugins/WebUi/static/images/tango/list-remove.png +%%DATADIR%%/plugins/WebUi/static/images/tango/media-playback-pause.png +%%DATADIR%%/plugins/WebUi/static/images/tango/media-playback-start.png +%%DATADIR%%/plugins/WebUi/static/images/tango/preferences-system.png +%%DATADIR%%/plugins/WebUi/static/images/tango/process-stop.png +%%DATADIR%%/plugins/WebUi/static/images/tango/up.png +%%DATADIR%%/plugins/WebUi/static/images/tango/user-trash.png +%%DATADIR%%/plugins/WebUi/static/images/tango/view-refresh.png +%%DATADIR%%/plugins/WebUi/static/simple_site_style.css +%%DATADIR%%/plugins/WebUi/templates/deluge/about.html +%%DATADIR%%/plugins/WebUi/templates/deluge/authors.txt +%%DATADIR%%/plugins/WebUi/templates/deluge/error.html +%%DATADIR%%/plugins/WebUi/templates/deluge/footer.html +%%DATADIR%%/plugins/WebUi/templates/deluge/header.html +%%DATADIR%%/plugins/WebUi/templates/deluge/index.html +%%DATADIR%%/plugins/WebUi/templates/deluge/login.html +%%DATADIR%%/plugins/WebUi/templates/deluge/part_button.html +%%DATADIR%%/plugins/WebUi/templates/deluge/part_refresh.html +%%DATADIR%%/plugins/WebUi/templates/deluge/refresh_form.html +%%DATADIR%%/plugins/WebUi/templates/deluge/sort_column_head.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_add.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_delete.html +%%DATADIR%%/plugins/WebUi/templates/deluge/torrent_info.html +%%DATADIR%%/plugins/WebUi/templates/hacking-templates.txt +%%DATADIR%%/plugins/WebUi/version +%%DATADIR%%/plugins/WebUi/webpy022/Dependency-not-really part of webui.txt +%%DATADIR%%/plugins/WebUi/webpy022/__init__.py +%%DATADIR%%/plugins/WebUi/webpy022/changes.txt +%%DATADIR%%/plugins/WebUi/webpy022/cheetah.py +%%DATADIR%%/plugins/WebUi/webpy022/db.py +%%DATADIR%%/plugins/WebUi/webpy022/debugerror.py +%%DATADIR%%/plugins/WebUi/webpy022/form.py +%%DATADIR%%/plugins/WebUi/webpy022/http.py +%%DATADIR%%/plugins/WebUi/webpy022/httpserver.py +%%DATADIR%%/plugins/WebUi/webpy022/net.py +%%DATADIR%%/plugins/WebUi/webpy022/request.py +%%DATADIR%%/plugins/WebUi/webpy022/template.py +%%DATADIR%%/plugins/WebUi/webpy022/utils.py +%%DATADIR%%/plugins/WebUi/webpy022/webapi.py +%%DATADIR%%/plugins/WebUi/webpy022/wsgi.py +%%DATADIR%%/plugins/WebUi/webpy022/wsgiserver/__init__.py +%%DATADIR%%/plugins/WebUi/webserver_common.py +%%DATADIR%%/plugins/WebUi/webserver_framework.py %%PORTDOCS%%%%DOCSDIR%%/LICENSE %%PORTDOCS%%%%DOCSDIR%%/README share/locale/ar/LC_MESSAGES/deluge.mo share/locale/ast/LC_MESSAGES/deluge.mo share/locale/bg/LC_MESSAGES/deluge.mo share/locale/ca/LC_MESSAGES/deluge.mo share/locale/cs/LC_MESSAGES/deluge.mo share/locale/da/LC_MESSAGES/deluge.mo share/locale/de/LC_MESSAGES/deluge.mo share/locale/el/LC_MESSAGES/deluge.mo share/locale/en_AU/LC_MESSAGES/deluge.mo share/locale/en_CA/LC_MESSAGES/deluge.mo share/locale/en_GB/LC_MESSAGES/deluge.mo share/locale/es/LC_MESSAGES/deluge.mo share/locale/et/LC_MESSAGES/deluge.mo share/locale/eu/LC_MESSAGES/deluge.mo share/locale/fi/LC_MESSAGES/deluge.mo share/locale/fr/LC_MESSAGES/deluge.mo share/locale/gl/LC_MESSAGES/deluge.mo share/locale/he/LC_MESSAGES/deluge.mo share/locale/hr/LC_MESSAGES/deluge.mo share/locale/hu/LC_MESSAGES/deluge.mo share/locale/id/LC_MESSAGES/deluge.mo +share/locale/is/LC_MESSAGES/deluge.mo share/locale/it/LC_MESSAGES/deluge.mo share/locale/ja/LC_MESSAGES/deluge.mo share/locale/ko/LC_MESSAGES/deluge.mo share/locale/ku/LC_MESSAGES/deluge.mo share/locale/la/LC_MESSAGES/deluge.mo share/locale/lt/LC_MESSAGES/deluge.mo share/locale/lv/LC_MESSAGES/deluge.mo share/locale/mk/LC_MESSAGES/deluge.mo +share/locale/ms/LC_MESSAGES/deluge.mo share/locale/nb/LC_MESSAGES/deluge.mo share/locale/nl/LC_MESSAGES/deluge.mo share/locale/pl/LC_MESSAGES/deluge.mo share/locale/pt/LC_MESSAGES/deluge.mo share/locale/pt_BR/LC_MESSAGES/deluge.mo share/locale/ro/LC_MESSAGES/deluge.mo share/locale/ru/LC_MESSAGES/deluge.mo share/locale/sk/LC_MESSAGES/deluge.mo share/locale/sl/LC_MESSAGES/deluge.mo share/locale/sr/LC_MESSAGES/deluge.mo share/locale/sv/LC_MESSAGES/deluge.mo share/locale/ta/LC_MESSAGES/deluge.mo share/locale/tlh/LC_MESSAGES/deluge.mo share/locale/tr/LC_MESSAGES/deluge.mo share/locale/uk/LC_MESSAGES/deluge.mo share/locale/zh_CN/LC_MESSAGES/deluge.mo share/locale/zh_TW/LC_MESSAGES/deluge.mo share/pixmaps/deluge.png @dirrmtry share/locale/tlh/LC_MESSAGES @dirrmtry share/locale/tlh @dirrmtry share/locale/la/LC_MESSAGES @dirrmtry share/locale/la @dirrmtry share/locale/ku/LC_MESSAGES @dirrmtry share/locale/ku @dirrmtry share/locale/ast/LC_MESSAGES @dirrmtry share/locale/ast %%PORTDOCS%%@dirrm %%DOCSDIR%% +@dirrm %%DATADIR%%/plugins/WebUi/webpy022/wsgiserver +@dirrm %%DATADIR%%/plugins/WebUi/webpy022 +@dirrm %%DATADIR%%/plugins/WebUi/templates/deluge +@dirrm %%DATADIR%%/plugins/WebUi/templates +@dirrm %%DATADIR%%/plugins/WebUi/static/images/tango +@dirrm %%DATADIR%%/plugins/WebUi/static/images +@dirrm %%DATADIR%%/plugins/WebUi/static +@dirrm %%DATADIR%%/plugins/WebUi/scripts +@dirrm %%DATADIR%%/plugins/WebUi @dirrm %%DATADIR%%/plugins/WebSeed @dirrm %%DATADIR%%/plugins/TorrentSearch -@dirrm %%DATADIR%%/plugins/TorrentPieces @dirrm %%DATADIR%%/plugins/TorrentPeers @dirrm %%DATADIR%%/plugins/TorrentNotification @dirrm %%DATADIR%%/plugins/TorrentFiles @dirrm %%DATADIR%%/plugins/TorrentCreator @dirrm %%DATADIR%%/plugins/SpeedLimiter @dirrm %%DATADIR%%/plugins/SimpleRSS +@dirrm %%DATADIR%%/plugins/Scheduler @dirrm %%DATADIR%%/plugins/NetworkHealth @dirrm %%DATADIR%%/plugins/NetworkGraph @dirrm %%DATADIR%%/plugins/MoveTorrent @dirrm %%DATADIR%%/plugins/Locations @dirrm %%DATADIR%%/plugins/ExtraStats @dirrm %%DATADIR%%/plugins/EventLogging @dirrm %%DATADIR%%/plugins/DesiredRatio @dirrm %%DATADIR%%/plugins/BlocklistImport @dirrmtry %%DATADIR%%/plugins @dirrm %%DATADIR%%/pixmaps/flags25x15 @dirrm %%DATADIR%%/pixmaps/flags18x12 @dirrm %%DATADIR%%/pixmaps +@dirrm %%DATADIR%%/icons/scalable/apps +@dirrm %%DATADIR%%/icons/scalable +@dirrm %%DATADIR%%/icons/hicolor +@dirrm %%DATADIR%%/icons @dirrm %%DATADIR%%/glade @dirrmtry %%DATADIR%% @dirrmtry share/applications @dirrm %%PYTHON_SITELIBDIR%%/deluge @exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true Property changes on: head/net-p2p/deluge05/pkg-plist ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.10 \ No newline at end of property +1.11 \ No newline at end of property