summaryrefslogtreecommitdiff
path: root/net-im
diff options
context:
space:
mode:
authorSergey A. Osokin <osa@FreeBSD.org>2003-11-14 15:10:05 +0000
committerSergey A. Osokin <osa@FreeBSD.org>2003-11-14 15:10:05 +0000
commita2aa5dfa475745e7bc1ea95534ba7d66d8ad2eeb (patch)
treedba4c98641a9b843426bf7a7eeb6c59e905ce77e /net-im
parentFix breakage during install target; linux port uses rpm to check for (diff)
Add a new port.
Tkabber is a free client for an instant messaging system called Jabber. It is written in Tcl/Tk and supports many features like support of unicode, ssl support, http proxy, file transfers and support of multi-user conference protocol. Submitted by: Alexander Timoshenko <gonzo@univ.kiev.ua> PR: 58389
Notes
Notes: svn path=/head/; revision=93955
Diffstat (limited to 'net-im')
-rw-r--r--net-im/tkabber-devel/Makefile50
-rw-r--r--net-im/tkabber-devel/distinfo1
-rw-r--r--net-im/tkabber-devel/files/patch-default.tcl13
-rw-r--r--net-im/tkabber-devel/files/patch-tkabber.tcl10
-rw-r--r--net-im/tkabber-devel/pkg-descr6
-rw-r--r--net-im/tkabber-devel/pkg-plist432
-rw-r--r--net-im/tkabber/Makefile50
-rw-r--r--net-im/tkabber/distinfo1
-rw-r--r--net-im/tkabber/files/patch-default.tcl13
-rw-r--r--net-im/tkabber/files/patch-tkabber.tcl10
-rw-r--r--net-im/tkabber/pkg-descr6
-rw-r--r--net-im/tkabber/pkg-plist432
12 files changed, 1024 insertions, 0 deletions
diff --git a/net-im/tkabber-devel/Makefile b/net-im/tkabber-devel/Makefile
new file mode 100644
index 000000000000..27d0e354c406
--- /dev/null
+++ b/net-im/tkabber-devel/Makefile
@@ -0,0 +1,50 @@
+# New ports collection makefile for: tkabber
+# Date created: 22 October 2003
+# Whom: Alexander Timoshenko <gonzo@univ.kiev.ua>
+#
+# $FreeBSD$
+#
+
+PORTNAME= tkabber
+PORTVERSION= 0.9.5b
+CATEGORIES= net
+MASTER_SITES= http://www.jabberstudio.org/files/tkabber/
+DISTNAME= tkabber-0.9.5beta
+
+MAINTAINER= gonzo@univ.kiev.ua
+COMMENT= Tcl/Tk based jabber client
+
+RUN_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84 \
+ ${LOCALBASE}/lib/tcllib1.3/pkgIndex.tcl:${PORTSDIR}/devel/tcllib \
+ ${LOCALBASE}/lib/bwidget/pkgIndex.tcl:${PORTSDIR}/x11-toolkits/bwidget
+
+WRKSRC= ${WRKDIR}/${DISTNAME}
+NO_BUILD= yes
+
+SUBDIRS = emoticons-tkabber \
+ plugins \
+ jabberlib-tclxml \
+ pixmaps \
+ sounds \
+ textundo \
+ msgs \
+ mclistbox-1.02
+
+do-install:
+ ${ECHO} -e "#!/bin/sh\nexec wish8.4 ${DATADIR}/tkabber.tcl -name tkabber \"\$$@\"\n" > ${PREFIX}/bin/tkabber
+ ${CHMOD} +x ${PREFIX}/bin/tkabber
+ ${MKDIR} ${DATADIR}
+ ${CP} ${WRKSRC}/*.tcl ${WRKSRC}/*.xrdb ${DATADIR}
+.for i in ${SUBDIRS}
+ ${CP} -R ${WRKSRC}/${i} ${DATADIR}
+.endfor
+ ${MKDIR} ${EXAMPLESDIR}
+ ${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for i in tkabber.html tkabber.xml
+ ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/net-im/tkabber-devel/distinfo b/net-im/tkabber-devel/distinfo
new file mode 100644
index 000000000000..2239008fc161
--- /dev/null
+++ b/net-im/tkabber-devel/distinfo
@@ -0,0 +1 @@
+MD5 (tkabber-0.9.5beta.tar.gz) = 13c62b75d6c80ebbbff5eb3e9f2aa668
diff --git a/net-im/tkabber-devel/files/patch-default.tcl b/net-im/tkabber-devel/files/patch-default.tcl
new file mode 100644
index 000000000000..a305a389891e
--- /dev/null
+++ b/net-im/tkabber-devel/files/patch-default.tcl
@@ -0,0 +1,13 @@
+--- default.tcl.orig Fri Oct 17 17:01:09 2003
++++ default.tcl Fri Oct 17 17:02:24 2003
+@@ -4,8 +4,8 @@
+
+ set loginconf(user) ""
+ set loginconf(password) ""
+-set loginconf(resource) test
+-set loginconf(server) localhost
++set loginconf(resource) TKabber
++set loginconf(server) jabber.ru
+ set loginconf(usealtserver) 0
+ set loginconf(altserver) ""
+ set loginconf(port) 5222
diff --git a/net-im/tkabber-devel/files/patch-tkabber.tcl b/net-im/tkabber-devel/files/patch-tkabber.tcl
new file mode 100644
index 000000000000..b09a24981c17
--- /dev/null
+++ b/net-im/tkabber-devel/files/patch-tkabber.tcl
@@ -0,0 +1,10 @@
+--- tkabber.tcl.orig Mon Jun 9 13:00:36 2003
++++ tkabber.tcl Fri Oct 17 15:45:06 2003
+@@ -1,6 +1,6 @@
+ #!/bin/sh
+ # the next line restarts using the correct interpreter \
+-exec wish "$0" -name tkabber "$@"
++exec wish8.4 "$0" -name tkabber "$@"
+
+ # $Id: tkabber.tcl,v 1.159 2003/05/30 18:05:27 aleksey Exp $
+
diff --git a/net-im/tkabber-devel/pkg-descr b/net-im/tkabber-devel/pkg-descr
new file mode 100644
index 000000000000..a6b84e265228
--- /dev/null
+++ b/net-im/tkabber-devel/pkg-descr
@@ -0,0 +1,6 @@
+Tkabber is a free client for an instant messaging system called
+Jabber. It is written in Tcl/Tk and supports many features like
+support of unicode, ssl support, http proxy, file transfers and
+support of multi-user conference protocol.
+
+WWW: http://tkabber.jabber.ru/
diff --git a/net-im/tkabber-devel/pkg-plist b/net-im/tkabber-devel/pkg-plist
new file mode 100644
index 000000000000..b31d7170750d
--- /dev/null
+++ b/net-im/tkabber-devel/pkg-plist
@@ -0,0 +1,432 @@
+bin/tkabber
+%%DATADIR%%/emoticons-tkabber/icondef.xml
+%%DATADIR%%/emoticons-tkabber/FaceStartled.gif
+%%DATADIR%%/emoticons-tkabber/FaceStraight.gif
+%%DATADIR%%/emoticons-tkabber/beer.gif
+%%DATADIR%%/emoticons-tkabber/facegrinning.gif
+%%DATADIR%%/emoticons-tkabber/facehappy.gif
+%%DATADIR%%/emoticons-tkabber/facesad.gif
+%%DATADIR%%/emoticons-tkabber/facewinking.gif
+%%DATADIR%%/emoticons-tkabber/faceyukky.gif
+%%DATADIR%%/emoticons-tkabber/FaceIronic.gif
+%%DATADIR%%/pixmaps/icq/docking/available-xa.gif
+%%DATADIR%%/pixmaps/icq/docking/available-chat.gif
+%%DATADIR%%/pixmaps/icq/docking/available-dnd.gif
+%%DATADIR%%/pixmaps/icq/docking/available-away.gif
+%%DATADIR%%/pixmaps/icq/docking/available.gif
+%%DATADIR%%/pixmaps/icq/docking/invisible.gif
+%%DATADIR%%/pixmaps/icq/docking/unavailable.gif
+%%DATADIR%%/pixmaps/icq/roster/unavailable.gif
+%%DATADIR%%/pixmaps/icq/roster/available-chat.gif
+%%DATADIR%%/pixmaps/icq/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/icq/roster/available-xa.gif
+%%DATADIR%%/pixmaps/icq/roster/available.gif
+%%DATADIR%%/pixmaps/icq/roster/invisible.gif
+%%DATADIR%%/pixmaps/icq/roster/message.gif
+%%DATADIR%%/pixmaps/icq/roster/send.gif
+%%DATADIR%%/pixmaps/icq/roster/stalker.gif
+%%DATADIR%%/pixmaps/icq/roster/available-away.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/icq/tkabber/jb.gif
+%%DATADIR%%/pixmaps/icq/tkabber/mainlogo.gif
+%%DATADIR%%/pixmaps/icq/tkabber/new-msg.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-xa.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-chat.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-away.gif
+%%DATADIR%%/pixmaps/feather22/roster/available.gif
+%%DATADIR%%/pixmaps/feather22/roster/invisible.gif
+%%DATADIR%%/pixmaps/feather22/roster/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/browser/jud.gif
+%%DATADIR%%/pixmaps/gabber/browser/group_on.gif
+%%DATADIR%%/pixmaps/gabber/browser/icq_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/aim_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/msn_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/user.gif
+%%DATADIR%%/pixmaps/gabber/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/gabber/roster/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-chat.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-xa.gif
+%%DATADIR%%/pixmaps/gabber/roster/available.gif
+%%DATADIR%%/pixmaps/gabber/roster/glade-groupchat-menu.xpm
+%%DATADIR%%/pixmaps/gabber/roster/group-closed.gif
+%%DATADIR%%/pixmaps/gabber/roster/group-opened.gif
+%%DATADIR%%/pixmaps/gabber/roster/group_off.gif
+%%DATADIR%%/pixmaps/gabber/roster/group_on.gif
+%%DATADIR%%/pixmaps/gabber/roster/stalker.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-away.gif
+%%DATADIR%%/pixmaps/gabber/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/sms.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_away.xpm
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/jb.gif
+%%DATADIR%%/pixmaps/gabber/docking/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-chat.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-dnd.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-xa.gif
+%%DATADIR%%/pixmaps/gabber/docking/available.gif
+%%DATADIR%%/pixmaps/gabber/docking/invisible.gif
+%%DATADIR%%/pixmaps/gabber/docking/tkabber.ico
+%%DATADIR%%/pixmaps/gabber/docking/available-away.gif
+%%DATADIR%%/pixmaps/default/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/default/browser/glade-message.gif
+%%DATADIR%%/pixmaps/default/browser/group_on.gif
+%%DATADIR%%/pixmaps/default/browser/icq_online.gif
+%%DATADIR%%/pixmaps/default/browser/jud.gif
+%%DATADIR%%/pixmaps/default/browser/msn_online.gif
+%%DATADIR%%/pixmaps/default/browser/service-jabber.gif
+%%DATADIR%%/pixmaps/default/browser/unknown.gif
+%%DATADIR%%/pixmaps/default/browser/user.gif
+%%DATADIR%%/pixmaps/default/browser/aim_online.gif
+%%DATADIR%%/pixmaps/default/docking/unavailable.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/invisible.gif
+%%DATADIR%%/pixmaps/default/docking/tkabber.ico
+%%DATADIR%%/pixmaps/default/docking/available-away.gif
+%%DATADIR%%/pixmaps/default/roster/unavailable.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/group-closed.gif
+%%DATADIR%%/pixmaps/default/roster/group-opened.gif
+%%DATADIR%%/pixmaps/default/roster/group_off.gif
+%%DATADIR%%/pixmaps/default/roster/group_on.gif
+%%DATADIR%%/pixmaps/default/roster/invisible.gif
+%%DATADIR%%/pixmaps/default/roster/stalker.gif
+%%DATADIR%%/pixmaps/default/roster/available-away.gif
+%%DATADIR%%/pixmaps/default/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/default/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/default/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/default/services/aim_online.xpm
+%%DATADIR%%/pixmaps/default/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/default/services/icq_away.xpm
+%%DATADIR%%/pixmaps/default/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/default/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/default/services/icq_online.xpm
+%%DATADIR%%/pixmaps/default/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/default/services/msn_away.xpm
+%%DATADIR%%/pixmaps/default/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/default/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/default/services/msn_online.xpm
+%%DATADIR%%/pixmaps/default/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/default/services/rss.xpm
+%%DATADIR%%/pixmaps/default/services/rss2.xpm
+%%DATADIR%%/pixmaps/default/services/rss3.xpm
+%%DATADIR%%/pixmaps/default/services/sms.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/default/services/aim_away.xpm
+%%DATADIR%%/pixmaps/default/tkabber/search_fw.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-online.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/jb.gif
+%%DATADIR%%/pixmaps/default/tkabber/mainlogo.gif
+%%DATADIR%%/pixmaps/default/tkabber/new-msg.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_bk.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_case.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_exact.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/jajc/browser/jud.gif
+%%DATADIR%%/pixmaps/jajc/browser/group_on.gif
+%%DATADIR%%/pixmaps/jajc/browser/icq_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/aim_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/msn_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/user.gif
+%%DATADIR%%/pixmaps/jajc/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/jajc/docking/tkabber.ico
+%%DATADIR%%/pixmaps/jajc/roster/unavailable.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-chat.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-xa.gif
+%%DATADIR%%/pixmaps/jajc/roster/available.gif
+%%DATADIR%%/pixmaps/jajc/roster/group-closed.gif
+%%DATADIR%%/pixmaps/jajc/roster/group-opened.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_closed.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_off.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_on.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_opened.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-away.gif
+%%DATADIR%%/pixmaps/jajc/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/sms.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_away.xpm
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/jb.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-xa.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-chat.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-away.gif
+%%DATADIR%%/pixmaps/jarl/roster/available.gif
+%%DATADIR%%/pixmaps/jarl/roster/invisible.gif
+%%DATADIR%%/pixmaps/jarl/roster/unavailable.gif
+%%DATADIR%%/pixmaps/psi/browser/aim_online.gif
+%%DATADIR%%/pixmaps/psi/browser/icq_online.gif
+%%DATADIR%%/pixmaps/psi/browser/msn_online.gif
+%%DATADIR%%/pixmaps/psi/browser/user.gif
+%%DATADIR%%/pixmaps/psi/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/psi/roster/unavailable.gif
+%%DATADIR%%/pixmaps/psi/roster/available-chat.gif
+%%DATADIR%%/pixmaps/psi/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/psi/roster/available-xa.gif
+%%DATADIR%%/pixmaps/psi/roster/available.gif
+%%DATADIR%%/pixmaps/psi/roster/group-closed.gif
+%%DATADIR%%/pixmaps/psi/roster/group-opened.gif
+%%DATADIR%%/pixmaps/psi/roster/stalker.gif
+%%DATADIR%%/pixmaps/psi/roster/available-away.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/psi/tkabber/jb.gif
+%%DATADIR%%/jabberlib-tclxml/tclxml/xpath.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgml-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgml-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgmlparser.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/tclparser-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/tclparser-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml__tcl.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xmldep.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/pkgIndex.tcl
+%%DATADIR%%/jabberlib-tclxml/jabberlib.tcl
+%%DATADIR%%/jabberlib-tclxml/pkgIndex.tcl
+%%DATADIR%%/jabberlib-tclxml/wrapper.tcl
+%%DATADIR%%/plugins/chat/unisymbols.tcl
+%%DATADIR%%/plugins/chat/complete_last_nick.tcl
+%%DATADIR%%/plugins/chat/completion.tcl
+%%DATADIR%%/plugins/chat/draw_encrypted.tcl
+%%DATADIR%%/plugins/chat/draw_error.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_signed.tcl
+%%DATADIR%%/plugins/chat/draw_timestamp.tcl
+%%DATADIR%%/plugins/chat/empty_body.tcl
+%%DATADIR%%/plugins/chat/events.tcl
+%%DATADIR%%/plugins/chat/exec_command.tcl
+%%DATADIR%%/plugins/chat/history.tcl
+%%DATADIR%%/plugins/chat/logger.tcl
+%%DATADIR%%/plugins/chat/me_command.tcl
+%%DATADIR%%/plugins/chat/nick_command.tcl
+%%DATADIR%%/plugins/chat/send_message.tcl
+%%DATADIR%%/plugins/chat/clear.tcl
+%%DATADIR%%/plugins/general/httpconn.tcl
+%%DATADIR%%/plugins/general/clientinfo.tcl
+%%DATADIR%%/plugins/general/conferenceinfo.tcl
+%%DATADIR%%/plugins/general/message_archive.tcl
+%%DATADIR%%/plugins/general/rawxml.tcl
+%%DATADIR%%/plugins/general/stats.tcl
+%%DATADIR%%/plugins/general/tkcon.tcl
+%%DATADIR%%/plugins/general/autoaway.tcl
+%%DATADIR%%/plugins/iq/browse.tcl
+%%DATADIR%%/plugins/iq/oob.tcl
+%%DATADIR%%/plugins/iq/time.tcl
+%%DATADIR%%/plugins/iq/version.tcl
+%%DATADIR%%/plugins/jidlink/dtcp.tcl
+%%DATADIR%%/plugins/jidlink/ibb.tcl
+%%DATADIR%%/plugins/unix/dockingtray.tcl
+%%DATADIR%%/plugins/unix/ispell.tcl
+%%DATADIR%%/plugins/unix/menu.tcl
+%%DATADIR%%/plugins/unix/menu8.4.tcl
+%%DATADIR%%/plugins/unix/wmdock.tcl
+%%DATADIR%%/plugins/windows/mousewheel.tcl
+%%DATADIR%%/plugins/windows/taskbar.tcl
+%%DATADIR%%/sounds/default/groupchat_their_message.wav
+%%DATADIR%%/sounds/default/connected.wav
+%%DATADIR%%/sounds/default/groupchat_server_message.wav
+%%DATADIR%%/sounds/default/chat_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%%/msgs/ua.msg
+%%DATADIR%%/msgs/de.msg
+%%DATADIR%%/msgs/en.msg
+%%DATADIR%%/msgs/eo.msg
+%%DATADIR%%/msgs/es.msg
+%%DATADIR%%/msgs/fr.msg
+%%DATADIR%%/msgs/it.msg
+%%DATADIR%%/msgs/ro.msg
+%%DATADIR%%/msgs/ru.msg
+%%DATADIR%%/msgs/ru.rc
+%%DATADIR%%/msgs/ca.msg
+%%DATADIR%%/textundo/dkflib.tcl
+%%DATADIR%%/textundo/textundo.tcl
+%%DATADIR%%/mclistbox-1.02/mclistbox.tcl
+%%DATADIR%%/search.tcl
+%%DATADIR%%/roster_nested.tcl
+%%DATADIR%%/roster.tcl
+%%DATADIR%%/register.tcl
+%%DATADIR%%/privacy.tcl
+%%DATADIR%%/presence.tcl
+%%DATADIR%%/plugins.tcl
+%%DATADIR%%/negotiate.tcl
+%%DATADIR%%/muc.tcl
+%%DATADIR%%/messages.tcl
+%%DATADIR%%/login.tcl
+%%DATADIR%%/joingrdialog.tcl
+%%DATADIR%%/jidlink.tcl
+%%DATADIR%%/itemedit.tcl
+%%DATADIR%%/iq.tcl
+%%DATADIR%%/iface.tcl
+%%DATADIR%%/hooks.tcl
+%%DATADIR%%/gpgme.tcl
+%%DATADIR%%/filters.tcl
+%%DATADIR%%/filetransfer.tcl
+%%DATADIR%%/emoticons.tcl
+%%DATADIR%%/disco.tcl
+%%DATADIR%%/default.tcl
+%%DATADIR%%/datagathering.tcl
+%%DATADIR%%/custom.tcl
+%%DATADIR%%/chats.tcl
+%%DATADIR%%/bwidget_workarounds.tcl
+%%DATADIR%%/browser.tcl
+%%DATADIR%%/balloon.tcl
+%%DATADIR%%/avatars.tcl
+%%DATADIR%%/Tclx.tcl
+%%DATADIR%%/default.xrdb
+%%DATADIR%%/xmppmime.tcl
+%%DATADIR%%/utils.tcl
+%%DATADIR%%/userinfo.tcl
+%%DATADIR%%/tkabber.tcl
+%%DATADIR%%/splash.tcl
+%%DATADIR%%/sound.tcl
+%%EXAMPLESDIR%%/tools/howto.txt
+%%EXAMPLESDIR%%/tools/jbot
+%%EXAMPLESDIR%%/tools/jsend.tcl
+%%EXAMPLESDIR%%/tools/rssbot
+%%EXAMPLESDIR%%/tools/rssbot.tcl
+%%EXAMPLESDIR%%/black.xrdb
+%%EXAMPLESDIR%%/config.tcl
+%%EXAMPLESDIR%%/dark.xrdb
+%%EXAMPLESDIR%%/ermine.xrdb
+%%EXAMPLESDIR%%/green.xrdb
+%%EXAMPLESDIR%%/ice.xrdb
+%%EXAMPLESDIR%%/light.xrdb
+%%EXAMPLESDIR%%/mtr-config.tcl
+%%EXAMPLESDIR%%/teo-config.tcl
+%%EXAMPLESDIR%%/teopetuk.xrdb
+%%EXAMPLESDIR%%/warm.xrdb
+%%EXAMPLESDIR%%/tkabber_setstatus
+%%EXAMPLESDIR%%/dark2.xrdb
+%%PORTDOCS%%%%DOCSDIR%%/tkabber.xml
+%%PORTDOCS%%%%DOCSDIR%%/tkabber.html
+@dirrm %%EXAMPLESDIR%%/tools
+@dirrm %%EXAMPLESDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm %%DATADIR%%/emoticons-tkabber
+@dirrm %%DATADIR%%/pixmaps/icq/docking
+@dirrm %%DATADIR%%/pixmaps/icq/roster
+@dirrm %%DATADIR%%/pixmaps/icq/tkabber
+@dirrm %%DATADIR%%/pixmaps/icq
+@dirrm %%DATADIR%%/pixmaps/feather22/roster
+@dirrm %%DATADIR%%/pixmaps/feather22
+@dirrm %%DATADIR%%/pixmaps/gabber/browser
+@dirrm %%DATADIR%%/pixmaps/gabber/roster
+@dirrm %%DATADIR%%/pixmaps/gabber/services
+@dirrm %%DATADIR%%/pixmaps/gabber/tkabber
+@dirrm %%DATADIR%%/pixmaps/gabber/docking
+@dirrm %%DATADIR%%/pixmaps/gabber
+@dirrm %%DATADIR%%/pixmaps/default/browser
+@dirrm %%DATADIR%%/pixmaps/default/docking
+@dirrm %%DATADIR%%/pixmaps/default/roster
+@dirrm %%DATADIR%%/pixmaps/default/services
+@dirrm %%DATADIR%%/pixmaps/default/tkabber
+@dirrm %%DATADIR%%/pixmaps/default
+@dirrm %%DATADIR%%/pixmaps/jajc/browser
+@dirrm %%DATADIR%%/pixmaps/jajc/docking
+@dirrm %%DATADIR%%/pixmaps/jajc/roster
+@dirrm %%DATADIR%%/pixmaps/jajc/services
+@dirrm %%DATADIR%%/pixmaps/jajc/tkabber
+@dirrm %%DATADIR%%/pixmaps/jajc
+@dirrm %%DATADIR%%/pixmaps/jarl/roster
+@dirrm %%DATADIR%%/pixmaps/jarl
+@dirrm %%DATADIR%%/pixmaps/psi/browser
+@dirrm %%DATADIR%%/pixmaps/psi/roster
+@dirrm %%DATADIR%%/pixmaps/psi/tkabber
+@dirrm %%DATADIR%%/pixmaps/psi
+@dirrm %%DATADIR%%/pixmaps
+@dirrm %%DATADIR%%/jabberlib-tclxml/tclxml
+@dirrm %%DATADIR%%/jabberlib-tclxml
+@dirrm %%DATADIR%%/plugins/chat
+@dirrm %%DATADIR%%/plugins/general
+@dirrm %%DATADIR%%/plugins/iq
+@dirrm %%DATADIR%%/plugins/jidlink
+@dirrm %%DATADIR%%/plugins/unix
+@dirrm %%DATADIR%%/plugins/windows
+@dirrm %%DATADIR%%/plugins
+@dirrm %%DATADIR%%/sounds/default
+@dirrm %%DATADIR%%/sounds
+@dirrm %%DATADIR%%/msgs
+@dirrm %%DATADIR%%/textundo
+@dirrm %%DATADIR%%/mclistbox-1.02
+@dirrm %%DATADIR%%
diff --git a/net-im/tkabber/Makefile b/net-im/tkabber/Makefile
new file mode 100644
index 000000000000..27d0e354c406
--- /dev/null
+++ b/net-im/tkabber/Makefile
@@ -0,0 +1,50 @@
+# New ports collection makefile for: tkabber
+# Date created: 22 October 2003
+# Whom: Alexander Timoshenko <gonzo@univ.kiev.ua>
+#
+# $FreeBSD$
+#
+
+PORTNAME= tkabber
+PORTVERSION= 0.9.5b
+CATEGORIES= net
+MASTER_SITES= http://www.jabberstudio.org/files/tkabber/
+DISTNAME= tkabber-0.9.5beta
+
+MAINTAINER= gonzo@univ.kiev.ua
+COMMENT= Tcl/Tk based jabber client
+
+RUN_DEPENDS= wish8.4:${PORTSDIR}/x11-toolkits/tk84 \
+ ${LOCALBASE}/lib/tcllib1.3/pkgIndex.tcl:${PORTSDIR}/devel/tcllib \
+ ${LOCALBASE}/lib/bwidget/pkgIndex.tcl:${PORTSDIR}/x11-toolkits/bwidget
+
+WRKSRC= ${WRKDIR}/${DISTNAME}
+NO_BUILD= yes
+
+SUBDIRS = emoticons-tkabber \
+ plugins \
+ jabberlib-tclxml \
+ pixmaps \
+ sounds \
+ textundo \
+ msgs \
+ mclistbox-1.02
+
+do-install:
+ ${ECHO} -e "#!/bin/sh\nexec wish8.4 ${DATADIR}/tkabber.tcl -name tkabber \"\$$@\"\n" > ${PREFIX}/bin/tkabber
+ ${CHMOD} +x ${PREFIX}/bin/tkabber
+ ${MKDIR} ${DATADIR}
+ ${CP} ${WRKSRC}/*.tcl ${WRKSRC}/*.xrdb ${DATADIR}
+.for i in ${SUBDIRS}
+ ${CP} -R ${WRKSRC}/${i} ${DATADIR}
+.endfor
+ ${MKDIR} ${EXAMPLESDIR}
+ ${CP} -R ${WRKSRC}/examples/* ${EXAMPLESDIR}
+.if !defined(NOPORTDOCS)
+ ${MKDIR} ${DOCSDIR}
+.for i in tkabber.html tkabber.xml
+ ${INSTALL_DATA} ${WRKSRC}/doc/${i} ${DOCSDIR}
+.endfor
+.endif
+
+.include <bsd.port.mk>
diff --git a/net-im/tkabber/distinfo b/net-im/tkabber/distinfo
new file mode 100644
index 000000000000..2239008fc161
--- /dev/null
+++ b/net-im/tkabber/distinfo
@@ -0,0 +1 @@
+MD5 (tkabber-0.9.5beta.tar.gz) = 13c62b75d6c80ebbbff5eb3e9f2aa668
diff --git a/net-im/tkabber/files/patch-default.tcl b/net-im/tkabber/files/patch-default.tcl
new file mode 100644
index 000000000000..a305a389891e
--- /dev/null
+++ b/net-im/tkabber/files/patch-default.tcl
@@ -0,0 +1,13 @@
+--- default.tcl.orig Fri Oct 17 17:01:09 2003
++++ default.tcl Fri Oct 17 17:02:24 2003
+@@ -4,8 +4,8 @@
+
+ set loginconf(user) ""
+ set loginconf(password) ""
+-set loginconf(resource) test
+-set loginconf(server) localhost
++set loginconf(resource) TKabber
++set loginconf(server) jabber.ru
+ set loginconf(usealtserver) 0
+ set loginconf(altserver) ""
+ set loginconf(port) 5222
diff --git a/net-im/tkabber/files/patch-tkabber.tcl b/net-im/tkabber/files/patch-tkabber.tcl
new file mode 100644
index 000000000000..b09a24981c17
--- /dev/null
+++ b/net-im/tkabber/files/patch-tkabber.tcl
@@ -0,0 +1,10 @@
+--- tkabber.tcl.orig Mon Jun 9 13:00:36 2003
++++ tkabber.tcl Fri Oct 17 15:45:06 2003
+@@ -1,6 +1,6 @@
+ #!/bin/sh
+ # the next line restarts using the correct interpreter \
+-exec wish "$0" -name tkabber "$@"
++exec wish8.4 "$0" -name tkabber "$@"
+
+ # $Id: tkabber.tcl,v 1.159 2003/05/30 18:05:27 aleksey Exp $
+
diff --git a/net-im/tkabber/pkg-descr b/net-im/tkabber/pkg-descr
new file mode 100644
index 000000000000..a6b84e265228
--- /dev/null
+++ b/net-im/tkabber/pkg-descr
@@ -0,0 +1,6 @@
+Tkabber is a free client for an instant messaging system called
+Jabber. It is written in Tcl/Tk and supports many features like
+support of unicode, ssl support, http proxy, file transfers and
+support of multi-user conference protocol.
+
+WWW: http://tkabber.jabber.ru/
diff --git a/net-im/tkabber/pkg-plist b/net-im/tkabber/pkg-plist
new file mode 100644
index 000000000000..b31d7170750d
--- /dev/null
+++ b/net-im/tkabber/pkg-plist
@@ -0,0 +1,432 @@
+bin/tkabber
+%%DATADIR%%/emoticons-tkabber/icondef.xml
+%%DATADIR%%/emoticons-tkabber/FaceStartled.gif
+%%DATADIR%%/emoticons-tkabber/FaceStraight.gif
+%%DATADIR%%/emoticons-tkabber/beer.gif
+%%DATADIR%%/emoticons-tkabber/facegrinning.gif
+%%DATADIR%%/emoticons-tkabber/facehappy.gif
+%%DATADIR%%/emoticons-tkabber/facesad.gif
+%%DATADIR%%/emoticons-tkabber/facewinking.gif
+%%DATADIR%%/emoticons-tkabber/faceyukky.gif
+%%DATADIR%%/emoticons-tkabber/FaceIronic.gif
+%%DATADIR%%/pixmaps/icq/docking/available-xa.gif
+%%DATADIR%%/pixmaps/icq/docking/available-chat.gif
+%%DATADIR%%/pixmaps/icq/docking/available-dnd.gif
+%%DATADIR%%/pixmaps/icq/docking/available-away.gif
+%%DATADIR%%/pixmaps/icq/docking/available.gif
+%%DATADIR%%/pixmaps/icq/docking/invisible.gif
+%%DATADIR%%/pixmaps/icq/docking/unavailable.gif
+%%DATADIR%%/pixmaps/icq/roster/unavailable.gif
+%%DATADIR%%/pixmaps/icq/roster/available-chat.gif
+%%DATADIR%%/pixmaps/icq/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/icq/roster/available-xa.gif
+%%DATADIR%%/pixmaps/icq/roster/available.gif
+%%DATADIR%%/pixmaps/icq/roster/invisible.gif
+%%DATADIR%%/pixmaps/icq/roster/message.gif
+%%DATADIR%%/pixmaps/icq/roster/send.gif
+%%DATADIR%%/pixmaps/icq/roster/stalker.gif
+%%DATADIR%%/pixmaps/icq/roster/available-away.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/icq/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/icq/tkabber/jb.gif
+%%DATADIR%%/pixmaps/icq/tkabber/mainlogo.gif
+%%DATADIR%%/pixmaps/icq/tkabber/new-msg.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-xa.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-chat.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/feather22/roster/available-away.gif
+%%DATADIR%%/pixmaps/feather22/roster/available.gif
+%%DATADIR%%/pixmaps/feather22/roster/invisible.gif
+%%DATADIR%%/pixmaps/feather22/roster/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/browser/jud.gif
+%%DATADIR%%/pixmaps/gabber/browser/group_on.gif
+%%DATADIR%%/pixmaps/gabber/browser/icq_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/aim_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/msn_online.gif
+%%DATADIR%%/pixmaps/gabber/browser/user.gif
+%%DATADIR%%/pixmaps/gabber/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/gabber/roster/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-chat.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-xa.gif
+%%DATADIR%%/pixmaps/gabber/roster/available.gif
+%%DATADIR%%/pixmaps/gabber/roster/glade-groupchat-menu.xpm
+%%DATADIR%%/pixmaps/gabber/roster/group-closed.gif
+%%DATADIR%%/pixmaps/gabber/roster/group-opened.gif
+%%DATADIR%%/pixmaps/gabber/roster/group_off.gif
+%%DATADIR%%/pixmaps/gabber/roster/group_on.gif
+%%DATADIR%%/pixmaps/gabber/roster/stalker.gif
+%%DATADIR%%/pixmaps/gabber/roster/available-away.gif
+%%DATADIR%%/pixmaps/gabber/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/gabber/services/sms.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/gabber/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/gabber/services/aim_away.xpm
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/gabber/tkabber/jb.gif
+%%DATADIR%%/pixmaps/gabber/docking/unavailable.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-chat.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-dnd.gif
+%%DATADIR%%/pixmaps/gabber/docking/available-xa.gif
+%%DATADIR%%/pixmaps/gabber/docking/available.gif
+%%DATADIR%%/pixmaps/gabber/docking/invisible.gif
+%%DATADIR%%/pixmaps/gabber/docking/tkabber.ico
+%%DATADIR%%/pixmaps/gabber/docking/available-away.gif
+%%DATADIR%%/pixmaps/default/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/default/browser/glade-message.gif
+%%DATADIR%%/pixmaps/default/browser/group_on.gif
+%%DATADIR%%/pixmaps/default/browser/icq_online.gif
+%%DATADIR%%/pixmaps/default/browser/jud.gif
+%%DATADIR%%/pixmaps/default/browser/msn_online.gif
+%%DATADIR%%/pixmaps/default/browser/service-jabber.gif
+%%DATADIR%%/pixmaps/default/browser/unknown.gif
+%%DATADIR%%/pixmaps/default/browser/user.gif
+%%DATADIR%%/pixmaps/default/browser/aim_online.gif
+%%DATADIR%%/pixmaps/default/docking/unavailable.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/invisible.gif
+%%DATADIR%%/pixmaps/default/docking/tkabber.ico
+%%DATADIR%%/pixmaps/default/docking/available-away.gif
+%%DATADIR%%/pixmaps/default/roster/unavailable.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/group-closed.gif
+%%DATADIR%%/pixmaps/default/roster/group-opened.gif
+%%DATADIR%%/pixmaps/default/roster/group_off.gif
+%%DATADIR%%/pixmaps/default/roster/group_on.gif
+%%DATADIR%%/pixmaps/default/roster/invisible.gif
+%%DATADIR%%/pixmaps/default/roster/stalker.gif
+%%DATADIR%%/pixmaps/default/roster/available-away.gif
+%%DATADIR%%/pixmaps/default/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/default/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/default/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/default/services/aim_online.xpm
+%%DATADIR%%/pixmaps/default/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/default/services/icq_away.xpm
+%%DATADIR%%/pixmaps/default/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/default/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/default/services/icq_online.xpm
+%%DATADIR%%/pixmaps/default/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/default/services/msn_away.xpm
+%%DATADIR%%/pixmaps/default/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/default/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/default/services/msn_online.xpm
+%%DATADIR%%/pixmaps/default/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/default/services/rss.xpm
+%%DATADIR%%/pixmaps/default/services/rss2.xpm
+%%DATADIR%%/pixmaps/default/services/rss3.xpm
+%%DATADIR%%/pixmaps/default/services/sms.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/default/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/default/services/aim_away.xpm
+%%DATADIR%%/pixmaps/default/tkabber/search_fw.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-online.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/jb.gif
+%%DATADIR%%/pixmaps/default/tkabber/mainlogo.gif
+%%DATADIR%%/pixmaps/default/tkabber/new-msg.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_bk.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_case.gif
+%%DATADIR%%/pixmaps/default/tkabber/search_exact.gif
+%%DATADIR%%/pixmaps/default/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/jajc/browser/jud.gif
+%%DATADIR%%/pixmaps/jajc/browser/group_on.gif
+%%DATADIR%%/pixmaps/jajc/browser/icq_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/aim_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/msn_online.gif
+%%DATADIR%%/pixmaps/jajc/browser/user.gif
+%%DATADIR%%/pixmaps/jajc/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/jajc/docking/tkabber.ico
+%%DATADIR%%/pixmaps/jajc/roster/unavailable.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-chat.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-xa.gif
+%%DATADIR%%/pixmaps/jajc/roster/available.gif
+%%DATADIR%%/pixmaps/jajc/roster/group-closed.gif
+%%DATADIR%%/pixmaps/jajc/roster/group-opened.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_closed.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_off.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_on.gif
+%%DATADIR%%/pixmaps/jajc/roster/group_opened.gif
+%%DATADIR%%/pixmaps/jajc/roster/available-away.gif
+%%DATADIR%%/pixmaps/jajc/services/yahoo_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/icq_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/msn_xa.xpm
+%%DATADIR%%/pixmaps/jajc/services/sms.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_away.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_chat.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_dnd.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_offline.xpm
+%%DATADIR%%/pixmaps/jajc/services/yahoo_online.xpm
+%%DATADIR%%/pixmaps/jajc/services/aim_away.xpm
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/jajc/tkabber/jb.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-xa.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-chat.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/jarl/roster/available-away.gif
+%%DATADIR%%/pixmaps/jarl/roster/available.gif
+%%DATADIR%%/pixmaps/jarl/roster/invisible.gif
+%%DATADIR%%/pixmaps/jarl/roster/unavailable.gif
+%%DATADIR%%/pixmaps/psi/browser/aim_online.gif
+%%DATADIR%%/pixmaps/psi/browser/icq_online.gif
+%%DATADIR%%/pixmaps/psi/browser/msn_online.gif
+%%DATADIR%%/pixmaps/psi/browser/user.gif
+%%DATADIR%%/pixmaps/psi/browser/yahoo_online.gif
+%%DATADIR%%/pixmaps/psi/roster/unavailable.gif
+%%DATADIR%%/pixmaps/psi/roster/available-chat.gif
+%%DATADIR%%/pixmaps/psi/roster/available-dnd.gif
+%%DATADIR%%/pixmaps/psi/roster/available-xa.gif
+%%DATADIR%%/pixmaps/psi/roster/available.gif
+%%DATADIR%%/pixmaps/psi/roster/group-closed.gif
+%%DATADIR%%/pixmaps/psi/roster/group-opened.gif
+%%DATADIR%%/pixmaps/psi/roster/stalker.gif
+%%DATADIR%%/pixmaps/psi/roster/available-away.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-groupchat.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-new-user.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-offline.gif
+%%DATADIR%%/pixmaps/psi/tkabber/glade-online.gif
+%%DATADIR%%/pixmaps/psi/tkabber/jb.gif
+%%DATADIR%%/jabberlib-tclxml/tclxml/xpath.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgml-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgml-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/sgmlparser.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/tclparser-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/tclparser-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml-8.0.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml-8.1.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xml__tcl.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/xmldep.tcl
+%%DATADIR%%/jabberlib-tclxml/tclxml/pkgIndex.tcl
+%%DATADIR%%/jabberlib-tclxml/jabberlib.tcl
+%%DATADIR%%/jabberlib-tclxml/pkgIndex.tcl
+%%DATADIR%%/jabberlib-tclxml/wrapper.tcl
+%%DATADIR%%/plugins/chat/unisymbols.tcl
+%%DATADIR%%/plugins/chat/complete_last_nick.tcl
+%%DATADIR%%/plugins/chat/completion.tcl
+%%DATADIR%%/plugins/chat/draw_encrypted.tcl
+%%DATADIR%%/plugins/chat/draw_error.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_signed.tcl
+%%DATADIR%%/plugins/chat/draw_timestamp.tcl
+%%DATADIR%%/plugins/chat/empty_body.tcl
+%%DATADIR%%/plugins/chat/events.tcl
+%%DATADIR%%/plugins/chat/exec_command.tcl
+%%DATADIR%%/plugins/chat/history.tcl
+%%DATADIR%%/plugins/chat/logger.tcl
+%%DATADIR%%/plugins/chat/me_command.tcl
+%%DATADIR%%/plugins/chat/nick_command.tcl
+%%DATADIR%%/plugins/chat/send_message.tcl
+%%DATADIR%%/plugins/chat/clear.tcl
+%%DATADIR%%/plugins/general/httpconn.tcl
+%%DATADIR%%/plugins/general/clientinfo.tcl
+%%DATADIR%%/plugins/general/conferenceinfo.tcl
+%%DATADIR%%/plugins/general/message_archive.tcl
+%%DATADIR%%/plugins/general/rawxml.tcl
+%%DATADIR%%/plugins/general/stats.tcl
+%%DATADIR%%/plugins/general/tkcon.tcl
+%%DATADIR%%/plugins/general/autoaway.tcl
+%%DATADIR%%/plugins/iq/browse.tcl
+%%DATADIR%%/plugins/iq/oob.tcl
+%%DATADIR%%/plugins/iq/time.tcl
+%%DATADIR%%/plugins/iq/version.tcl
+%%DATADIR%%/plugins/jidlink/dtcp.tcl
+%%DATADIR%%/plugins/jidlink/ibb.tcl
+%%DATADIR%%/plugins/unix/dockingtray.tcl
+%%DATADIR%%/plugins/unix/ispell.tcl
+%%DATADIR%%/plugins/unix/menu.tcl
+%%DATADIR%%/plugins/unix/menu8.4.tcl
+%%DATADIR%%/plugins/unix/wmdock.tcl
+%%DATADIR%%/plugins/windows/mousewheel.tcl
+%%DATADIR%%/plugins/windows/taskbar.tcl
+%%DATADIR%%/sounds/default/groupchat_their_message.wav
+%%DATADIR%%/sounds/default/connected.wav
+%%DATADIR%%/sounds/default/groupchat_server_message.wav
+%%DATADIR%%/sounds/default/chat_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%%/msgs/ua.msg
+%%DATADIR%%/msgs/de.msg
+%%DATADIR%%/msgs/en.msg
+%%DATADIR%%/msgs/eo.msg
+%%DATADIR%%/msgs/es.msg
+%%DATADIR%%/msgs/fr.msg
+%%DATADIR%%/msgs/it.msg
+%%DATADIR%%/msgs/ro.msg
+%%DATADIR%%/msgs/ru.msg
+%%DATADIR%%/msgs/ru.rc
+%%DATADIR%%/msgs/ca.msg
+%%DATADIR%%/textundo/dkflib.tcl
+%%DATADIR%%/textundo/textundo.tcl
+%%DATADIR%%/mclistbox-1.02/mclistbox.tcl
+%%DATADIR%%/search.tcl
+%%DATADIR%%/roster_nested.tcl
+%%DATADIR%%/roster.tcl
+%%DATADIR%%/register.tcl
+%%DATADIR%%/privacy.tcl
+%%DATADIR%%/presence.tcl
+%%DATADIR%%/plugins.tcl
+%%DATADIR%%/negotiate.tcl
+%%DATADIR%%/muc.tcl
+%%DATADIR%%/messages.tcl
+%%DATADIR%%/login.tcl
+%%DATADIR%%/joingrdialog.tcl
+%%DATADIR%%/jidlink.tcl
+%%DATADIR%%/itemedit.tcl
+%%DATADIR%%/iq.tcl
+%%DATADIR%%/iface.tcl
+%%DATADIR%%/hooks.tcl
+%%DATADIR%%/gpgme.tcl
+%%DATADIR%%/filters.tcl
+%%DATADIR%%/filetransfer.tcl
+%%DATADIR%%/emoticons.tcl
+%%DATADIR%%/disco.tcl
+%%DATADIR%%/default.tcl
+%%DATADIR%%/datagathering.tcl
+%%DATADIR%%/custom.tcl
+%%DATADIR%%/chats.tcl
+%%DATADIR%%/bwidget_workarounds.tcl
+%%DATADIR%%/browser.tcl
+%%DATADIR%%/balloon.tcl
+%%DATADIR%%/avatars.tcl
+%%DATADIR%%/Tclx.tcl
+%%DATADIR%%/default.xrdb
+%%DATADIR%%/xmppmime.tcl
+%%DATADIR%%/utils.tcl
+%%DATADIR%%/userinfo.tcl
+%%DATADIR%%/tkabber.tcl
+%%DATADIR%%/splash.tcl
+%%DATADIR%%/sound.tcl
+%%EXAMPLESDIR%%/tools/howto.txt
+%%EXAMPLESDIR%%/tools/jbot
+%%EXAMPLESDIR%%/tools/jsend.tcl
+%%EXAMPLESDIR%%/tools/rssbot
+%%EXAMPLESDIR%%/tools/rssbot.tcl
+%%EXAMPLESDIR%%/black.xrdb
+%%EXAMPLESDIR%%/config.tcl
+%%EXAMPLESDIR%%/dark.xrdb
+%%EXAMPLESDIR%%/ermine.xrdb
+%%EXAMPLESDIR%%/green.xrdb
+%%EXAMPLESDIR%%/ice.xrdb
+%%EXAMPLESDIR%%/light.xrdb
+%%EXAMPLESDIR%%/mtr-config.tcl
+%%EXAMPLESDIR%%/teo-config.tcl
+%%EXAMPLESDIR%%/teopetuk.xrdb
+%%EXAMPLESDIR%%/warm.xrdb
+%%EXAMPLESDIR%%/tkabber_setstatus
+%%EXAMPLESDIR%%/dark2.xrdb
+%%PORTDOCS%%%%DOCSDIR%%/tkabber.xml
+%%PORTDOCS%%%%DOCSDIR%%/tkabber.html
+@dirrm %%EXAMPLESDIR%%/tools
+@dirrm %%EXAMPLESDIR%%
+%%PORTDOCS%%@dirrm %%DOCSDIR%%
+@dirrm %%DATADIR%%/emoticons-tkabber
+@dirrm %%DATADIR%%/pixmaps/icq/docking
+@dirrm %%DATADIR%%/pixmaps/icq/roster
+@dirrm %%DATADIR%%/pixmaps/icq/tkabber
+@dirrm %%DATADIR%%/pixmaps/icq
+@dirrm %%DATADIR%%/pixmaps/feather22/roster
+@dirrm %%DATADIR%%/pixmaps/feather22
+@dirrm %%DATADIR%%/pixmaps/gabber/browser
+@dirrm %%DATADIR%%/pixmaps/gabber/roster
+@dirrm %%DATADIR%%/pixmaps/gabber/services
+@dirrm %%DATADIR%%/pixmaps/gabber/tkabber
+@dirrm %%DATADIR%%/pixmaps/gabber/docking
+@dirrm %%DATADIR%%/pixmaps/gabber
+@dirrm %%DATADIR%%/pixmaps/default/browser
+@dirrm %%DATADIR%%/pixmaps/default/docking
+@dirrm %%DATADIR%%/pixmaps/default/roster
+@dirrm %%DATADIR%%/pixmaps/default/services
+@dirrm %%DATADIR%%/pixmaps/default/tkabber
+@dirrm %%DATADIR%%/pixmaps/default
+@dirrm %%DATADIR%%/pixmaps/jajc/browser
+@dirrm %%DATADIR%%/pixmaps/jajc/docking
+@dirrm %%DATADIR%%/pixmaps/jajc/roster
+@dirrm %%DATADIR%%/pixmaps/jajc/services
+@dirrm %%DATADIR%%/pixmaps/jajc/tkabber
+@dirrm %%DATADIR%%/pixmaps/jajc
+@dirrm %%DATADIR%%/pixmaps/jarl/roster
+@dirrm %%DATADIR%%/pixmaps/jarl
+@dirrm %%DATADIR%%/pixmaps/psi/browser
+@dirrm %%DATADIR%%/pixmaps/psi/roster
+@dirrm %%DATADIR%%/pixmaps/psi/tkabber
+@dirrm %%DATADIR%%/pixmaps/psi
+@dirrm %%DATADIR%%/pixmaps
+@dirrm %%DATADIR%%/jabberlib-tclxml/tclxml
+@dirrm %%DATADIR%%/jabberlib-tclxml
+@dirrm %%DATADIR%%/plugins/chat
+@dirrm %%DATADIR%%/plugins/general
+@dirrm %%DATADIR%%/plugins/iq
+@dirrm %%DATADIR%%/plugins/jidlink
+@dirrm %%DATADIR%%/plugins/unix
+@dirrm %%DATADIR%%/plugins/windows
+@dirrm %%DATADIR%%/plugins
+@dirrm %%DATADIR%%/sounds/default
+@dirrm %%DATADIR%%/sounds
+@dirrm %%DATADIR%%/msgs
+@dirrm %%DATADIR%%/textundo
+@dirrm %%DATADIR%%/mclistbox-1.02
+@dirrm %%DATADIR%%