aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrene <rene@FreeBSD.org>2015-07-08 05:00:05 +0800
committerrene <rene@FreeBSD.org>2015-07-08 05:00:05 +0800
commitf6f1f9ef2138df8ab3f916221a95e38a35167676 (patch)
tree0ccb89dad0d1665edec05235d3c80406ae0d0a29
parent5d5196aa213afeeb24be0b2050f8e6ec1a977c4a (diff)
downloadfreebsd-ports-gnome-f6f1f9ef2138df8ab3f916221a95e38a35167676.tar.gz
freebsd-ports-gnome-f6f1f9ef2138df8ab3f916221a95e38a35167676.tar.zst
freebsd-ports-gnome-f6f1f9ef2138df8ab3f916221a95e38a35167676.zip
Remove expired ports:
2015-07-07 graphics/fli2gif: No public distfiles 2015-07-07 net-im/tkabbur: Upstream development ceased since 2008
-rw-r--r--MOVED2
-rw-r--r--graphics/Makefile1
-rw-r--r--graphics/fli2gif/Makefile40
-rw-r--r--graphics/fli2gif/distinfo2
-rw-r--r--graphics/fli2gif/files/patch-fli2gif.c57
-rw-r--r--graphics/fli2gif/pkg-descr14
-rw-r--r--net-im/Makefile1
-rw-r--r--net-im/tkabbur/Makefile39
-rw-r--r--net-im/tkabbur/distinfo2
-rw-r--r--net-im/tkabbur/files/patch-Makefile12
-rw-r--r--net-im/tkabbur/pkg-descr4
-rw-r--r--net-im/tkabbur/pkg-plist1012
12 files changed, 2 insertions, 1184 deletions
diff --git a/MOVED b/MOVED
index b28649e7d2b4..d066c50d3545 100644
--- a/MOVED
+++ b/MOVED
@@ -7682,3 +7682,5 @@ multimedia/ffmpeg23|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream
multimedia/ffmpeg26|multimedia/ffmpeg|2015-07-05|Obsolete since recent upstream upgrade of main ffmpeg port. Use multimedia/ffmpeg instead.
x11/docker|x11/docker-tray|2015-07-06|Renamed
sysutils/docker|sysutils/docker-freebsd|2015-07-07|Renamed
+graphics/fli2gif||2015-07-07|Has expired: No public distfiles
+net-im/tkabbur||2015-07-07|Has expired: Upstream development ceased since 2008
diff --git a/graphics/Makefile b/graphics/Makefile
index 7a5bb3bd8fb0..bd584200aa03 100644
--- a/graphics/Makefile
+++ b/graphics/Makefile
@@ -168,7 +168,6 @@
SUBDIR += figurine
SUBDIR += flam3
SUBDIR += flasm
- SUBDIR += fli2gif
SUBDIR += flphoto
SUBDIR += fly
SUBDIR += fortytwo
diff --git a/graphics/fli2gif/Makefile b/graphics/fli2gif/Makefile
deleted file mode 100644
index 3833d9ae2e3d..000000000000
--- a/graphics/fli2gif/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# Created by: giffunip@asme.org
-# $FreeBSD$
-
-PORTNAME= fli2gif
-PORTVERSION= 1.1
-PORTREVISION= 1
-CATEGORIES= graphics
-MASTER_SITES= http://jeff.bovine.net/download/fli2gif/
-DISTNAME= ${PORTNAME}b
-
-MAINTAINER= ak@FreeBSD.org
-COMMENT= Automatic Flic to animated GIF converter
-
-DEPRECATED= No public distfiles
-EXPIRATION_DATE= 2015-07-07
-
-BROKEN= No public distfiles
-
-NO_WRKSUBDIR= yes
-
-USES= dos2unix zip:infozip
-DOS2UNIX_FILES= fli2gif.cpp FLI2GIF.TXT
-
-PLIST_FILES= bin/${PORTNAME}
-PORTDOCS= fli2gif.txt
-
-post-extract:
- @(cd ${WRKSRC} && ${UNZIP_CMD} -q source.zip \
- && ${LN} -sf GIF.CPP gif.cpp \
- && ${LN} -sf FLIPLAY.CPP fliplay.cpp)
-
-do-build:
- (cd ${WRKSRC} && ${CXX} ${CXXFLAGS} -o ${PORTNAME} *.cpp)
-
-do-install:
- ${INSTALL_PROGRAM} ${WRKSRC}/fli2gif ${STAGEDIR}${PREFIX}/bin
- @${MKDIR} ${STAGEDIR}${DOCSDIR}
- ${INSTALL_DATA} ${WRKSRC}/FLI2GIF.TXT ${STAGEDIR}${DOCSDIR}/fli2gif.txt
-
-.include <bsd.port.mk>
diff --git a/graphics/fli2gif/distinfo b/graphics/fli2gif/distinfo
deleted file mode 100644
index f4dd29acd029..000000000000
--- a/graphics/fli2gif/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (fli2gifb.zip) = 16dd314a73eb5349657ac7d1f794332854883ba21ab0b1c22756e8dfbabe7da5
-SIZE (fli2gifb.zip) = 64804
diff --git a/graphics/fli2gif/files/patch-fli2gif.c b/graphics/fli2gif/files/patch-fli2gif.c
deleted file mode 100644
index 4133156dd394..000000000000
--- a/graphics/fli2gif/files/patch-fli2gif.c
+++ /dev/null
@@ -1,57 +0,0 @@
-Index: fli2gif.cpp
-@@ -43,7 +43,9 @@
- // ******************
- #include <stdio.h>
- #include <stdlib.h>
--#include <malloc.h>
-+#ifndef __STDC__
-+# include <malloc.h>
-+#endif
- #include <string.h>
- #if defined(__TURBOC__) || defined(_MSC_VER)
- #include <conio.h>
-@@ -81,7 +83,7 @@
- // *** Function prototypes ***
- // *****************************
- void handle_error(int errorcode);
--char *add_extension(char *filename, char *extension, BOOL enforce);
-+char *add_extension(char *filename, const char *extension, BOOL enforce);
-
-
- // **************************
-@@ -95,7 +97,7 @@
- //############################################################################
- //############################################################################
- //############################################################################
--void main(int argc, char *argv[])
-+int main(int argc, char *argv[])
- {
- FILE *fp;
- int i, j;
-@@ -104,7 +106,7 @@
- // []----------------[]
- // | Initialization |
- // []----------------[]
-- printf("FLI2GIF.EXE -- Automatic Flic to Animated GIF convertor, v1.1\n");
-+ printf("FLI2GIF -- Automatic Flic to Animated GIF convertor, v1.1\n");
- printf(" by JL Enterprises, 1996. (Compiled with "
- #if defined(__TURBOC__)
- "Borland"
-@@ -117,6 +119,8 @@
- " for Windows"
- #elif defined(__MSDOS__) || defined(_DOS)
- " for MS-DOS"
-+ #elif defined(__FreeBSD__)
-+ " for FreeBSD"
- #endif
- ")\n\n");
- {
-@@ -389,7 +393,7 @@
- // Takes a user-entered filename and adds the specified extension if an
- // entension is not explicitly stated in the passed filename. A pointer
- // to a static buffer is returned.
--char *add_extension(char *filename, char *extension, BOOL enforce)
-+char *add_extension(char *filename, const char *extension, BOOL enforce)
- {
- static char Path[_MAX_PATH];
-
diff --git a/graphics/fli2gif/pkg-descr b/graphics/fli2gif/pkg-descr
deleted file mode 100644
index 6215f0af3219..000000000000
--- a/graphics/fli2gif/pkg-descr
+++ /dev/null
@@ -1,14 +0,0 @@
-This little program will take an Autodesk Flic (FLI/FLC) file and convert
-all of its frames into sequential images in a GIF89a file, along with a
-Netscape application extension animation chunk. This allows you to easily
-create animated GIF's that are viewable by Netscape Navigator 2 and
-Microsoft Internet Explorer 3 (and above) users.
-
-By using my program, you can use any animation program that can output
-Autodesk Flic files. This includes Autodesk Animator, Autodesk Animator
-Pro, Autodesk 3D-Studio, and many others. Additionally, there exist
-utilities to convert from nearly any other animation format into the
-flic format, allowing even more possibilities of animation conversion
-without having to resort to saving out individual frames to separate files.
-
-WWW: http://jeff.bovine.net
diff --git a/net-im/Makefile b/net-im/Makefile
index e138af74ee00..976ab124c66c 100644
--- a/net-im/Makefile
+++ b/net-im/Makefile
@@ -173,7 +173,6 @@
SUBDIR += telepathy-sofiasip
SUBDIR += tkabber
SUBDIR += tkabber-plugins
- SUBDIR += tkabbur
SUBDIR += tox
SUBDIR += toxic
SUBDIR += ttytter
diff --git a/net-im/tkabbur/Makefile b/net-im/tkabbur/Makefile
deleted file mode 100644
index 8ad1402c7de8..000000000000
--- a/net-im/tkabbur/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# Created by: Dennis Herrmann <adox@mcx2.org>
-# $FreeBSD$
-
-PORTNAME= tkabbur
-PORTVERSION= 0.8
-CATEGORIES= net-im
-MASTER_SITES= GOOGLE_CODE
-DISTNAME= ${PORTNAME}-${PORTVERSION}.src
-
-MAINTAINER= ports@FreeBSD.org
-COMMENT= Is a modification of XMPP/Jabber client Tkabber
-
-RUN_DEPENDS= dtplite:${PORTSDIR}/devel/tcllib \
- tcltls>0:${PORTSDIR}/devel/tcltls \
- ${LOCALBASE}/lib/bwidget/pkgIndex.tcl:${PORTSDIR}/x11-toolkits/bwidget
-
-DEPRECATED= Upstream development ceased since 2008
-EXPIRATION_DATE= 2015-07-07
-
-WRKSRC= ${WRKDIR}/${DISTNAME}
-USES= tar:bzip2 tk:run
-NO_BUILD= yes
-
-SUBDIRS= contrib emoticons ifacetk jabberlib mclistbox \
- msgs pixmaps plugins sounds tclxml trans
-
-do-install:
- ${ECHO} -e "#!/bin/sh\nexec ${WISH} ${DATADIR}/tkabbur.tcl \
- -name tkabbur \"\$$@\"\n" > ${STAGEDIR}${PREFIX}/bin/tkabbur
- ${CHMOD} +x ${STAGEDIR}${PREFIX}/bin/tkabbur
- ${CHMOD} 755 ${WRKSRC}/*.tcl
- ${MKDIR} ${STAGEDIR}${DATADIR}
- ${CP} ${WRKSRC}/*.tcl ${STAGEDIR}${DATADIR}
-.for i in ${SUBDIRS}
- ${CHMOD} -R 755 ${WRKSRC}/${i}
- ${CP} -R ${WRKSRC}/${i} ${STAGEDIR}${DATADIR}
-.endfor
-
-.include <bsd.port.mk>
diff --git a/net-im/tkabbur/distinfo b/net-im/tkabbur/distinfo
deleted file mode 100644
index a791cffca6e2..000000000000
--- a/net-im/tkabbur/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-SHA256 (tkabbur-0.8.src.tar.bz2) = 6e0350315f16c6b6aee450ea2ceba2ae09174f2a6a81c0147f16ab2f03ae313d
-SIZE (tkabbur-0.8.src.tar.bz2) = 1111620
diff --git a/net-im/tkabbur/files/patch-Makefile b/net-im/tkabbur/files/patch-Makefile
deleted file mode 100644
index e3c5a52d6bf7..000000000000
--- a/net-im/tkabbur/files/patch-Makefile
+++ /dev/null
@@ -1,12 +0,0 @@
---- Makefile.orig 2008-10-13 21:54:12.000000000 +0200
-+++ Makefile 2008-10-13 21:54:37.000000000 +0200
-@@ -22,8 +22,7 @@
- mkdir -p $(DESTDIR)/$(TKABBERDIR)
- cp -r *.tcl $(SUBDIRS) $(DESTDIR)/$(TKABBERDIR)
- mkdir -p $(DESTDIR)/$(BINDIR)
-- echo -e "#!/bin/sh\nexec wish $(TKABBERDIR)/tkabbur.tcl -name tkabbur \"\$$@\"\n" \
-- >$(DESTDIR)/$(BINDIR)/tkabbur
-+ ··echo -e "#!/bin/sh\nexec wish8.4 $(PREFIX)/share/tkabbur/tkabbur.tcl -name tkabbur \"\$$@\"\n" > $(DESTDIR)/$(PREFIX)/bin/tkabbur
- chmod 755 $(DESTDIR)/$(BINDIR)/tkabbur
-
- .PHONY: install install-bin
diff --git a/net-im/tkabbur/pkg-descr b/net-im/tkabbur/pkg-descr
deleted file mode 100644
index 3d69e2b2ece4..000000000000
--- a/net-im/tkabbur/pkg-descr
+++ /dev/null
@@ -1,4 +0,0 @@
-Tkabbur is a modification of XMPP/Jabber client Tkabber,
-that brings many new features.
-
-WWW: http://code.google.com/p/tkabbur/
diff --git a/net-im/tkabbur/pkg-plist b/net-im/tkabbur/pkg-plist
deleted file mode 100644
index c4e9ef60d64e..000000000000
--- a/net-im/tkabbur/pkg-plist
+++ /dev/null
@@ -1,1012 +0,0 @@
-bin/tkabbur
-%%DATADIR%%/Tclx.tcl
-%%DATADIR%%/balloon.tcl
-%%DATADIR%%/chats.tcl
-%%DATADIR%%/configdir.tcl
-%%DATADIR%%/contrib/contrib/.svn/all-wcprops
-%%DATADIR%%/contrib/contrib/.svn/entries
-%%DATADIR%%/contrib/contrib/.svn/format
-%%DATADIR%%/contrib/contrib/extract-translations/.svn/all-wcprops
-%%DATADIR%%/contrib/contrib/extract-translations/.svn/entries
-%%DATADIR%%/contrib/contrib/extract-translations/.svn/format
-%%DATADIR%%/contrib/contrib/extract-translations/.svn/prop-base/extract.tcl.svn-base
-%%DATADIR%%/contrib/contrib/extract-translations/.svn/text-base/extract.tcl.svn-base
-%%DATADIR%%/contrib/contrib/extract-translations/extract.tcl
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/.svn/all-wcprops
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/.svn/entries
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/.svn/format
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/.svn/prop-base/gabber-docking-24x24.zip.svn-base
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/.svn/text-base/gabber-docking-24x24.zip.svn-base
-%%DATADIR%%/contrib/contrib/gabber-docking-24x24/gabber-docking-24x24.zip
-%%DATADIR%%/contrib/contrib/starkit/.svn/all-wcprops
-%%DATADIR%%/contrib/contrib/starkit/.svn/entries
-%%DATADIR%%/contrib/contrib/starkit/.svn/format
-%%DATADIR%%/contrib/contrib/starkit/.svn/prop-base/README.svn-base
-%%DATADIR%%/contrib/contrib/starkit/.svn/prop-base/main.tcl.svn-base
-%%DATADIR%%/contrib/contrib/starkit/.svn/text-base/README.svn-base
-%%DATADIR%%/contrib/contrib/starkit/.svn/text-base/main.tcl.svn-base
-%%DATADIR%%/contrib/contrib/starkit/README
-%%DATADIR%%/contrib/contrib/starkit/main.tcl
-%%DATADIR%%/custom.tcl
-%%DATADIR%%/datagathering.tcl
-%%DATADIR%%/default.tcl
-%%DATADIR%%/disco.tcl
-%%DATADIR%%/emoticons/default/beer.gif
-%%DATADIR%%/emoticons/default/facegrinning.gif
-%%DATADIR%%/emoticons/default/facehappy.gif
-%%DATADIR%%/emoticons/default/faceironic.gif
-%%DATADIR%%/emoticons/default/facesad.gif
-%%DATADIR%%/emoticons/default/facestartled.gif
-%%DATADIR%%/emoticons/default/facestraight.gif
-%%DATADIR%%/emoticons/default/facewinking.gif
-%%DATADIR%%/emoticons/default/faceyukky.gif
-%%DATADIR%%/emoticons/default/icondef.xml
-%%DATADIR%%/filetransfer.tcl
-%%DATADIR%%/gpgme.tcl
-%%DATADIR%%/hooks.tcl
-%%DATADIR%%/iface.tcl
-%%DATADIR%%/ifacetk/buttonbar.tcl
-%%DATADIR%%/ifacetk/bwidget_workarounds.tcl
-%%DATADIR%%/ifacetk/default.xrdb
-%%DATADIR%%/ifacetk/idefault.tcl
-%%DATADIR%%/ifacetk/iface.tcl
-%%DATADIR%%/ifacetk/ilogin.tcl
-%%DATADIR%%/ifacetk/iroster.tcl
-%%DATADIR%%/ifacetk/systray.tcl
-%%DATADIR%%/ifacetk/unix.xrdb
-%%DATADIR%%/iq.tcl
-%%DATADIR%%/itemedit.tcl
-%%DATADIR%%/jabberlib/autoconnect.tcl
-%%DATADIR%%/jabberlib/https.tcl
-%%DATADIR%%/jabberlib/idna.tcl
-%%DATADIR%%/jabberlib/jabberlib.tcl
-%%DATADIR%%/jabberlib/jlibauth.tcl
-%%DATADIR%%/jabberlib/jlibcomponent.tcl
-%%DATADIR%%/jabberlib/jlibcompress.tcl
-%%DATADIR%%/jabberlib/jlibdns.tcl
-%%DATADIR%%/jabberlib/jlibsasl.tcl
-%%DATADIR%%/jabberlib/jlibtls.tcl
-%%DATADIR%%/jabberlib/namespaces.tcl
-%%DATADIR%%/jabberlib/ntlm.tcl
-%%DATADIR%%/jabberlib/pkgIndex.tcl
-%%DATADIR%%/jabberlib/socks4.tcl
-%%DATADIR%%/jabberlib/socks5.tcl
-%%DATADIR%%/jabberlib/stanzaerror.tcl
-%%DATADIR%%/jabberlib/streamerror.tcl
-%%DATADIR%%/jabberlib/transports.tcl
-%%DATADIR%%/jabberlib/wrapper.tcl
-%%DATADIR%%/joingrdialog.tcl
-%%DATADIR%%/login.tcl
-%%DATADIR%%/mclistbox/mclistbox.tcl
-%%DATADIR%%/messages.tcl
-%%DATADIR%%/msgs/ca.msg
-%%DATADIR%%/msgs/de.msg
-%%DATADIR%%/msgs/eo.msg
-%%DATADIR%%/msgs/es.msg
-%%DATADIR%%/msgs/eu.msg
-%%DATADIR%%/msgs/fr.msg
-%%DATADIR%%/msgs/it.msg
-%%DATADIR%%/msgs/nl.msg
-%%DATADIR%%/msgs/pl.msg
-%%DATADIR%%/msgs/pl.rc
-%%DATADIR%%/msgs/pt.msg
-%%DATADIR%%/msgs/ro.msg
-%%DATADIR%%/msgs/ru.msg
-%%DATADIR%%/msgs/ru.rc
-%%DATADIR%%/msgs/uk.msg
-%%DATADIR%%/msgs/uk.rc
-%%DATADIR%%/muc.tcl
-%%DATADIR%%/negotiate.tcl
-%%DATADIR%%/pep.tcl
-%%DATADIR%%/pixmaps.tcl
-%%DATADIR%%/pixmaps/default-blue/docking/available-away.gif
-%%DATADIR%%/pixmaps/default-blue/docking/available-chat.gif
-%%DATADIR%%/pixmaps/default-blue/docking/available-dnd.gif
-%%DATADIR%%/pixmaps/default-blue/docking/available.gif
-%%DATADIR%%/pixmaps/default-blue/docking/tkabber.ico
-%%DATADIR%%/pixmaps/default-blue/icondef.xml
-%%DATADIR%%/pixmaps/default-blue/roster/available-away.gif
-%%DATADIR%%/pixmaps/default-blue/roster/available-chat.gif
-%%DATADIR%%/pixmaps/default-blue/roster/available-dnd.gif
-%%DATADIR%%/pixmaps/default-blue/roster/available.gif
-%%DATADIR%%/pixmaps/default/docking/available-away.gif
-%%DATADIR%%/pixmaps/default/docking/available-chat.gif
-%%DATADIR%%/pixmaps/default/docking/available-dnd.gif
-%%DATADIR%%/pixmaps/default/docking/available-xa.gif
-%%DATADIR%%/pixmaps/default/docking/available.gif
-%%DATADIR%%/pixmaps/default/docking/blank.gif
-%%DATADIR%%/pixmaps/default/docking/invisible.gif
-%%DATADIR%%/pixmaps/default/docking/message-personal.gif
-%%DATADIR%%/pixmaps/default/docking/message-server.gif
-%%DATADIR%%/pixmaps/default/docking/message.gif
-%%DATADIR%%/pixmaps/default/docking/tkabber.ico
-%%DATADIR%%/pixmaps/default/docking/unavailable.gif
-%%DATADIR%%/pixmaps/default/icondef.xml
-%%DATADIR%%/pixmaps/default/roster/available-away.gif
-%%DATADIR%%/pixmaps/default/roster/available-chat.gif
-%%DATADIR%%/pixmaps/default/roster/available-dnd.gif
-%%DATADIR%%/pixmaps/default/roster/available-xa.gif
-%%DATADIR%%/pixmaps/default/roster/available.gif
-%%DATADIR%%/pixmaps/default/roster/conference-available.gif
-%%DATADIR%%/pixmaps/default/roster/conference-unavailable.gif
-%%DATADIR%%/pixmaps/default/roster/group-closed.gif
-%%DATADIR%%/pixmaps/default/roster/group-opened.gif
-%%DATADIR%%/pixmaps/default/roster/invisible.gif
-%%DATADIR%%/pixmaps/default/roster/stalker.gif
-%%DATADIR%%/pixmaps/default/roster/unavailable.gif
-%%DATADIR%%/pixmaps/default/services/aim_away.gif
-%%DATADIR%%/pixmaps/default/services/aim_chat.gif
-%%DATADIR%%/pixmaps/default/services/aim_dnd.gif
-%%DATADIR%%/pixmaps/default/services/aim_offline.gif
-%%DATADIR%%/pixmaps/default/services/aim_online.gif
-%%DATADIR%%/pixmaps/default/services/aim_xa.gif
-%%DATADIR%%/pixmaps/default/services/gg_away.gif
-%%DATADIR%%/pixmaps/default/services/gg_chat.gif
-%%DATADIR%%/pixmaps/default/services/gg_dnd.gif
-%%DATADIR%%/pixmaps/default/services/gg_offline.gif
-%%DATADIR%%/pixmaps/default/services/gg_online.gif
-%%DATADIR%%/pixmaps/default/services/gg_xa.gif
-%%DATADIR%%/pixmaps/default/services/icq_away.gif
-%%DATADIR%%/pixmaps/default/services/icq_chat.gif
-%%DATADIR%%/pixmaps/default/services/icq_dnd.gif
-%%DATADIR%%/pixmaps/default/services/icq_offline.gif
-%%DATADIR%%/pixmaps/default/services/icq_online.gif
-%%DATADIR%%/pixmaps/default/services/icq_xa.gif
-%%DATADIR%%/pixmaps/default/services/jud.gif
-%%DATADIR%%/pixmaps/default/services/mrim_away.gif
-%%DATADIR%%/pixmaps/default/services/mrim_offline.gif
-%%DATADIR%%/pixmaps/default/services/mrim_online.gif
-%%DATADIR%%/pixmaps/default/services/msn_away.gif
-%%DATADIR%%/pixmaps/default/services/msn_chat.gif
-%%DATADIR%%/pixmaps/default/services/msn_dnd.gif
-%%DATADIR%%/pixmaps/default/services/msn_offline.gif
-%%DATADIR%%/pixmaps/default/services/msn_online.gif
-%%DATADIR%%/pixmaps/default/services/msn_xa.gif
-%%DATADIR%%/pixmaps/default/services/rss_offline.gif
-%%DATADIR%%/pixmaps/default/services/rss_online.gif
-%%DATADIR%%/pixmaps/default/services/server.gif
-%%DATADIR%%/pixmaps/default/services/sms.gif
-%%DATADIR%%/pixmaps/default/services/weather_away.gif
-%%DATADIR%%/pixmaps/default/services/weather_chat.gif
-%%DATADIR%%/pixmaps/default/services/weather_dnd.gif
-%%DATADIR%%/pixmaps/default/services/weather_offline.gif
-%%DATADIR%%/pixmaps/default/services/weather_online.gif
-%%DATADIR%%/pixmaps/default/services/weather_xa.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_away.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_chat.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_dnd.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_offline.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_online.gif
-%%DATADIR%%/pixmaps/default/services/yahoo_xa.gif
-%%DATADIR%%/pixmaps/default/tkabber/chat-bookmark-blue.gif
-%%DATADIR%%/pixmaps/default/tkabber/chat-bookmark-green.gif
-%%DATADIR%%/pixmaps/default/tkabber/chat-bookmark-red.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-badencrypted.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-badsigned.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-encrypted.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-signed.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-unencrypted.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-unsigned.gif
-%%DATADIR%%/pixmaps/default/tkabber/gpg-vsigned.gif
-%%DATADIR%%/pixmaps/default/tkabber/tkabber-logo.gif
-%%DATADIR%%/pixmaps/default/tkabber/toolbar-add-user.gif
-%%DATADIR%%/pixmaps/default/tkabber/toolbar-disco.gif
-%%DATADIR%%/pixmaps/default/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/pixmaps/default/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/pixmaps/default/tkabber/toolbar-show-online.gif
-%%DATADIR%%/pixmaps/default/tkabber/xaddress-blue.gif
-%%DATADIR%%/pixmaps/default/tkabber/xaddress-green.gif
-%%DATADIR%%/pixmaps/default/tkabber/xaddress-red.gif
-%%DATADIR%%/pixmaps/feather16/docking/available-away.gif
-%%DATADIR%%/pixmaps/feather16/docking/available-chat.gif
-%%DATADIR%%/pixmaps/feather16/docking/available-dnd.gif
-%%DATADIR%%/pixmaps/feather16/docking/available-xa.gif
-%%DATADIR%%/pixmaps/feather16/docking/available.gif
-%%DATADIR%%/pixmaps/feather16/docking/blank.gif
-%%DATADIR%%/pixmaps/feather16/docking/invisible.gif
-%%DATADIR%%/pixmaps/feather16/docking/message-personal.gif
-%%DATADIR%%/pixmaps/feather16/docking/message-server.gif
-%%DATADIR%%/pixmaps/feather16/docking/message.gif
-%%DATADIR%%/pixmaps/feather16/docking/tkabber.ico
-%%DATADIR%%/pixmaps/feather16/docking/unavailable.gif
-%%DATADIR%%/pixmaps/feather16/icondef.xml
-%%DATADIR%%/pixmaps/feather16/roster/available-away.gif
-%%DATADIR%%/pixmaps/feather16/roster/available-chat.gif
-%%DATADIR%%/pixmaps/feather16/roster/available-dnd.gif
-%%DATADIR%%/pixmaps/feather16/roster/available-xa.gif
-%%DATADIR%%/pixmaps/feather16/roster/available.gif
-%%DATADIR%%/pixmaps/feather16/roster/conference-available.gif
-%%DATADIR%%/pixmaps/feather16/roster/conference-unavailable.gif
-%%DATADIR%%/pixmaps/feather16/roster/invisible.gif
-%%DATADIR%%/pixmaps/feather16/roster/stalker.gif
-%%DATADIR%%/pixmaps/feather16/roster/unavailable.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_away.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_chat.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_dnd.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_offline.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_online.gif
-%%DATADIR%%/pixmaps/feather16/services/rss_xa.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-badencrypted.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-badsigned.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-encrypted.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-signed.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-unencrypted.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-unsigned.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/gpg-vsigned.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/toolbar-add-user.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/toolbar-disco.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/pixmaps/feather16/tkabber/toolbar-show-online.gif
-%%DATADIR%%/pixmaps/feather22/icondef.xml
-%%DATADIR%%/pixmaps/feather22/roster/available-away.gif
-%%DATADIR%%/pixmaps/feather22/roster/available-chat.gif
-%%DATADIR%%/pixmaps/feather22/roster/available-dnd.gif
-%%DATADIR%%/pixmaps/feather22/roster/available-xa.gif
-%%DATADIR%%/pixmaps/feather22/roster/available.gif
-%%DATADIR%%/pixmaps/feather22/roster/invisible.gif
-%%DATADIR%%/pixmaps/feather22/roster/unavailable.gif
-%%DATADIR%%/pixmaps/stars/docking/available-away.gif
-%%DATADIR%%/pixmaps/stars/docking/available-chat.gif
-%%DATADIR%%/pixmaps/stars/docking/available-dnd.gif
-%%DATADIR%%/pixmaps/stars/docking/available-xa.gif
-%%DATADIR%%/pixmaps/stars/docking/available.gif
-%%DATADIR%%/pixmaps/stars/docking/invisible.gif
-%%DATADIR%%/pixmaps/stars/docking/message-personal.gif
-%%DATADIR%%/pixmaps/stars/docking/message-server.gif
-%%DATADIR%%/pixmaps/stars/docking/message.gif
-%%DATADIR%%/pixmaps/stars/docking/unavailable.gif
-%%DATADIR%%/pixmaps/stars/icondef.xml
-%%DATADIR%%/pixmaps/stars/roster/available-away.gif
-%%DATADIR%%/pixmaps/stars/roster/available-chat.gif
-%%DATADIR%%/pixmaps/stars/roster/available-dnd.gif
-%%DATADIR%%/pixmaps/stars/roster/available-xa.gif
-%%DATADIR%%/pixmaps/stars/roster/available.gif
-%%DATADIR%%/pixmaps/stars/roster/conference-available.gif
-%%DATADIR%%/pixmaps/stars/roster/conference-unavailable.gif
-%%DATADIR%%/pixmaps/stars/roster/group-closed.gif
-%%DATADIR%%/pixmaps/stars/roster/group-opened.gif
-%%DATADIR%%/pixmaps/stars/roster/invisible.gif
-%%DATADIR%%/pixmaps/stars/roster/stalker.gif
-%%DATADIR%%/pixmaps/stars/roster/unavailable.gif
-%%DATADIR%%/pixmaps/stars/services/rss_away.gif
-%%DATADIR%%/pixmaps/stars/services/rss_chat.gif
-%%DATADIR%%/pixmaps/stars/services/rss_dnd.gif
-%%DATADIR%%/pixmaps/stars/services/rss_offline.gif
-%%DATADIR%%/pixmaps/stars/services/rss_online.gif
-%%DATADIR%%/pixmaps/stars/services/rss_xa.gif
-%%DATADIR%%/pixmaps/stars/tkabber/chat-bookmark.gif
-%%DATADIR%%/pixmaps/stars/tkabber/chat-bookmark1.gif
-%%DATADIR%%/pixmaps/stars/tkabber/new-msg.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-add-user.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-disco.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-disco_old.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/pixmaps/stars/tkabber/toolbar-show-online.gif
-%%DATADIR%%/pixmaps/stars/tkabber/xaddress.gif
-%%DATADIR%%/plugins.tcl
-%%DATADIR%%/plugins/chat/abbrev.tcl
-%%DATADIR%%/plugins/chat/bookmark_highlighted.tcl
-%%DATADIR%%/plugins/chat/chatstate.tcl
-%%DATADIR%%/plugins/chat/clear.tcl
-%%DATADIR%%/plugins/chat/complete_last_nick.tcl
-%%DATADIR%%/plugins/chat/completion.tcl
-%%DATADIR%%/plugins/chat/draw_error.tcl
-%%DATADIR%%/plugins/chat/draw_info.tcl
-%%DATADIR%%/plugins/chat/draw_message.tcl
-%%DATADIR%%/plugins/chat/draw_normal_message.tcl
-%%DATADIR%%/plugins/chat/draw_server_message.tcl
-%%DATADIR%%/plugins/chat/draw_timestamp.tcl
-%%DATADIR%%/plugins/chat/draw_xhtml_message.tcl
-%%DATADIR%%/plugins/chat/empty_body.tcl
-%%DATADIR%%/plugins/chat/exec_command.tcl
-%%DATADIR%%/plugins/chat/histool.tcl
-%%DATADIR%%/plugins/chat/history.tcl
-%%DATADIR%%/plugins/chat/info_commands.tcl
-%%DATADIR%%/plugins/chat/insert_nick.tcl
-%%DATADIR%%/plugins/chat/irc_commands.tcl
-%%DATADIR%%/plugins/chat/log_on_open.tcl
-%%DATADIR%%/plugins/chat/logger.tcl
-%%DATADIR%%/plugins/chat/me_command.tcl
-%%DATADIR%%/plugins/chat/muc_ignore.tcl
-%%DATADIR%%/plugins/chat/nick_colors.tcl
-%%DATADIR%%/plugins/chat/open_chat.tcl
-%%DATADIR%%/plugins/chat/open_window.tcl
-%%DATADIR%%/plugins/chat/popupmenu.tcl
-%%DATADIR%%/plugins/chat/postpone.tcl
-%%DATADIR%%/plugins/chat/send_message.tcl
-%%DATADIR%%/plugins/chat/unisymbols.tcl
-%%DATADIR%%/plugins/chat/update_tab.tcl
-%%DATADIR%%/plugins/filetransfer/http.tcl
-%%DATADIR%%/plugins/filetransfer/si.tcl
-%%DATADIR%%/plugins/general/autoaway.tcl
-%%DATADIR%%/plugins/general/avatars.tcl
-%%DATADIR%%/plugins/general/caps.tcl
-%%DATADIR%%/plugins/general/clientinfo.tcl
-%%DATADIR%%/plugins/general/copy_jid.tcl
-%%DATADIR%%/plugins/general/headlines.tcl
-%%DATADIR%%/plugins/general/ispell.tcl
-%%DATADIR%%/plugins/general/jitworkaround.tcl
-%%DATADIR%%/plugins/general/message_archive.tcl
-%%DATADIR%%/plugins/general/offline.tcl
-%%DATADIR%%/plugins/general/rawxml.tcl
-%%DATADIR%%/plugins/general/remote.tcl
-%%DATADIR%%/plugins/general/session.tcl
-%%DATADIR%%/plugins/general/shstatus.tcl
-%%DATADIR%%/plugins/general/sound.tcl
-%%DATADIR%%/plugins/general/stats.tcl
-%%DATADIR%%/plugins/general/subscribe_gateway.tcl
-%%DATADIR%%/plugins/general/tkcon.tcl
-%%DATADIR%%/plugins/general/xaddress.tcl
-%%DATADIR%%/plugins/general/xcommands.tcl
-%%DATADIR%%/plugins/iq/browse.tcl
-%%DATADIR%%/plugins/iq/last.tcl
-%%DATADIR%%/plugins/iq/ping.tcl
-%%DATADIR%%/plugins/iq/time.tcl
-%%DATADIR%%/plugins/iq/version.tcl
-%%DATADIR%%/plugins/other/aniemoticons/aniemoticons.tcl
-%%DATADIR%%/plugins/other/aniemoticons/anigif.tcl
-%%DATADIR%%/plugins/other/attline/AUTHORS
-%%DATADIR%%/plugins/other/attline/INSTALL
-%%DATADIR%%/plugins/other/attline/README
-%%DATADIR%%/plugins/other/attline/TODO
-%%DATADIR%%/plugins/other/attline/attline.tcl
-%%DATADIR%%/plugins/other/attline/license.terms
-%%DATADIR%%/plugins/other/attline/msgs/de.msg
-%%DATADIR%%/plugins/other/attline/msgs/es.msg
-%%DATADIR%%/plugins/other/attline/msgs/pl.msg
-%%DATADIR%%/plugins/other/attline/msgs/ru.msg
-%%DATADIR%%/plugins/other/autoanswer/AUTHORS
-%%DATADIR%%/plugins/other/autoanswer/INSTALL
-%%DATADIR%%/plugins/other/autoanswer/README
-%%DATADIR%%/plugins/other/autoanswer/autoanswer.tcl
-%%DATADIR%%/plugins/other/autoanswer/images/.svn/all-wcprops
-%%DATADIR%%/plugins/other/autoanswer/images/.svn/entries
-%%DATADIR%%/plugins/other/autoanswer/images/.svn/format
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/all-wcprops
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/entries
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/format
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/prop-base/answerback_off.gif.svn-base
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/prop-base/answerback_on.gif.svn-base
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/text-base/answerback_off.gif.svn-base
-%%DATADIR%%/plugins/other/autoanswer/images/default/.svn/text-base/answerback_on.gif.svn-base
-%%DATADIR%%/plugins/other/autoanswer/images/default/answerback_off.gif
-%%DATADIR%%/plugins/other/autoanswer/images/default/answerback_on.gif
-%%DATADIR%%/plugins/other/autoanswer/msgs/.svn/all-wcprops
-%%DATADIR%%/plugins/other/autoanswer/msgs/.svn/entries
-%%DATADIR%%/plugins/other/autoanswer/msgs/.svn/format
-%%DATADIR%%/plugins/other/autoanswer/msgs/.svn/prop-base/ru.msg.svn-base
-%%DATADIR%%/plugins/other/autoanswer/msgs/.svn/text-base/ru.msg.svn-base
-%%DATADIR%%/plugins/other/autoanswer/msgs/ru.msg
-%%DATADIR%%/plugins/other/bc/bc.tcl
-%%DATADIR%%/plugins/other/bc/ru.dic
-%%DATADIR%%/plugins/other/checkers/README
-%%DATADIR%%/plugins/other/checkers/checkers.tcl
-%%DATADIR%%/plugins/other/checkers/msgs/es.msg
-%%DATADIR%%/plugins/other/checkers/msgs/nl.msg
-%%DATADIR%%/plugins/other/checkers/msgs/pl.msg
-%%DATADIR%%/plugins/other/checkers/msgs/ru.msg
-%%DATADIR%%/plugins/other/checkers/msgs/uk.msg
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/bf.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/bk.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/bp.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/icondef.xml
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/wf.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/wk.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/checkers/wp.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/bf.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/bk.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/bp.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/icondef.xml
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/wf.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/wk.gif
-%%DATADIR%%/plugins/other/checkers/pixmaps/xboard/wp.gif
-%%DATADIR%%/plugins/other/checkers/proto
-%%DATADIR%%/plugins/other/checkers/rules/brasilian.txt
-%%DATADIR%%/plugins/other/checkers/rules/italian.txt
-%%DATADIR%%/plugins/other/checkers/rules/pool.txt
-%%DATADIR%%/plugins/other/checkers/rules/russian.txt
-%%DATADIR%%/plugins/other/checkers/rules/spanish.txt
-%%DATADIR%%/plugins/other/checkers/rules/straight.txt
-%%DATADIR%%/plugins/other/chess/chess.tcl
-%%DATADIR%%/plugins/other/chess/msgs/es.msg
-%%DATADIR%%/plugins/other/chess/msgs/nl.msg
-%%DATADIR%%/plugins/other/chess/msgs/pl.msg
-%%DATADIR%%/plugins/other/chess/msgs/ro.msg
-%%DATADIR%%/plugins/other/chess/msgs/ru.msg
-%%DATADIR%%/plugins/other/chess/msgs/uk.msg
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/bq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/br.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/icondef.xml
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/classic/wr.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/bq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/br.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/icondef.xml
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/wooden/wr.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/bq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/br.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/icondef.xml
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wb.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wf.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wk.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wn.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wp.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wq.gif
-%%DATADIR%%/plugins/other/chess/pixmaps/xboard/wr.gif
-%%DATADIR%%/plugins/other/chess/proto
-%%DATADIR%%/plugins/other/ctcomp/AUTHORS
-%%DATADIR%%/plugins/other/ctcomp/ChangeLog
-%%DATADIR%%/plugins/other/ctcomp/INSTALL
-%%DATADIR%%/plugins/other/ctcomp/README
-%%DATADIR%%/plugins/other/ctcomp/TODO
-%%DATADIR%%/plugins/other/ctcomp/VERSION
-%%DATADIR%%/plugins/other/ctcomp/ctcomp.tcl
-%%DATADIR%%/plugins/other/ctcomp/license.terms
-%%DATADIR%%/plugins/other/custom-urls/custom-urls.tcl
-%%DATADIR%%/plugins/other/debug/debug.tcl
-%%DATADIR%%/plugins/other/debug/msgs/de.msg
-%%DATADIR%%/plugins/other/debug/msgs/es.msg
-%%DATADIR%%/plugins/other/debug/msgs/pl.msg
-%%DATADIR%%/plugins/other/debug/msgs/ru.msg
-%%DATADIR%%/plugins/other/debug/msgs/uk.msg
-%%DATADIR%%/plugins/other/ejabberd/ejabberd.tcl
-%%DATADIR%%/plugins/other/ejabberd/msgs/es.msg
-%%DATADIR%%/plugins/other/ejabberd/msgs/pl.msg
-%%DATADIR%%/plugins/other/ejabberd/msgs/ru.msg
-%%DATADIR%%/plugins/other/ejabberd/msgs/uk.msg
-%%DATADIR%%/plugins/other/floatinglog/AUTHORS
-%%DATADIR%%/plugins/other/floatinglog/ChangeLog
-%%DATADIR%%/plugins/other/floatinglog/INSTALL
-%%DATADIR%%/plugins/other/floatinglog/TODO
-%%DATADIR%%/plugins/other/floatinglog/VERSION
-%%DATADIR%%/plugins/other/floatinglog/floatinglog.tcl
-%%DATADIR%%/plugins/other/floatinglog/license.terms
-%%DATADIR%%/plugins/other/floatinglog/msgs/de.msg
-%%DATADIR%%/plugins/other/floatinglog/msgs/es.msg
-%%DATADIR%%/plugins/other/floatinglog/msgs/pl.msg
-%%DATADIR%%/plugins/other/floatinglog/msgs/ru.msg
-%%DATADIR%%/plugins/other/georoster/ChangeLog
-%%DATADIR%%/plugins/other/georoster/bwmap2.gif
-%%DATADIR%%/plugins/other/georoster/bwmap4.gif
-%%DATADIR%%/plugins/other/georoster/colormap.jpg
-%%DATADIR%%/plugins/other/georoster/darkmap.gif
-%%DATADIR%%/plugins/other/georoster/de.coords
-%%DATADIR%%/plugins/other/georoster/earth
-%%DATADIR%%/plugins/other/georoster/earth.ru
-%%DATADIR%%/plugins/other/georoster/georoster.tcl
-%%DATADIR%%/plugins/other/georoster/howto.txt
-%%DATADIR%%/plugins/other/georoster/iso3166
-%%DATADIR%%/plugins/other/georoster/jm.coords
-%%DATADIR%%/plugins/other/georoster/msgs/de.msg
-%%DATADIR%%/plugins/other/georoster/msgs/es.msg
-%%DATADIR%%/plugins/other/georoster/msgs/nl.msg
-%%DATADIR%%/plugins/other/georoster/msgs/pl.msg
-%%DATADIR%%/plugins/other/georoster/msgs/ro.msg
-%%DATADIR%%/plugins/other/georoster/msgs/ru.msg
-%%DATADIR%%/plugins/other/georoster/msgs/uk.msg
-%%DATADIR%%/plugins/other/georoster/nl.coords
-%%DATADIR%%/plugins/other/georoster/ru.coords
-%%DATADIR%%/plugins/other/georoster/ua.coords
-%%DATADIR%%/plugins/other/georoster/us.coords
-%%DATADIR%%/plugins/other/gmail/gmail.tcl
-%%DATADIR%%/plugins/other/gmail/msgs/de.msg
-%%DATADIR%%/plugins/other/gmail/msgs/es.msg
-%%DATADIR%%/plugins/other/gmail/msgs/pl.msg
-%%DATADIR%%/plugins/other/gmail/msgs/ru.msg
-%%DATADIR%%/plugins/other/iconsets/amibulb/docking/tkabber.ico
-%%DATADIR%%/plugins/other/iconsets/amibulb/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/amibulb/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/available.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/message-personal.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/message-server.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/message.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/tkabber.ico
-%%DATADIR%%/plugins/other/iconsets/gabber/docking/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/conference-available.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/conference-unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/aim_xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/icq_xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/jud.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/msn_xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/rss_xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/sms.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_away.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_chat.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_online.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/services/yahoo_xa.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/gabber/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/gush/docking/tkabber.ico
-%%DATADIR%%/plugins/other/iconsets/gush/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/available2.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/gush/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/gush/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/gush/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/gush/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/gush/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/gush/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/iconsets.tcl
-%%DATADIR%%/plugins/other/iconsets/icq/docking/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/available.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/icq/docking/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/icq/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/icq/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/message.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/send.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/icq/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/icq/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/icq/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/icq/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/icq/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/icq/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/available.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/tkabber.ico
-%%DATADIR%%/plugins/other/iconsets/jajc/docking/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/conference-available.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/conference-unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/group_closed.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/group_opened.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_offline.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_online.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/aim_xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_offline.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_online.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/icq_xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/jud.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_offline.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_online.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/msn_xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/sms.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_away.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_chat.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_offline.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_online.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/services/yahoo_xa.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/jajc/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/jarl/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/available.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/tkabber.ico
-%%DATADIR%%/plugins/other/iconsets/kroc/docking/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/conference-available.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/conference-unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/invisible.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/roster/unsubscribed.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/aim_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/gg_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/icq_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/jud.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/msn_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/rss_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/sms.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/weather_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_away.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_chat.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_dnd.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_online.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/services/yahoo_xa.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/gpg-badsigned.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/gpg-encrypted.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/gpg-signed.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/gpg-unencrypted.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/gpg-unsigned.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/kroc/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/iconsets/psi/icondef.xml
-%%DATADIR%%/plugins/other/iconsets/psi/roster/available-away.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/available-chat.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/available-dnd.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/available-xa.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/available.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/group-closed.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/group-opened.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/stalker.gif
-%%DATADIR%%/plugins/other/iconsets/psi/roster/unavailable.gif
-%%DATADIR%%/plugins/other/iconsets/psi/tkabber/toolbar-add-user.gif
-%%DATADIR%%/plugins/other/iconsets/psi/tkabber/toolbar-disco.gif
-%%DATADIR%%/plugins/other/iconsets/psi/tkabber/toolbar-join-conference.gif
-%%DATADIR%%/plugins/other/iconsets/psi/tkabber/toolbar-show-offline.gif
-%%DATADIR%%/plugins/other/iconsets/psi/tkabber/toolbar-show-online.gif
-%%DATADIR%%/plugins/other/jidlink/README
-%%DATADIR%%/plugins/other/jidlink/jidlink.tcl
-%%DATADIR%%/plugins/other/jidlink/msgs/de.msg
-%%DATADIR%%/plugins/other/jidlink/msgs/pl.msg
-%%DATADIR%%/plugins/other/jidlink/msgs/ru.msg
-%%DATADIR%%/plugins/other/jidlink/plugins/dtcp.tcl
-%%DATADIR%%/plugins/other/jidlink/plugins/filetransfer.tcl
-%%DATADIR%%/plugins/other/jidlink/plugins/ibb.tcl
-%%DATADIR%%/plugins/other/latex/latex.tcl
-%%DATADIR%%/plugins/other/latex/msgs/de.msg
-%%DATADIR%%/plugins/other/latex/msgs/es.msg
-%%DATADIR%%/plugins/other/latex/msgs/ru.msg
-%%DATADIR%%/plugins/other/latex/msgs/uk.msg
-%%DATADIR%%/plugins/other/mute/msgs/ru.msg
-%%DATADIR%%/plugins/other/mute/mute.tcl
-%%DATADIR%%/plugins/other/openurl/msgs/de.msg
-%%DATADIR%%/plugins/other/openurl/msgs/es.msg
-%%DATADIR%%/plugins/other/openurl/msgs/pl.msg
-%%DATADIR%%/plugins/other/openurl/msgs/ru.msg
-%%DATADIR%%/plugins/other/openurl/openurl.tcl
-%%DATADIR%%/plugins/other/osd/ChangeLog
-%%DATADIR%%/plugins/other/osd/osd.tcl
-%%DATADIR%%/plugins/other/presencecmd/AUTHORS
-%%DATADIR%%/plugins/other/presencecmd/INSTALL
-%%DATADIR%%/plugins/other/presencecmd/README
-%%DATADIR%%/plugins/other/presencecmd/TODO
-%%DATADIR%%/plugins/other/presencecmd/VERSION
-%%DATADIR%%/plugins/other/presencecmd/license.terms
-%%DATADIR%%/plugins/other/presencecmd/msgs/de.msg
-%%DATADIR%%/plugins/other/presencecmd/msgs/es.msg
-%%DATADIR%%/plugins/other/presencecmd/msgs/pl.msg
-%%DATADIR%%/plugins/other/presencecmd/msgs/ru.msg
-%%DATADIR%%/plugins/other/presencecmd/presencecmd.tcl
-%%DATADIR%%/plugins/other/quiz/quiz.tcl
-%%DATADIR%%/plugins/other/quiz/quizdata.txt
-%%DATADIR%%/plugins/other/receipts/AUTHORS
-%%DATADIR%%/plugins/other/receipts/INSTALL
-%%DATADIR%%/plugins/other/receipts/README
-%%DATADIR%%/plugins/other/receipts/TODO
-%%DATADIR%%/plugins/other/receipts/images/.svn/all-wcprops
-%%DATADIR%%/plugins/other/receipts/images/.svn/entries
-%%DATADIR%%/plugins/other/receipts/images/.svn/format
-%%DATADIR%%/plugins/other/receipts/images/.svn/prop-base/confirmed.gif.svn-base
-%%DATADIR%%/plugins/other/receipts/images/.svn/prop-base/unconfirmed.gif.svn-base
-%%DATADIR%%/plugins/other/receipts/images/.svn/text-base/confirmed.gif.svn-base
-%%DATADIR%%/plugins/other/receipts/images/.svn/text-base/unconfirmed.gif.svn-base
-%%DATADIR%%/plugins/other/receipts/images/confirmed.gif
-%%DATADIR%%/plugins/other/receipts/images/unconfirmed.gif
-%%DATADIR%%/plugins/other/receipts/license.terms
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/all-wcprops
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/entries
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/format
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/prop-base/de.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/prop-base/pl.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/prop-base/ru.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/text-base/de.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/text-base/pl.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/.svn/text-base/ru.msg.svn-base
-%%DATADIR%%/plugins/other/receipts/msgs/de.msg
-%%DATADIR%%/plugins/other/receipts/msgs/pl.msg
-%%DATADIR%%/plugins/other/receipts/msgs/ru.msg
-%%DATADIR%%/plugins/other/receipts/receipts.tcl
-%%DATADIR%%/plugins/other/receipts/recentstatus.tcl
-%%DATADIR%%/plugins/other/renju/msgs/ru.msg
-%%DATADIR%%/plugins/other/renju/pixmaps/black/b.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/center.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/icondef.xml
-%%DATADIR%%/plugins/other/renju/pixmaps/black/left.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/left_bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/left_top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/middle.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/right.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/right_bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/right_top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/black/w.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/b.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/center.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/icondef.xml
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/left.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/left_bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/left_top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/middle.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/right.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/right_bot.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/right_top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/top.gif
-%%DATADIR%%/plugins/other/renju/pixmaps/stones/w.gif
-%%DATADIR%%/plugins/other/renju/proto
-%%DATADIR%%/plugins/other/renju/renju.tcl
-%%DATADIR%%/plugins/other/reversi/msgs/es.msg
-%%DATADIR%%/plugins/other/reversi/msgs/nl.msg
-%%DATADIR%%/plugins/other/reversi/msgs/pl.msg
-%%DATADIR%%/plugins/other/reversi/msgs/ru.msg
-%%DATADIR%%/plugins/other/reversi/msgs/uk.msg
-%%DATADIR%%/plugins/other/reversi/pixmaps/checkers/b.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/checkers/bf.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/checkers/icondef.xml
-%%DATADIR%%/plugins/other/reversi/pixmaps/checkers/w.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/checkers/wf.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/xboard/b.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/xboard/bf.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/xboard/icondef.xml
-%%DATADIR%%/plugins/other/reversi/pixmaps/xboard/w.gif
-%%DATADIR%%/plugins/other/reversi/pixmaps/xboard/wf.gif
-%%DATADIR%%/plugins/other/reversi/proto
-%%DATADIR%%/plugins/other/reversi/reversi.tcl
-%%DATADIR%%/plugins/other/socials/ChangeLog
-%%DATADIR%%/plugins/other/socials/README
-%%DATADIR%%/plugins/other/socials/socials.en
-%%DATADIR%%/plugins/other/socials/socials.tcl
-%%DATADIR%%/plugins/other/spy/msgs/de.msg
-%%DATADIR%%/plugins/other/spy/msgs/es.msg
-%%DATADIR%%/plugins/other/spy/msgs/pl.msg
-%%DATADIR%%/plugins/other/spy/msgs/ru.msg
-%%DATADIR%%/plugins/other/spy/msgs/uk.msg
-%%DATADIR%%/plugins/other/spy/spy.tcl
-%%DATADIR%%/plugins/other/spyiq/spyiq.tcl
-%%DATADIR%%/plugins/other/traffic/Changelog
-%%DATADIR%%/plugins/other/traffic/msgs/de.msg
-%%DATADIR%%/plugins/other/traffic/msgs/es.msg
-%%DATADIR%%/plugins/other/traffic/msgs/pl.msg
-%%DATADIR%%/plugins/other/traffic/msgs/ru.msg
-%%DATADIR%%/plugins/other/traffic/msgs/uk.msg
-%%DATADIR%%/plugins/other/traffic/traffic.tcl
-%%DATADIR%%/plugins/other/traffic/version.txt
-%%DATADIR%%/plugins/other/whiteboard/ChangeLog
-%%DATADIR%%/plugins/other/whiteboard/msgs/de.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/es.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/nl.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/pl.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/ro.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/ru.msg
-%%DATADIR%%/plugins/other/whiteboard/msgs/uk.msg
-%%DATADIR%%/plugins/other/whiteboard/svgrender.tcl
-%%DATADIR%%/plugins/other/whiteboard/whiteboard.tcl
-%%DATADIR%%/plugins/pep/user_activity.tcl
-%%DATADIR%%/plugins/pep/user_location.tcl
-%%DATADIR%%/plugins/pep/user_mood.tcl
-%%DATADIR%%/plugins/pep/user_tune.tcl
-%%DATADIR%%/plugins/richtext/chatlog.tcl
-%%DATADIR%%/plugins/richtext/emoticons.tcl
-%%DATADIR%%/plugins/richtext/highlight.tcl
-%%DATADIR%%/plugins/richtext/stylecodes.tcl
-%%DATADIR%%/plugins/richtext/urls.tcl
-%%DATADIR%%/plugins/roster/annotations.tcl
-%%DATADIR%%/plugins/roster/backup.tcl
-%%DATADIR%%/plugins/roster/bkup_annotations.tcl
-%%DATADIR%%/plugins/roster/bkup_conferences.tcl
-%%DATADIR%%/plugins/roster/cache_categories.tcl
-%%DATADIR%%/plugins/roster/conferenceinfo.tcl
-%%DATADIR%%/plugins/roster/conferences.tcl
-%%DATADIR%%/plugins/roster/fetch_nicknames.tcl
-%%DATADIR%%/plugins/roster/roster_delimiter.tcl
-%%DATADIR%%/plugins/roster/rosterx.tcl
-%%DATADIR%%/plugins/search/browser.tcl
-%%DATADIR%%/plugins/search/chat.tcl
-%%DATADIR%%/plugins/search/custom.tcl
-%%DATADIR%%/plugins/search/headlines.tcl
-%%DATADIR%%/plugins/search/logger.tcl
-%%DATADIR%%/plugins/search/rawxml.tcl
-%%DATADIR%%/plugins/search/search.tcl
-%%DATADIR%%/plugins/search/spanel.tcl
-%%DATADIR%%/plugins/si/ibb.tcl
-%%DATADIR%%/plugins/si/iqibb.tcl
-%%DATADIR%%/plugins/si/socks5.tcl
-%%DATADIR%%/plugins/unix/dockingtray.tcl
-%%DATADIR%%/plugins/unix/icon.tcl
-%%DATADIR%%/plugins/unix/menu.tcl
-%%DATADIR%%/plugins/unix/menu8.4.tcl
-%%DATADIR%%/plugins/unix/systray.tcl
-%%DATADIR%%/plugins/unix/tktray.tcl
-%%DATADIR%%/plugins/unix/wmdock.tcl
-%%DATADIR%%/plugins/windows/console.tcl
-%%DATADIR%%/plugins/windows/mousewheel.tcl
-%%DATADIR%%/plugins/windows/taskbar.tcl
-%%DATADIR%%/presence.tcl
-%%DATADIR%%/privacy.tcl
-%%DATADIR%%/private.tcl
-%%DATADIR%%/pubsub.tcl
-%%DATADIR%%/register.tcl
-%%DATADIR%%/richtext.tcl
-%%DATADIR%%/roster.tcl
-%%DATADIR%%/search.tcl
-%%DATADIR%%/si.tcl
-%%DATADIR%%/sounds/default/chat_their_message.wav
-%%DATADIR%%/sounds/default/connected.wav
-%%DATADIR%%/sounds/default/groupchat_server_message.wav
-%%DATADIR%%/sounds/default/groupchat_their_message.wav
-%%DATADIR%%/sounds/default/groupchat_their_message_to_me.wav
-%%DATADIR%%/sounds/default/presence_available.wav
-%%DATADIR%%/sounds/default/presence_unavailable.wav
-%%DATADIR%%/sounds/psi/chat_their_message.wav
-%%DATADIR%%/sounds/psi/connected.wav
-%%DATADIR%%/sounds/psi/groupchat_server_message.wav
-%%DATADIR%%/sounds/psi/groupchat_their_message.wav
-%%DATADIR%%/sounds/psi/groupchat_their_message_to_me.wav
-%%DATADIR%%/sounds/psi/presence_available.wav
-%%DATADIR%%/sounds/psi/presence_unavailable.wav
-%%DATADIR%%/splash.tcl
-%%DATADIR%%/tclxml/pkgIndex.tcl
-%%DATADIR%%/tclxml/sgml-8.1.tcl
-%%DATADIR%%/tclxml/sgmlparser.tcl
-%%DATADIR%%/tclxml/tclparser-8.1.tcl
-%%DATADIR%%/tclxml/xml-8.1.tcl
-%%DATADIR%%/tclxml/xml__tcl.tcl
-%%DATADIR%%/tkabbur.tcl
-%%DATADIR%%/trans.tcl
-%%DATADIR%%/trans/de.msg
-%%DATADIR%%/trans/es.msg
-%%DATADIR%%/trans/pl.msg
-%%DATADIR%%/trans/ru.msg
-%%DATADIR%%/trans/uk.msg
-%%DATADIR%%/userinfo.tcl
-%%DATADIR%%/utils.tcl
-%%DATADIR%%/xmppmime.tcl