1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-24 00:45:52 +00:00

Upgrade to version 1.0.0

PR:		16485
Submitted by:	maintainer
This commit is contained in:
Jim Mock 2000-02-05 00:17:56 +00:00
parent 490285929e
commit da7dbb2aab
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25483
24 changed files with 952 additions and 668 deletions

View File

@ -1,30 +1,27 @@
# New ports collection makefile for: kvirc
# Version required: 0.9.0
# Version required: 1.0.0
# Date created: Mon Feb 15 02:53:29 CET 1999
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
DISTNAME= kvirc-0.9.0
CATEGORIES= irc kde
MASTER_SITES= $(MASTER_SITE_KDE)
MASTER_SITE_SUBDIR= stable/1.1/apps/network
DISTNAME= kvirc-1.0.0
CATEGORIES= irc
MASTER_SITES= ftp://ftp.kvirc.bz.nu/pub/mirror/kvirc/ \
http://www.kvirc.org/
MAINTAINER= ports@freebsd.org
MAINTAINER= andrews@technologist.com
LIB_DEPENDS= kdecore.2:${PORTSDIR}/x11/kdelibs11 \
kdeui.2:${PORTSDIR}/x11/kdelibs11 \
khtmlw.2:${PORTSDIR}/x11/kdelibs11
LIB_DEPENDS= pthread.13:${PORTSDIR}/devel/pth-devel
USE_QT= yes
USE_QT2= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
KDEDIR= ${PREFIX}
CONFIGURE_ARGS= --x-includes=$(X11BASE)/include --x-libraries=$(X11BASE)/lib \
--datadir=$(PREFIX)/share/kde
CONFIGURE_ENV= MOC=${X11BASE}/bin/moc
--datadir=$(PREFIX)/share --with-qt-moc=${X11BASE}/bin/moc2 \
--with-qt-include-dir=${X11BASE}/include/qt2 \
--with-qt-library-dir=${X11BASE}/lib
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (kvirc-0.9.0.tar.gz) = 1f79938c08410325a10a15c2d59c2e5a
MD5 (kvirc-1.0.0.tar.gz) = f59640364efeb02ea31c7d20ef4b5d53

View File

@ -1,19 +1,13 @@
*** kvirc/kvi_support.cpp.orig Mon Jan 25 00:32:30 1999
--- kvirc/kvi_support.cpp Mon Feb 15 02:10:42 1999
***************
*** 21,27 ****
//#include "kvi_app.h"
#include <ctype.h>
! #include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <qstring.h> //includes <string.h> too
--- 21,27 ----
//#include "kvi_app.h"
#include <ctype.h>
! // #include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <qstring.h> //includes <string.h> too
--- src/kvilib/kvi_thread.h Sat Oct 30 20:18:28 1999
+++ src/kvilib/kvi_thread.h.new Sat Jan 29 18:29:32 2000
@@ -24,7 +24,9 @@
//
#include <pthread.h>
-
+#undef connect
+#undef read
+#undef write
#include <qsocketnotifier.h>
#include <qlist.h>
#include <qobject.h>

View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_dcc_send.cpp Sat Dec 18 08:29:12 1999
+++ src/kvirc/kvi_dcc_send.cpp.new Sat Jan 29 17:47:32 2000
@@ -770,7 +770,7 @@
kvi_threadTestCancel();
dcc->tmpBuffer.sprintf(__tr("Connected to %s on port %u"),dcc->szAddress.ptr(),dcc->uPort);
- KviDccEvent * e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
+ e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
g_pThreadEventDispatcher->postEvent(e,dcc->dccSendParent);
kvi_threadTestCancel();

View File

@ -0,0 +1,20 @@
--- src/kvirc/kvi_dcc_voice.cpp Sat Dec 18 08:29:36 1999
+++ src/kvirc/kvi_dcc_voice.cpp.new Sat Jan 29 22:01:29 2000
@@ -323,7 +323,7 @@
static int fmt=KVI_FORMAT;
if(ioctl(dcc->soundFd,SNDCTL_DSP_SETFMT,&fmt)<0)return KVI_ERROR_CanNotInitializeSoundCard;
static int chans=KVI_NUM_CHANNELS;
- if(ioctl(dcc->soundFd,SNDCTL_DSP_CHANNELS,&chans)<0)return KVI_ERROR_CanNotInitializeSoundCard;
+ if (ioctl(dcc->soundFd, SNDCTL_DSP_STEREO, &chans)<0) return KVI_ERROR_CanNotInitializeSoundCard;
static int speed=KVI_SPEED;
if(ioctl(dcc->soundFd,SNDCTL_DSP_SPEED,&speed)<0)return KVI_ERROR_CanNotInitializeSoundCard;
return KVI_ERROR_Success;
@@ -905,7 +905,7 @@
kvi_threadTestCancel();
dcc->tmpBuffer.sprintf(__tr("Connected to %s on port %u"),dcc->szAddress.ptr(),dcc->uPort);
- KviDccEvent * e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
+ e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
g_pThreadEventDispatcher->postEvent(e,dcc->dccVoiceParent);
kvi_threadTestCancel();

View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_frame.cpp Mon Dec 20 19:07:31 1999
+++ src/kvirc/kvi_frame.cpp.new Sat Jan 29 17:58:45 2000
@@ -80,6 +80,8 @@
#include "kvi_asyncwhois.h"
+#undef accept
+
#include <qcursor.h>
#include <qclipboard.h>
#include <qobjcoll.h>

View File

@ -0,0 +1,12 @@
--- src/kvirc/kvi_input.cpp Sat Dec 11 08:09:57 1999
+++ src/kvirc/kvi_input.cpp.new Sat Jan 29 18:02:53 2000
@@ -43,8 +43,8 @@
#include "kvi_strsub.h"
#include <X11/Xlib.h>
-
#include <ctype.h>
+#undef accept
#include <qnamespace.h>
#include <qpopupmenu.h>

View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_dlgscript.cpp Mon Dec 20 19:19:22 1999
+++ src/kvirc/kvi_dlgscript.cpp.new Sat Jan 29 17:56:01 2000
@@ -45,6 +45,8 @@
#include "kvi_varcache.h"
#include "kvi_style.h"
+#undef accept
+
#include <qlayout.h>
#include <qevent.h>
#include <qsplitter.h>

View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_listbox.cpp Sat Dec 18 08:40:17 1999
+++ src/kvirc/kvi_listbox.cpp.new Sat Jan 29 18:22:23 2000
@@ -38,6 +38,8 @@
#include "kvi_query.h"
#include "kvi_event.h"
+#undef accept
+
#include <qbitmap.h>
#include <X11/Xlib.h>

View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_helpqml.cpp Fri Nov 19 11:15:33 1999
+++ src/kvirc/kvi_helpqml.cpp.new Sat Jan 29 18:28:26 2000
@@ -29,6 +29,8 @@
#include "kvi_options.h"
#include "kvi_fileutils.h"
+#undef read
+
#include <qfile.h>
#include <qtextstream.h>
#include <qnamespace.h>

View File

@ -0,0 +1,10 @@
--- src/kvirc/kvi_ircview.cpp Sun Dec 19 19:23:13 1999
+++ src/kvirc/kvi_ircview.cpp.new Sat Jan 29 18:42:14 2000
@@ -59,6 +59,7 @@
#include "kvi_uparser.h"
#include <X11/Xlib.h>
+#undef accept
#include <qbitmap.h>
#include <qcursor.h>

View File

@ -1,300 +1,354 @@
bin/kvidns
bin/kviphone
bin/kvirc
share/applnk/Internet/kvirc.kdelnk
share/apps/kvirc/Ascii/readme_dir
share/apps/kvirc/Audio/default.wav
share/apps/kvirc/Config/README
share/apps/kvirc/Config/kvi.server.conf
share/apps/kvirc/Images/readme_dir
share/apps/kvirc/Incoming/readme_dir
share/apps/kvirc/Logs/readme_dir
share/apps/kvirc/Misc/readme_dir
share/apps/kvirc/Scripts/Ascii/readme_dir
share/apps/kvirc/Scripts/Audio/readme_dir
share/apps/kvirc/Scripts/Images/readme_dir
share/apps/kvirc/Scripts/Misc/readme_dir
share/apps/kvirc/Scripts/README
share/apps/kvirc/Scripts/def_aliases.kvs
share/apps/kvirc/Scripts/readme_dir
share/apps/kvirc/Translation/ASCII
share/apps/kvirc/Translation/CP437
share/apps/kvirc/Translation/CP850
share/apps/kvirc/Translation/DANISH
share/apps/kvirc/Translation/DEC_MCS
share/apps/kvirc/Translation/DG_MCS
share/apps/kvirc/Translation/DUTCH
share/apps/kvirc/Translation/FINNISH
share/apps/kvirc/Translation/FRENCH
share/apps/kvirc/Translation/FRENCH_CANADIAN
share/apps/kvirc/Translation/GERMAN
share/apps/kvirc/Translation/HP_MCS
share/apps/kvirc/Translation/IRV
share/apps/kvirc/Translation/ITALIAN
share/apps/kvirc/Translation/JIS
share/apps/kvirc/Translation/MACINTOSH
share/apps/kvirc/Translation/NEXT
share/apps/kvirc/Translation/NORWEGIAN_1
share/apps/kvirc/Translation/NORWEGIAN_2
share/apps/kvirc/Translation/POLISH
share/apps/kvirc/Translation/POLISH_NOPL
share/apps/kvirc/Translation/PORTUGUESE
share/apps/kvirc/Translation/PORTUGUESE_COM
share/apps/kvirc/Translation/RUSSIAN
share/apps/kvirc/Translation/RUSSIAN_ALT
share/apps/kvirc/Translation/RUSSIAN_WIN
share/apps/kvirc/Translation/SPANISH
share/apps/kvirc/Translation/SWEDISH
share/apps/kvirc/Translation/SWEDISH_NAMES
share/apps/kvirc/Translation/SWEDISH_NAMES_COM
share/apps/kvirc/Translation/SWISS
share/apps/kvirc/Translation/UNITED_KINGDOM
share/apps/kvirc/Translation/UNITED_KINGDOM_COM
share/apps/kvirc/pics/DESCRIPTION
share/apps/kvirc/pics/kvi_act.gif
share/apps/kvirc/pics/kvi_away.gif
share/apps/kvirc/pics/kvi_back.gif
share/apps/kvirc/pics/kvi_ban.gif
share/apps/kvirc/pics/kvi_chmod.gif
share/apps/kvirc/pics/kvi_clone.gif
share/apps/kvirc/pics/kvi_conn.gif
share/apps/kvirc/pics/kvi_ctcp.gif
share/apps/kvirc/pics/kvi_dccd.gif
share/apps/kvirc/pics/kvi_deop.gif
share/apps/kvirc/pics/kvi_devoi.gif
share/apps/kvirc/pics/kvi_disc.gif
share/apps/kvirc/pics/kvi_dns.gif
share/apps/kvirc/pics/kvi_echo.gif
share/apps/kvirc/pics/kvi_error.gif
share/apps/kvirc/pics/kvi_flood.gif
share/apps/kvirc/pics/kvi_help.gif
share/apps/kvirc/pics/kvi_info.gif
share/apps/kvirc/pics/kvi_intrn.gif
share/apps/kvirc/pics/kvi_invite.gif
share/apps/kvirc/pics/kvi_join.gif
share/apps/kvirc/pics/kvi_kick.gif
share/apps/kvirc/pics/kvi_kline.gif
share/apps/kvirc/pics/kvi_kvirc.gif
share/apps/kvirc/pics/kvi_links.gif
share/apps/kvirc/pics/kvi_motd.gif
share/apps/kvirc/pics/kvi_nick.gif
share/apps/kvirc/pics/kvi_notic.gif
share/apps/kvirc/pics/kvi_op.gif
share/apps/kvirc/pics/kvi_own.gif
share/apps/kvirc/pics/kvi_part.gif
share/apps/kvirc/pics/kvi_ping.gif
share/apps/kvirc/pics/kvi_privm.gif
share/apps/kvirc/pics/kvi_quit.gif
share/apps/kvirc/pics/kvi_raw.gif
share/apps/kvirc/pics/kvi_rpler.gif
share/apps/kvirc/pics/kvi_serv.gif
share/apps/kvirc/pics/kvi_sound.gif
share/apps/kvirc/pics/kvi_stde.gif
share/apps/kvirc/pics/kvi_stdi.gif
share/apps/kvirc/pics/kvi_stdo.gif
share/apps/kvirc/pics/kvi_time.gif
share/apps/kvirc/pics/kvi_tlb_alias.gif
share/apps/kvirc/pics/kvi_tlb_chan.gif
share/apps/kvirc/pics/kvi_tlb_clr.gif
share/apps/kvirc/pics/kvi_tlb_conn.gif
share/apps/kvirc/pics/kvi_tlb_dccopt.gif
share/apps/kvirc/pics/kvi_tlb_disc.gif
share/apps/kvirc/pics/kvi_tlb_event.gif
share/apps/kvirc/pics/kvi_tlb_help.gif
share/apps/kvirc/pics/kvi_tlb_int.gif
share/apps/kvirc/pics/kvi_tlb_kvirc.gif
share/apps/kvirc/pics/kvi_tlb_links.gif
share/apps/kvirc/pics/kvi_tlb_load.gif
share/apps/kvirc/pics/kvi_tlb_opt.gif
share/apps/kvirc/pics/kvi_tlb_pop.gif
share/apps/kvirc/pics/kvi_tlb_save.gif
share/apps/kvirc/pics/kvi_tlb_srv.gif
share/apps/kvirc/pics/kvi_tlb_ulist.gif
share/apps/kvirc/pics/kvi_tlb_usr.gif
share/apps/kvirc/pics/kvi_topic.gif
share/apps/kvirc/pics/kvi_unban.gif
share/apps/kvirc/pics/kvi_voice.gif
share/apps/kvirc/pics/kvi_who.gif
share/apps/kvirc/pics/kvi_wnd_chan.gif
share/apps/kvirc/pics/kvi_wnd_chat.gif
share/apps/kvirc/pics/kvi_wnd_chls.gif
share/apps/kvirc/pics/kvi_wnd_link.gif
share/apps/kvirc/pics/kvi_wnd_qery.gif
share/apps/kvirc/pics/kvi_wnd_send.gif
share/apps/kvirc/pics/kvi_wnd_stat.gif
share/apps/kvirc/pics/kvi_wnd_talk.gif
share/apps/kvirc/pics/kvi_wnd_user.gif
share/apps/kvirc/pics/kvib_op.gif
share/apps/kvirc/pics/kvib_voice.gif
share/apps/kvirc/pics/kvii_alias.gif
share/apps/kvirc/pics/kvii_casc.gif
share/apps/kvirc/pics/kvii_chan.gif
share/apps/kvirc/pics/kvii_chat.gif
share/apps/kvirc/pics/kvii_clr.gif
share/apps/kvirc/pics/kvii_conn.gif
share/apps/kvirc/pics/kvii_disc.gif
share/apps/kvirc/pics/kvii_event.gif
share/apps/kvirc/pics/kvii_horz.gif
share/apps/kvirc/pics/kvii_int.gif
share/apps/kvirc/pics/kvii_load.gif
share/apps/kvirc/pics/kvii_menu.gif
share/apps/kvirc/pics/kvii_mnmz.gif
share/apps/kvirc/pics/kvii_opt.gif
share/apps/kvirc/pics/kvii_pop.gif
share/apps/kvirc/pics/kvii_popu.gif
share/apps/kvirc/pics/kvii_qery.gif
share/apps/kvirc/pics/kvii_rstr.gif
share/apps/kvirc/pics/kvii_save.gif
share/apps/kvirc/pics/kvii_send.gif
share/apps/kvirc/pics/kvii_srv.gif
share/apps/kvirc/pics/kvii_stat.gif
share/apps/kvirc/pics/kvii_tall.gif
share/apps/kvirc/pics/kvii_usr.gif
share/apps/kvirc/pics/kvii_usrwnd.gif
share/apps/kvirc/pics/kvii_vert.gif
share/apps/kvirc/pics/kvii_voice.gif
share/apps/kvirc/pics/kvilogobig.gif
share/doc/HTML/de/kvirc/aliases.html
share/doc/HTML/de/kvirc/cmd_ascii.html
share/doc/HTML/de/kvirc/cmd_away.html
share/doc/HTML/de/kvirc/cmd_back.html
share/doc/HTML/de/kvirc/cmd_ban.html
share/doc/HTML/de/kvirc/cmd_cache.html
share/doc/HTML/de/kvirc/cmd_chat.html
share/doc/HTML/de/kvirc/cmd_clonescan.html
share/doc/HTML/de/kvirc/cmd_ctcp.html
share/doc/HTML/de/kvirc/cmd_dns.html
share/doc/HTML/de/kvirc/cmd_echo.html
share/doc/HTML/de/kvirc/cmd_exec.html
share/doc/HTML/de/kvirc/cmd_file.html
share/doc/HTML/de/kvirc/cmd_foreach.html
share/doc/HTML/de/kvirc/cmd_halt.html
share/doc/HTML/de/kvirc/cmd_if.html
share/doc/HTML/de/kvirc/cmd_inc.html
share/doc/HTML/de/kvirc/cmd_join.html
share/doc/HTML/de/kvirc/cmd_kick.html
share/doc/HTML/de/kvirc/cmd_me.html
share/doc/HTML/de/kvirc/cmd_mode.html
share/doc/HTML/de/kvirc/cmd_msg.html
share/doc/HTML/de/kvirc/cmd_play.html
share/doc/HTML/de/kvirc/cmd_query.html
share/doc/HTML/de/kvirc/cmd_raw.html
share/doc/HTML/de/kvirc/cmd_return.html
share/doc/HTML/de/kvirc/cmd_send.html
share/doc/HTML/de/kvirc/cmd_server.html
share/doc/HTML/de/kvirc/cmd_set.html
share/doc/HTML/de/kvirc/cmd_sound.html
share/doc/HTML/de/kvirc/cmd_timer.html
share/doc/HTML/de/kvirc/cmd_userlist.html
share/doc/HTML/de/kvirc/cmd_while.html
share/doc/HTML/de/kvirc/cmd_whois.html
share/doc/HTML/de/kvirc/cmd_window.html
share/doc/HTML/de/kvirc/cmdline.html
share/doc/HTML/de/kvirc/cmdlist.html
share/doc/HTML/de/kvirc/commonerror.html
share/doc/HTML/de/kvirc/credits.html
share/doc/HTML/de/kvirc/eve_ban.html
share/doc/HTML/de/kvirc/eve_clone.html
share/doc/HTML/de/kvirc/eve_connect.html
share/doc/HTML/de/kvirc/evelist.html
share/doc/HTML/de/kvirc/events.html
share/doc/HTML/de/kvirc/examples.html
share/doc/HTML/de/kvirc/index.html
share/doc/HTML/de/kvirc/intro.html
share/doc/HTML/de/kvirc/kvihead.gif
share/doc/HTML/de/kvirc/kvilogo.jpg
share/doc/HTML/de/kvirc/loadscript.html
share/doc/HTML/de/kvirc/rfc1459.html
share/doc/HTML/de/kvirc/savescript.html
share/doc/HTML/de/kvirc/scripting.html
share/doc/HTML/de/kvirc/seddlg.html
share/doc/HTML/de/kvirc/srvdlg.html
share/doc/HTML/de/kvirc/start.html
share/doc/HTML/de/kvirc/usrdlg.html
share/doc/HTML/de/kvirc/variables.html
share/doc/HTML/en/kvirc/aliases.html
share/doc/HTML/en/kvirc/cmd_ascii.html
share/doc/HTML/en/kvirc/cmd_away.html
share/doc/HTML/en/kvirc/cmd_back.html
share/doc/HTML/en/kvirc/cmd_ban.html
share/doc/HTML/en/kvirc/cmd_cache.html
share/doc/HTML/en/kvirc/cmd_chat.html
share/doc/HTML/en/kvirc/cmd_clonescan.html
share/doc/HTML/en/kvirc/cmd_connstats.html
share/doc/HTML/en/kvirc/cmd_ctcp.html
share/doc/HTML/en/kvirc/cmd_dns.html
share/doc/HTML/en/kvirc/cmd_echo.html
share/doc/HTML/en/kvirc/cmd_exec.html
share/doc/HTML/en/kvirc/cmd_file.html
share/doc/HTML/en/kvirc/cmd_foreach.html
share/doc/HTML/en/kvirc/cmd_halt.html
share/doc/HTML/en/kvirc/cmd_if.html
share/doc/HTML/en/kvirc/cmd_inc.html
share/doc/HTML/en/kvirc/cmd_join.html
share/doc/HTML/en/kvirc/cmd_kick.html
share/doc/HTML/en/kvirc/cmd_list.html
share/doc/HTML/en/kvirc/cmd_me.html
share/doc/HTML/en/kvirc/cmd_mode.html
share/doc/HTML/en/kvirc/cmd_msg.html
share/doc/HTML/en/kvirc/cmd_play.html
share/doc/HTML/en/kvirc/cmd_query.html
share/doc/HTML/en/kvirc/cmd_raw.html
share/doc/HTML/en/kvirc/cmd_return.html
share/doc/HTML/en/kvirc/cmd_send.html
share/doc/HTML/en/kvirc/cmd_server.html
share/doc/HTML/en/kvirc/cmd_set.html
share/doc/HTML/en/kvirc/cmd_sound.html
share/doc/HTML/en/kvirc/cmd_talk.html
share/doc/HTML/en/kvirc/cmd_timer.html
share/doc/HTML/en/kvirc/cmd_userlist.html
share/doc/HTML/en/kvirc/cmd_while.html
share/doc/HTML/en/kvirc/cmd_whois.html
share/doc/HTML/en/kvirc/cmd_window.html
share/doc/HTML/en/kvirc/cmdline.html
share/doc/HTML/en/kvirc/cmdlist.html
share/doc/HTML/en/kvirc/commonerror.html
share/doc/HTML/en/kvirc/credits.html
share/doc/HTML/en/kvirc/dlg_proxy.gif
share/doc/HTML/en/kvirc/dlg_prxedit.gif
share/doc/HTML/en/kvirc/dlg_server.gif
share/doc/HTML/en/kvirc/dlg_server.html
share/doc/HTML/en/kvirc/dlg_srvedit.gif
share/doc/HTML/en/kvirc/dlg_srvedit.html
share/doc/HTML/en/kvirc/eve_ban.html
share/doc/HTML/en/kvirc/eve_clone.html
share/doc/HTML/en/kvirc/eve_connect.html
share/doc/HTML/en/kvirc/evelist.html
share/doc/HTML/en/kvirc/events.html
share/doc/HTML/en/kvirc/examples.html
share/doc/HTML/en/kvirc/index.html
share/doc/HTML/en/kvirc/intro.html
share/doc/HTML/en/kvirc/kvihead.gif
share/doc/HTML/en/kvirc/kvilogo.jpg
share/doc/HTML/en/kvirc/loadscript.html
share/doc/HTML/en/kvirc/rfc1459.html
share/doc/HTML/en/kvirc/savescript.html
share/doc/HTML/en/kvirc/scripting.html
share/doc/HTML/en/kvirc/start.html
share/doc/HTML/en/kvirc/usrdlg.html
share/doc/HTML/en/kvirc/variables.html
share/icons/kvirc.xpm
share/icons/mini/kvirc.xpm
share/locale/de/LC_MESSAGES/kvirc.mo
share/locale/it/LC_MESSAGES/kvirc.mo
@dirrm share/apps/kvirc/Ascii
@dirrm share/apps/kvirc/Audio
@dirrm share/apps/kvirc/Config
@dirrm share/apps/kvirc/Images
@dirrm share/apps/kvirc/Incoming
@dirrm share/apps/kvirc/Logs
@dirrm share/apps/kvirc/Misc
@dirrm share/apps/kvirc/Scripts/Ascii
@dirrm share/apps/kvirc/Scripts/Audio
@dirrm share/apps/kvirc/Scripts/Images
@dirrm share/apps/kvirc/Scripts/Misc
@dirrm share/apps/kvirc/Scripts
@dirrm share/apps/kvirc/Translation
@dirrm share/apps/kvirc/pics
@dirrm share/apps/kvirc
@dirrm share/doc/HTML/de/kvirc
@dirrm share/doc/HTML/en/kvirc
bin/kvi_run_netscape.sh
bin/kvi_make_scriptdist.sh
bin/kvi_search_help.sh
lib/libkvicore.la
lib/libkvicore.a
lib/libkvilib.la
lib/libkvilib.a
share/kvirc/config/kvi.mime.conf
share/kvirc/config/kvi.tip_en.conf
share/kvirc/config/kvi.popup.conf
share/kvirc/config/kvi.alias.conf
share/kvirc/config/kvi.view.conf
share/kvirc/config/kvi.server.conf
share/kvirc/help/en/alias.kvihelp
share/kvirc/help/en/ame.kvihelp
share/kvirc/help/en/amsg.kvihelp
share/kvirc/help/en/anotice.kvihelp
share/kvirc/help/en/awhois.kvihelp
share/kvirc/help/en/ban.kvihelp
share/kvirc/help/en/beep.kvihelp
share/kvirc/help/en/cd.kvihelp
share/kvirc/help/en/commands.kvihelp
share/kvirc/help/en/config.kvihelp
share/kvirc/help/en/ctcp.kvihelp
share/kvirc/help/en/dcc.kvihelp
share/kvirc/help/en/debug.kvihelp
share/kvirc/help/en/deop.kvihelp
share/kvirc/help/en/devoice.kvihelp
share/kvirc/help/en/dialog.kvihelp
share/kvirc/help/en/dir.kvihelp
share/kvirc/help/en/dns.kvihelp
share/kvirc/help/en/do.kvihelp
share/kvirc/help/en/echo.kvihelp
share/kvirc/help/en/except.kvihelp
share/kvirc/help/en/exec.kvihelp
share/kvirc/help/en/execv.kvihelp
share/kvirc/help/en/foreach.kvihelp
share/kvirc/help/en/halt.kvihelp
share/kvirc/help/en/help.kvihelp
share/kvirc/help/en/host.kvihelp
share/kvirc/help/en/if.kvihelp
share/kvirc/help/en/ignore.kvihelp
share/kvirc/help/en/invite.kvihelp
share/kvirc/help/en/join.kvihelp
share/kvirc/help/en/kick.kvihelp
share/kvirc/help/en/killproc.kvihelp
share/kvirc/help/en/killtimer.kvihelp
share/kvirc/help/en/links.kvihelp
share/kvirc/help/en/list.kvihelp
share/kvirc/help/en/loadconf.kvihelp
share/kvirc/help/en/log.kvihelp
share/kvirc/help/en/me.kvihelp
share/kvirc/help/en/mode.kvihelp
share/kvirc/help/en/msg.kvihelp
share/kvirc/help/en/multimedia.kvihelp
share/kvirc/help/en/newswindow.kvihelp
share/kvirc/help/en/nick.kvihelp
share/kvirc/help/en/notice.kvihelp
share/kvirc/help/en/notify.kvihelp
share/kvirc/help/en/op.kvihelp
share/kvirc/help/en/operators.kvihelp
share/kvirc/help/en/option.kvihelp
share/kvirc/help/en/parse.kvihelp
share/kvirc/help/en/part.kvihelp
share/kvirc/help/en/play.kvihelp
share/kvirc/help/en/plugin.kvihelp
share/kvirc/help/en/popup.kvihelp
share/kvirc/help/en/proclist.kvihelp
share/kvirc/help/en/query.kvihelp
share/kvirc/help/en/quit.kvihelp
share/kvirc/help/en/quote.kvihelp
share/kvirc/help/en/raw.kvihelp
share/kvirc/help/en/register.kvihelp
share/kvirc/help/en/run.kvihelp
share/kvirc/help/en/say.kvihelp
share/kvirc/help/en/server.kvihelp
share/kvirc/help/en/setflags.kvihelp
share/kvirc/help/en/sound.kvihelp
share/kvirc/help/en/status.kvihelp
share/kvirc/help/en/switch.kvihelp
share/kvirc/help/en/timer.kvihelp
share/kvirc/help/en/topic.kvihelp
share/kvirc/help/en/try.kvihelp
share/kvirc/help/en/unban.kvihelp
share/kvirc/help/en/unexcept.kvihelp
share/kvirc/help/en/unregister.kvihelp
share/kvirc/help/en/utoolbar.kvihelp
share/kvirc/help/en/voice.kvihelp
share/kvirc/help/en/while.kvihelp
share/kvirc/help/en/who.kvihelp
share/kvirc/help/en/whois.kvihelp
share/kvirc/help/en/whowas.kvihelp
share/kvirc/help/en/window.kvihelp
share/kvirc/help/en/writefile.kvihelp
share/kvirc/help/en/writeproc.kvihelp
share/kvirc/help/en/events.kvihelp
share/kvirc/help/en/onchannelmessage.kvihelp
share/kvirc/help/en/onchannelmode.kvihelp
share/kvirc/help/en/onchannelnotice.kvihelp
share/kvirc/help/en/onchannelsync.kvihelp
share/kvirc/help/en/onconnect.kvihelp
share/kvirc/help/en/onctcpmultimedia.kvihelp
share/kvirc/help/en/onctrl0.kvihelp
share/kvirc/help/en/onctrl1.kvihelp
share/kvirc/help/en/onctrl2.kvihelp
share/kvirc/help/en/onctrl3.kvihelp
share/kvirc/help/en/onctrl4.kvihelp
share/kvirc/help/en/onctrl5.kvihelp
share/kvirc/help/en/onctrl6.kvihelp
share/kvirc/help/en/onctrl7.kvihelp
share/kvirc/help/en/onctrl8.kvihelp
share/kvirc/help/en/onctrl9.kvihelp
share/kvirc/help/en/ondccchatconnected.kvihelp
share/kvirc/help/en/ondccchatmessage.kvihelp
share/kvirc/help/en/ondccchatterminated.kvihelp
share/kvirc/help/en/ondccgettransfercomplete.kvihelp
share/kvirc/help/en/ondccsendtransfercomplete.kvihelp
share/kvirc/help/en/ondisconnect.kvihelp
share/kvirc/help/en/onf1.kvihelp
share/kvirc/help/en/onf10.kvihelp
share/kvirc/help/en/onf11.kvihelp
share/kvirc/help/en/onf12.kvihelp
share/kvirc/help/en/onf2.kvihelp
share/kvirc/help/en/onf3.kvihelp
share/kvirc/help/en/onf4.kvihelp
share/kvirc/help/en/onf5.kvihelp
share/kvirc/help/en/onf6.kvihelp
share/kvirc/help/en/onf7.kvihelp
share/kvirc/help/en/onf8.kvihelp
share/kvirc/help/en/onf9.kvihelp
share/kvirc/help/en/oninvite.kvihelp
share/kvirc/help/en/onirc.kvihelp
share/kvirc/help/en/onjoin.kvihelp
share/kvirc/help/en/onkick.kvihelp
share/kvirc/help/en/onmejoin.kvihelp
share/kvirc/help/en/onmekick.kvihelp
share/kvirc/help/en/onmenotice.kvihelp
share/kvirc/help/en/onmepart.kvihelp
share/kvirc/help/en/onmeprivatemessage.kvihelp
share/kvirc/help/en/onnickdoubleclicked.kvihelp
share/kvirc/help/en/onpart.kvihelp
share/kvirc/help/en/onservernotice.kvihelp
share/kvirc/help/en/onserverping.kvihelp
share/kvirc/help/en/onshutdown.kvihelp
share/kvirc/help/en/onstartup.kvihelp
share/kvirc/help/en/ontopic.kvihelp
share/kvirc/help/en/onunhandledliteral.kvihelp
share/kvirc/help/en/onunhandlednumeric.kvihelp
share/kvirc/help/en/onuserwindowfiledrop.kvihelp
share/kvirc/help/en/onuserwindowinput.kvihelp
share/kvirc/help/en/onuserwindowselected.kvihelp
share/kvirc/help/en/onwhoisreply.kvihelp
share/kvirc/help/en/functions.kvihelp
share/kvirc/help/en/identifiers.kvihelp
share/kvirc/help/en/s_activewindow.kvihelp
share/kvirc/help/en/s_allchannels.kvihelp
share/kvirc/help/en/s_allchats.kvihelp
share/kvirc/help/en/s_allonchan.kvihelp
share/kvirc/help/en/s_allqueries.kvihelp
share/kvirc/help/en/s_allwindows.kvihelp
share/kvirc/help/en/s_b.kvihelp
share/kvirc/help/en/s_calc.kvihelp
share/kvirc/help/en/s_chan.kvihelp
share/kvirc/help/en/s_char.kvihelp
share/kvirc/help/en/s_chat.kvihelp
share/kvirc/help/en/s_commandline.kvihelp
share/kvirc/help/en/s_config.kvihelp
share/kvirc/help/en/s_connstarttime.kvihelp
share/kvirc/help/en/s_conntime.kvihelp
share/kvirc/help/en/s_conntimes.kvihelp
share/kvirc/help/en/s_console.kvihelp
share/kvirc/help/en/s_cr.kvihelp
share/kvirc/help/en/s_date.kvihelp
share/kvirc/help/en/s_deflogfile.kvihelp
share/kvirc/help/en/s_dialogmagic.kvihelp
share/kvirc/help/en/s_dialogresult.kvihelp
share/kvirc/help/en/s_dictcount.kvihelp
share/kvirc/help/en/s_dictlist.kvihelp
share/kvirc/help/en/s_direxists.kvihelp
share/kvirc/help/en/s_durationtostring.kvihelp
share/kvirc/help/en/s_fileexists.kvihelp
share/kvirc/help/en/s_filesize.kvihelp
share/kvirc/help/en/s_getenv.kvihelp
share/kvirc/help/en/s_getflags.kvihelp
share/kvirc/help/en/s_hostname.kvihelp
share/kvirc/help/en/s_icon.kvihelp
share/kvirc/help/en/s_inetaton.kvihelp
share/kvirc/help/en/s_inetntoa.kvihelp
share/kvirc/help/en/s_isconnected.kvihelp
share/kvirc/help/en/s_isdocked.kvihelp
share/kvirc/help/en/s_isknown.kvihelp
share/kvirc/help/en/s_isme.kvihelp
share/kvirc/help/en/s_isnumber.kvihelp
share/kvirc/help/en/s_ison.kvihelp
share/kvirc/help/en/s_isop.kvihelp
share/kvirc/help/en/s_isreg.kvihelp
share/kvirc/help/en/s_istimer.kvihelp
share/kvirc/help/en/s_isvalidip.kvihelp
share/kvirc/help/en/s_isvoice.kvihelp
share/kvirc/help/en/s_iswellknown.kvihelp
share/kvirc/help/en/s_iswindow.kvihelp
share/kvirc/help/en/s_k.kvihelp
share/kvirc/help/en/s_itemcount.kvihelp
share/kvirc/help/en/s_kvircdir.kvihelp
share/kvirc/help/en/s_kvirclogdir.kvihelp
share/kvirc/help/en/s_kvircscriptdir.kvihelp
share/kvirc/help/en/s_lf.kvihelp
share/kvirc/help/en/s_lowcase.kvihelp
share/kvirc/help/en/s_mask.kvihelp
share/kvirc/help/en/s_me.kvihelp
share/kvirc/help/en/s_myhostname.kvihelp
share/kvirc/help/en/s_myip.kvihelp
share/kvirc/help/en/s_mymask.kvihelp
share/kvirc/help/en/s_mynick.kvihelp
share/kvirc/help/en/s_myrealname.kvihelp
share/kvirc/help/en/s_myumode.kvihelp
share/kvirc/help/en/s_myusername.kvihelp
share/kvirc/help/en/s_noponchan.kvihelp
share/kvirc/help/en/s_numtimetostring.kvihelp
share/kvirc/help/en/s_o.kvihelp
share/kvirc/help/en/s_oponchan.kvihelp
share/kvirc/help/en/s_option.kvihelp
share/kvirc/help/en/s_pluginloaded.kvihelp
share/kvirc/help/en/s_proccmdline.kvihelp
share/kvirc/help/en/s_procexitcode.kvihelp
share/kvirc/help/en/s_procmagic.kvihelp
share/kvirc/help/en/s_procpid.kvihelp
share/kvirc/help/en/s_procstderr.kvihelp
share/kvirc/help/en/s_procstdout.kvihelp
share/kvirc/help/en/s_procwindow.kvihelp
share/kvirc/help/en/s_query.kvihelp
share/kvirc/help/en/s_r.kvihelp
share/kvirc/help/en/s_rand.kvihelp
share/kvirc/help/en/s_range.kvihelp
share/kvirc/help/en/s_readfile.kvihelp
share/kvirc/help/en/s_selected.kvihelp
share/kvirc/help/en/s_selectedhosts.kvihelp
share/kvirc/help/en/s_serverip.kvihelp
share/kvirc/help/en/s_selectedmasks.kvihelp
share/kvirc/help/en/s_selectedusernames.kvihelp
share/kvirc/help/en/s_serverhostname.kvihelp
share/kvirc/help/en/s_servernetwork.kvihelp
share/kvirc/help/en/s_serverport.kvihelp
share/kvirc/help/en/s_status.kvihelp
share/kvirc/help/en/s_strcat.kvihelp
share/kvirc/help/en/s_strfind.kvihelp
share/kvirc/help/en/s_strfindcs.kvihelp
share/kvirc/help/en/s_strleft.kvihelp
share/kvirc/help/en/s_strlefttofirst.kvihelp
share/kvirc/help/en/s_strlefttofirstcs.kvihelp
share/kvirc/help/en/s_strlefttolast.kvihelp
share/kvirc/help/en/s_strlefttolastcs.kvihelp
share/kvirc/help/en/s_strlen.kvihelp
share/kvirc/help/en/s_strmatch.kvihelp
share/kvirc/help/en/s_strmatchcs.kvihelp
share/kvirc/help/en/s_strmid.kvihelp
share/kvirc/help/en/s_strreplace.kvihelp
share/kvirc/help/en/s_strreplacecs.kvihelp
share/kvirc/help/en/s_strrevfind.kvihelp
share/kvirc/help/en/s_strrevfindcs.kvihelp
share/kvirc/help/en/s_strright.kvihelp
share/kvirc/help/en/s_strrightfromfirst.kvihelp
share/kvirc/help/en/s_strrightfromfirstcs.kvihelp
share/kvirc/help/en/s_strrightfromlast.kvihelp
share/kvirc/help/en/s_strrightfromlastcs.kvihelp
share/kvirc/help/en/s_time.kvihelp
share/kvirc/help/en/s_timermagic.kvihelp
share/kvirc/help/en/s_timername.kvihelp
share/kvirc/help/en/s_times.kvihelp
share/kvirc/help/en/s_topic.kvihelp
share/kvirc/help/en/s_tryresult.kvihelp
share/kvirc/help/en/s_u.kvihelp
share/kvirc/help/en/s_upcase.kvihelp
share/kvirc/help/en/s_uptime.kvihelp
share/kvirc/help/en/s_username.kvihelp
share/kvirc/help/en/s_version.kvihelp
share/kvirc/help/en/s_voiceonchan.kvihelp
share/kvirc/help/en/s_window.kvihelp
share/kvirc/help/en/index.kvihelp
share/kvirc/help/en/ircintro.kvihelp
share/kvirc/help/en/jarkko.kvihelp
share/kvirc/help/en/nohelpavailable.kvihelp
share/kvirc/help/en/rfc1459.kvihelp
share/kvirc/help/en/syntax.kvihelp
share/kvirc/help/en/introdKVIRC.kvihelp
share/kvirc/help/en/introdIRC.kvihelp
share/kvirc/help/en/dalNetWatchList.kvihelp
share/kvirc/help/en/doc_ctcp_multimedia.kvihelp
share/kvirc/help/en/doc_dcc_voice_proto.kvihelp
share/kvirc/help/en/doc_plugin_fm.kvihelp
share/kvirc/help/en/doc_plugin_fserve.kvihelp
share/kvirc/help/en/doc_plugin_image.kvihelp
share/kvirc/help/en/doc_plugin_mydialog.kvihelp
share/kvirc/help/en/doc_plugin_xmms.kvihelp
share/kvirc/help/en/misc.kvihelp
share/kvirc/help/en/qh_kvichannel.kvihelp
share/kvirc/help/en/qh_kvidlgoptuser.kvihelp
share/kvirc/help/en/qh_kvidlgscript.kvihelp
share/kvirc/help/en/qh_kviinput.kvihelp
share/kvirc/help/en/qh_kviscriptwizard.kvihelp
share/kvirc/help/en/qh_kvisystray.kvihelp
share/kvirc/help/en/qh_kvitaskbar.kvihelp
share/kvirc/help/en/qh_nohelpavailable.kvihelp
share/kvirc/help/en/qh_qwidget_aliasestab.kvihelp
share/kvirc/help/en/qh_qwidget_defumodetab.kvihelp
share/kvirc/help/en/qh_qwidget_eventstab.kvihelp
share/kvirc/help/en/qh_qwidget_nicknametab.kvihelp
share/kvirc/help/en/qh_qwidget_popupstab.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage1.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage2.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage3.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage4.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage5.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage6.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage7.kvihelp
share/kvirc/help/en/qh_qwidget_toolbartab.kvihelp
share/kvirc/help/en/qh_qwidget_variablestab.kvihelp
share/kvirc/help/en/quickhelp.kvihelp
share/kvirc/pics/kvirc_48x48_1.xpm
share/kvirc/pics/kvirc_48x48_2.xpm
share/kvirc/pics/kvirc_1_16x16.xpm
share/kvirc/pics/kvirc_1_32x32.xpm
share/kvirc/pics/kvirc_1_48x48.xpm
share/kvirc/pics/kvirc_7_32x32.xpm
share/kvirc/pics/kvirc_7_48x48.xpm
share/kvirc/pics/kvirc_8_32x32.xpm
share/kvirc/pics/kvirc_8_48x48.xpm
share/kvirc/pics/kvi_win_icons.png
share/kvirc/pics/kvi_out_icons.png
share/kvirc/pics/kvi_toolbar_big.png
share/kvirc/pics/kvi_connect_state.png
share/kvirc/pics/kvi_splash.png
share/kvirc/pics/kvi_listbox.png
share/kvirc/pics/kvi_systray_big.png
share/kvirc/pics/kvi_file_icons.png
share/kvirc/pics/kvi_browser_icons.png
share/kvirc/pics/kvi_tipoftheday.png
share/kvirc/pics/kvi_about_bg_00.png
share/kvirc/pics/kvi_about_bg_01.png
share/kvirc/pics/kvi_about_bg_02.png
share/kvirc/pics/kvi_help_icons.png
share/kvirc/pics/kvi_wizard_1.png
share/kvirc/pics/kvi_wizard_2.png
share/kvirc/pics/kvi_wizard_3.png
share/kvirc/pics/kvi_wizard_4.png
share/kvirc/pics/kvi_dock.png
share/kvirc/locale/it.mo
@dirrm share/kvirc/config
@dirrm share/kvirc/help/en
@dirrm share/kvirc/help
@dirrm share/kvirc/locale
@dirrm share/kvirc/pics
@dirrm share/kvirc

View File

@ -1,30 +1,27 @@
# New ports collection makefile for: kvirc
# Version required: 0.9.0
# Version required: 1.0.0
# Date created: Mon Feb 15 02:53:29 CET 1999
# Whom: Anders Nordby <anders@fix.no>
#
# $FreeBSD$
#
DISTNAME= kvirc-0.9.0
CATEGORIES= irc kde
MASTER_SITES= $(MASTER_SITE_KDE)
MASTER_SITE_SUBDIR= stable/1.1/apps/network
DISTNAME= kvirc-1.0.0
CATEGORIES= irc
MASTER_SITES= ftp://ftp.kvirc.bz.nu/pub/mirror/kvirc/ \
http://www.kvirc.org/
MAINTAINER= ports@freebsd.org
MAINTAINER= andrews@technologist.com
LIB_DEPENDS= kdecore.2:${PORTSDIR}/x11/kdelibs11 \
kdeui.2:${PORTSDIR}/x11/kdelibs11 \
khtmlw.2:${PORTSDIR}/x11/kdelibs11
LIB_DEPENDS= pthread.13:${PORTSDIR}/devel/pth-devel
USE_QT= yes
USE_QT2= yes
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
KDEDIR= ${PREFIX}
CONFIGURE_ARGS= --x-includes=$(X11BASE)/include --x-libraries=$(X11BASE)/lib \
--datadir=$(PREFIX)/share/kde
CONFIGURE_ENV= MOC=${X11BASE}/bin/moc
--datadir=$(PREFIX)/share --with-qt-moc=${X11BASE}/bin/moc2 \
--with-qt-include-dir=${X11BASE}/include/qt2 \
--with-qt-library-dir=${X11BASE}/lib
.include <bsd.port.mk>

View File

@ -1 +1 @@
MD5 (kvirc-0.9.0.tar.gz) = 1f79938c08410325a10a15c2d59c2e5a
MD5 (kvirc-1.0.0.tar.gz) = f59640364efeb02ea31c7d20ef4b5d53

View File

@ -1,19 +1,13 @@
*** kvirc/kvi_support.cpp.orig Mon Jan 25 00:32:30 1999
--- kvirc/kvi_support.cpp Mon Feb 15 02:10:42 1999
***************
*** 21,27 ****
//#include "kvi_app.h"
#include <ctype.h>
! #include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <qstring.h> //includes <string.h> too
--- 21,27 ----
//#include "kvi_app.h"
#include <ctype.h>
! // #include <netinet/in.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <qstring.h> //includes <string.h> too
--- src/kvilib/kvi_thread.h Sat Oct 30 20:18:28 1999
+++ src/kvilib/kvi_thread.h.new Sat Jan 29 18:29:32 2000
@@ -24,7 +24,9 @@
//
#include <pthread.h>
-
+#undef connect
+#undef read
+#undef write
#include <qsocketnotifier.h>
#include <qlist.h>
#include <qobject.h>

11
irc/kvirc/files/patch-ad Normal file
View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_dcc_send.cpp Sat Dec 18 08:29:12 1999
+++ src/kvirc/kvi_dcc_send.cpp.new Sat Jan 29 17:47:32 2000
@@ -770,7 +770,7 @@
kvi_threadTestCancel();
dcc->tmpBuffer.sprintf(__tr("Connected to %s on port %u"),dcc->szAddress.ptr(),dcc->uPort);
- KviDccEvent * e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
+ e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
g_pThreadEventDispatcher->postEvent(e,dcc->dccSendParent);
kvi_threadTestCancel();

20
irc/kvirc/files/patch-ae Normal file
View File

@ -0,0 +1,20 @@
--- src/kvirc/kvi_dcc_voice.cpp Sat Dec 18 08:29:36 1999
+++ src/kvirc/kvi_dcc_voice.cpp.new Sat Jan 29 22:01:29 2000
@@ -323,7 +323,7 @@
static int fmt=KVI_FORMAT;
if(ioctl(dcc->soundFd,SNDCTL_DSP_SETFMT,&fmt)<0)return KVI_ERROR_CanNotInitializeSoundCard;
static int chans=KVI_NUM_CHANNELS;
- if(ioctl(dcc->soundFd,SNDCTL_DSP_CHANNELS,&chans)<0)return KVI_ERROR_CanNotInitializeSoundCard;
+ if (ioctl(dcc->soundFd, SNDCTL_DSP_STEREO, &chans)<0) return KVI_ERROR_CanNotInitializeSoundCard;
static int speed=KVI_SPEED;
if(ioctl(dcc->soundFd,SNDCTL_DSP_SPEED,&speed)<0)return KVI_ERROR_CanNotInitializeSoundCard;
return KVI_ERROR_Success;
@@ -905,7 +905,7 @@
kvi_threadTestCancel();
dcc->tmpBuffer.sprintf(__tr("Connected to %s on port %u"),dcc->szAddress.ptr(),dcc->uPort);
- KviDccEvent * e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
+ e = new KviDccEvent(KVI_DCC_EVENT_MSG,dcc->tmpBuffer.ptr());
g_pThreadEventDispatcher->postEvent(e,dcc->dccVoiceParent);
kvi_threadTestCancel();

11
irc/kvirc/files/patch-af Normal file
View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_frame.cpp Mon Dec 20 19:07:31 1999
+++ src/kvirc/kvi_frame.cpp.new Sat Jan 29 17:58:45 2000
@@ -80,6 +80,8 @@
#include "kvi_asyncwhois.h"
+#undef accept
+
#include <qcursor.h>
#include <qclipboard.h>
#include <qobjcoll.h>

12
irc/kvirc/files/patch-ag Normal file
View File

@ -0,0 +1,12 @@
--- src/kvirc/kvi_input.cpp Sat Dec 11 08:09:57 1999
+++ src/kvirc/kvi_input.cpp.new Sat Jan 29 18:02:53 2000
@@ -43,8 +43,8 @@
#include "kvi_strsub.h"
#include <X11/Xlib.h>
-
#include <ctype.h>
+#undef accept
#include <qnamespace.h>
#include <qpopupmenu.h>

11
irc/kvirc/files/patch-ah Normal file
View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_dlgscript.cpp Mon Dec 20 19:19:22 1999
+++ src/kvirc/kvi_dlgscript.cpp.new Sat Jan 29 17:56:01 2000
@@ -45,6 +45,8 @@
#include "kvi_varcache.h"
#include "kvi_style.h"
+#undef accept
+
#include <qlayout.h>
#include <qevent.h>
#include <qsplitter.h>

11
irc/kvirc/files/patch-ai Normal file
View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_listbox.cpp Sat Dec 18 08:40:17 1999
+++ src/kvirc/kvi_listbox.cpp.new Sat Jan 29 18:22:23 2000
@@ -38,6 +38,8 @@
#include "kvi_query.h"
#include "kvi_event.h"
+#undef accept
+
#include <qbitmap.h>
#include <X11/Xlib.h>

11
irc/kvirc/files/patch-aj Normal file
View File

@ -0,0 +1,11 @@
--- src/kvirc/kvi_helpqml.cpp Fri Nov 19 11:15:33 1999
+++ src/kvirc/kvi_helpqml.cpp.new Sat Jan 29 18:28:26 2000
@@ -29,6 +29,8 @@
#include "kvi_options.h"
#include "kvi_fileutils.h"
+#undef read
+
#include <qfile.h>
#include <qtextstream.h>
#include <qnamespace.h>

10
irc/kvirc/files/patch-ak Normal file
View File

@ -0,0 +1,10 @@
--- src/kvirc/kvi_ircview.cpp Sun Dec 19 19:23:13 1999
+++ src/kvirc/kvi_ircview.cpp.new Sat Jan 29 18:42:14 2000
@@ -59,6 +59,7 @@
#include "kvi_uparser.h"
#include <X11/Xlib.h>
+#undef accept
#include <qbitmap.h>
#include <qcursor.h>

View File

@ -1,300 +1,354 @@
bin/kvidns
bin/kviphone
bin/kvirc
share/applnk/Internet/kvirc.kdelnk
share/apps/kvirc/Ascii/readme_dir
share/apps/kvirc/Audio/default.wav
share/apps/kvirc/Config/README
share/apps/kvirc/Config/kvi.server.conf
share/apps/kvirc/Images/readme_dir
share/apps/kvirc/Incoming/readme_dir
share/apps/kvirc/Logs/readme_dir
share/apps/kvirc/Misc/readme_dir
share/apps/kvirc/Scripts/Ascii/readme_dir
share/apps/kvirc/Scripts/Audio/readme_dir
share/apps/kvirc/Scripts/Images/readme_dir
share/apps/kvirc/Scripts/Misc/readme_dir
share/apps/kvirc/Scripts/README
share/apps/kvirc/Scripts/def_aliases.kvs
share/apps/kvirc/Scripts/readme_dir
share/apps/kvirc/Translation/ASCII
share/apps/kvirc/Translation/CP437
share/apps/kvirc/Translation/CP850
share/apps/kvirc/Translation/DANISH
share/apps/kvirc/Translation/DEC_MCS
share/apps/kvirc/Translation/DG_MCS
share/apps/kvirc/Translation/DUTCH
share/apps/kvirc/Translation/FINNISH
share/apps/kvirc/Translation/FRENCH
share/apps/kvirc/Translation/FRENCH_CANADIAN
share/apps/kvirc/Translation/GERMAN
share/apps/kvirc/Translation/HP_MCS
share/apps/kvirc/Translation/IRV
share/apps/kvirc/Translation/ITALIAN
share/apps/kvirc/Translation/JIS
share/apps/kvirc/Translation/MACINTOSH
share/apps/kvirc/Translation/NEXT
share/apps/kvirc/Translation/NORWEGIAN_1
share/apps/kvirc/Translation/NORWEGIAN_2
share/apps/kvirc/Translation/POLISH
share/apps/kvirc/Translation/POLISH_NOPL
share/apps/kvirc/Translation/PORTUGUESE
share/apps/kvirc/Translation/PORTUGUESE_COM
share/apps/kvirc/Translation/RUSSIAN
share/apps/kvirc/Translation/RUSSIAN_ALT
share/apps/kvirc/Translation/RUSSIAN_WIN
share/apps/kvirc/Translation/SPANISH
share/apps/kvirc/Translation/SWEDISH
share/apps/kvirc/Translation/SWEDISH_NAMES
share/apps/kvirc/Translation/SWEDISH_NAMES_COM
share/apps/kvirc/Translation/SWISS
share/apps/kvirc/Translation/UNITED_KINGDOM
share/apps/kvirc/Translation/UNITED_KINGDOM_COM
share/apps/kvirc/pics/DESCRIPTION
share/apps/kvirc/pics/kvi_act.gif
share/apps/kvirc/pics/kvi_away.gif
share/apps/kvirc/pics/kvi_back.gif
share/apps/kvirc/pics/kvi_ban.gif
share/apps/kvirc/pics/kvi_chmod.gif
share/apps/kvirc/pics/kvi_clone.gif
share/apps/kvirc/pics/kvi_conn.gif
share/apps/kvirc/pics/kvi_ctcp.gif
share/apps/kvirc/pics/kvi_dccd.gif
share/apps/kvirc/pics/kvi_deop.gif
share/apps/kvirc/pics/kvi_devoi.gif
share/apps/kvirc/pics/kvi_disc.gif
share/apps/kvirc/pics/kvi_dns.gif
share/apps/kvirc/pics/kvi_echo.gif
share/apps/kvirc/pics/kvi_error.gif
share/apps/kvirc/pics/kvi_flood.gif
share/apps/kvirc/pics/kvi_help.gif
share/apps/kvirc/pics/kvi_info.gif
share/apps/kvirc/pics/kvi_intrn.gif
share/apps/kvirc/pics/kvi_invite.gif
share/apps/kvirc/pics/kvi_join.gif
share/apps/kvirc/pics/kvi_kick.gif
share/apps/kvirc/pics/kvi_kline.gif
share/apps/kvirc/pics/kvi_kvirc.gif
share/apps/kvirc/pics/kvi_links.gif
share/apps/kvirc/pics/kvi_motd.gif
share/apps/kvirc/pics/kvi_nick.gif
share/apps/kvirc/pics/kvi_notic.gif
share/apps/kvirc/pics/kvi_op.gif
share/apps/kvirc/pics/kvi_own.gif
share/apps/kvirc/pics/kvi_part.gif
share/apps/kvirc/pics/kvi_ping.gif
share/apps/kvirc/pics/kvi_privm.gif
share/apps/kvirc/pics/kvi_quit.gif
share/apps/kvirc/pics/kvi_raw.gif
share/apps/kvirc/pics/kvi_rpler.gif
share/apps/kvirc/pics/kvi_serv.gif
share/apps/kvirc/pics/kvi_sound.gif
share/apps/kvirc/pics/kvi_stde.gif
share/apps/kvirc/pics/kvi_stdi.gif
share/apps/kvirc/pics/kvi_stdo.gif
share/apps/kvirc/pics/kvi_time.gif
share/apps/kvirc/pics/kvi_tlb_alias.gif
share/apps/kvirc/pics/kvi_tlb_chan.gif
share/apps/kvirc/pics/kvi_tlb_clr.gif
share/apps/kvirc/pics/kvi_tlb_conn.gif
share/apps/kvirc/pics/kvi_tlb_dccopt.gif
share/apps/kvirc/pics/kvi_tlb_disc.gif
share/apps/kvirc/pics/kvi_tlb_event.gif
share/apps/kvirc/pics/kvi_tlb_help.gif
share/apps/kvirc/pics/kvi_tlb_int.gif
share/apps/kvirc/pics/kvi_tlb_kvirc.gif
share/apps/kvirc/pics/kvi_tlb_links.gif
share/apps/kvirc/pics/kvi_tlb_load.gif
share/apps/kvirc/pics/kvi_tlb_opt.gif
share/apps/kvirc/pics/kvi_tlb_pop.gif
share/apps/kvirc/pics/kvi_tlb_save.gif
share/apps/kvirc/pics/kvi_tlb_srv.gif
share/apps/kvirc/pics/kvi_tlb_ulist.gif
share/apps/kvirc/pics/kvi_tlb_usr.gif
share/apps/kvirc/pics/kvi_topic.gif
share/apps/kvirc/pics/kvi_unban.gif
share/apps/kvirc/pics/kvi_voice.gif
share/apps/kvirc/pics/kvi_who.gif
share/apps/kvirc/pics/kvi_wnd_chan.gif
share/apps/kvirc/pics/kvi_wnd_chat.gif
share/apps/kvirc/pics/kvi_wnd_chls.gif
share/apps/kvirc/pics/kvi_wnd_link.gif
share/apps/kvirc/pics/kvi_wnd_qery.gif
share/apps/kvirc/pics/kvi_wnd_send.gif
share/apps/kvirc/pics/kvi_wnd_stat.gif
share/apps/kvirc/pics/kvi_wnd_talk.gif
share/apps/kvirc/pics/kvi_wnd_user.gif
share/apps/kvirc/pics/kvib_op.gif
share/apps/kvirc/pics/kvib_voice.gif
share/apps/kvirc/pics/kvii_alias.gif
share/apps/kvirc/pics/kvii_casc.gif
share/apps/kvirc/pics/kvii_chan.gif
share/apps/kvirc/pics/kvii_chat.gif
share/apps/kvirc/pics/kvii_clr.gif
share/apps/kvirc/pics/kvii_conn.gif
share/apps/kvirc/pics/kvii_disc.gif
share/apps/kvirc/pics/kvii_event.gif
share/apps/kvirc/pics/kvii_horz.gif
share/apps/kvirc/pics/kvii_int.gif
share/apps/kvirc/pics/kvii_load.gif
share/apps/kvirc/pics/kvii_menu.gif
share/apps/kvirc/pics/kvii_mnmz.gif
share/apps/kvirc/pics/kvii_opt.gif
share/apps/kvirc/pics/kvii_pop.gif
share/apps/kvirc/pics/kvii_popu.gif
share/apps/kvirc/pics/kvii_qery.gif
share/apps/kvirc/pics/kvii_rstr.gif
share/apps/kvirc/pics/kvii_save.gif
share/apps/kvirc/pics/kvii_send.gif
share/apps/kvirc/pics/kvii_srv.gif
share/apps/kvirc/pics/kvii_stat.gif
share/apps/kvirc/pics/kvii_tall.gif
share/apps/kvirc/pics/kvii_usr.gif
share/apps/kvirc/pics/kvii_usrwnd.gif
share/apps/kvirc/pics/kvii_vert.gif
share/apps/kvirc/pics/kvii_voice.gif
share/apps/kvirc/pics/kvilogobig.gif
share/doc/HTML/de/kvirc/aliases.html
share/doc/HTML/de/kvirc/cmd_ascii.html
share/doc/HTML/de/kvirc/cmd_away.html
share/doc/HTML/de/kvirc/cmd_back.html
share/doc/HTML/de/kvirc/cmd_ban.html
share/doc/HTML/de/kvirc/cmd_cache.html
share/doc/HTML/de/kvirc/cmd_chat.html
share/doc/HTML/de/kvirc/cmd_clonescan.html
share/doc/HTML/de/kvirc/cmd_ctcp.html
share/doc/HTML/de/kvirc/cmd_dns.html
share/doc/HTML/de/kvirc/cmd_echo.html
share/doc/HTML/de/kvirc/cmd_exec.html
share/doc/HTML/de/kvirc/cmd_file.html
share/doc/HTML/de/kvirc/cmd_foreach.html
share/doc/HTML/de/kvirc/cmd_halt.html
share/doc/HTML/de/kvirc/cmd_if.html
share/doc/HTML/de/kvirc/cmd_inc.html
share/doc/HTML/de/kvirc/cmd_join.html
share/doc/HTML/de/kvirc/cmd_kick.html
share/doc/HTML/de/kvirc/cmd_me.html
share/doc/HTML/de/kvirc/cmd_mode.html
share/doc/HTML/de/kvirc/cmd_msg.html
share/doc/HTML/de/kvirc/cmd_play.html
share/doc/HTML/de/kvirc/cmd_query.html
share/doc/HTML/de/kvirc/cmd_raw.html
share/doc/HTML/de/kvirc/cmd_return.html
share/doc/HTML/de/kvirc/cmd_send.html
share/doc/HTML/de/kvirc/cmd_server.html
share/doc/HTML/de/kvirc/cmd_set.html
share/doc/HTML/de/kvirc/cmd_sound.html
share/doc/HTML/de/kvirc/cmd_timer.html
share/doc/HTML/de/kvirc/cmd_userlist.html
share/doc/HTML/de/kvirc/cmd_while.html
share/doc/HTML/de/kvirc/cmd_whois.html
share/doc/HTML/de/kvirc/cmd_window.html
share/doc/HTML/de/kvirc/cmdline.html
share/doc/HTML/de/kvirc/cmdlist.html
share/doc/HTML/de/kvirc/commonerror.html
share/doc/HTML/de/kvirc/credits.html
share/doc/HTML/de/kvirc/eve_ban.html
share/doc/HTML/de/kvirc/eve_clone.html
share/doc/HTML/de/kvirc/eve_connect.html
share/doc/HTML/de/kvirc/evelist.html
share/doc/HTML/de/kvirc/events.html
share/doc/HTML/de/kvirc/examples.html
share/doc/HTML/de/kvirc/index.html
share/doc/HTML/de/kvirc/intro.html
share/doc/HTML/de/kvirc/kvihead.gif
share/doc/HTML/de/kvirc/kvilogo.jpg
share/doc/HTML/de/kvirc/loadscript.html
share/doc/HTML/de/kvirc/rfc1459.html
share/doc/HTML/de/kvirc/savescript.html
share/doc/HTML/de/kvirc/scripting.html
share/doc/HTML/de/kvirc/seddlg.html
share/doc/HTML/de/kvirc/srvdlg.html
share/doc/HTML/de/kvirc/start.html
share/doc/HTML/de/kvirc/usrdlg.html
share/doc/HTML/de/kvirc/variables.html
share/doc/HTML/en/kvirc/aliases.html
share/doc/HTML/en/kvirc/cmd_ascii.html
share/doc/HTML/en/kvirc/cmd_away.html
share/doc/HTML/en/kvirc/cmd_back.html
share/doc/HTML/en/kvirc/cmd_ban.html
share/doc/HTML/en/kvirc/cmd_cache.html
share/doc/HTML/en/kvirc/cmd_chat.html
share/doc/HTML/en/kvirc/cmd_clonescan.html
share/doc/HTML/en/kvirc/cmd_connstats.html
share/doc/HTML/en/kvirc/cmd_ctcp.html
share/doc/HTML/en/kvirc/cmd_dns.html
share/doc/HTML/en/kvirc/cmd_echo.html
share/doc/HTML/en/kvirc/cmd_exec.html
share/doc/HTML/en/kvirc/cmd_file.html
share/doc/HTML/en/kvirc/cmd_foreach.html
share/doc/HTML/en/kvirc/cmd_halt.html
share/doc/HTML/en/kvirc/cmd_if.html
share/doc/HTML/en/kvirc/cmd_inc.html
share/doc/HTML/en/kvirc/cmd_join.html
share/doc/HTML/en/kvirc/cmd_kick.html
share/doc/HTML/en/kvirc/cmd_list.html
share/doc/HTML/en/kvirc/cmd_me.html
share/doc/HTML/en/kvirc/cmd_mode.html
share/doc/HTML/en/kvirc/cmd_msg.html
share/doc/HTML/en/kvirc/cmd_play.html
share/doc/HTML/en/kvirc/cmd_query.html
share/doc/HTML/en/kvirc/cmd_raw.html
share/doc/HTML/en/kvirc/cmd_return.html
share/doc/HTML/en/kvirc/cmd_send.html
share/doc/HTML/en/kvirc/cmd_server.html
share/doc/HTML/en/kvirc/cmd_set.html
share/doc/HTML/en/kvirc/cmd_sound.html
share/doc/HTML/en/kvirc/cmd_talk.html
share/doc/HTML/en/kvirc/cmd_timer.html
share/doc/HTML/en/kvirc/cmd_userlist.html
share/doc/HTML/en/kvirc/cmd_while.html
share/doc/HTML/en/kvirc/cmd_whois.html
share/doc/HTML/en/kvirc/cmd_window.html
share/doc/HTML/en/kvirc/cmdline.html
share/doc/HTML/en/kvirc/cmdlist.html
share/doc/HTML/en/kvirc/commonerror.html
share/doc/HTML/en/kvirc/credits.html
share/doc/HTML/en/kvirc/dlg_proxy.gif
share/doc/HTML/en/kvirc/dlg_prxedit.gif
share/doc/HTML/en/kvirc/dlg_server.gif
share/doc/HTML/en/kvirc/dlg_server.html
share/doc/HTML/en/kvirc/dlg_srvedit.gif
share/doc/HTML/en/kvirc/dlg_srvedit.html
share/doc/HTML/en/kvirc/eve_ban.html
share/doc/HTML/en/kvirc/eve_clone.html
share/doc/HTML/en/kvirc/eve_connect.html
share/doc/HTML/en/kvirc/evelist.html
share/doc/HTML/en/kvirc/events.html
share/doc/HTML/en/kvirc/examples.html
share/doc/HTML/en/kvirc/index.html
share/doc/HTML/en/kvirc/intro.html
share/doc/HTML/en/kvirc/kvihead.gif
share/doc/HTML/en/kvirc/kvilogo.jpg
share/doc/HTML/en/kvirc/loadscript.html
share/doc/HTML/en/kvirc/rfc1459.html
share/doc/HTML/en/kvirc/savescript.html
share/doc/HTML/en/kvirc/scripting.html
share/doc/HTML/en/kvirc/start.html
share/doc/HTML/en/kvirc/usrdlg.html
share/doc/HTML/en/kvirc/variables.html
share/icons/kvirc.xpm
share/icons/mini/kvirc.xpm
share/locale/de/LC_MESSAGES/kvirc.mo
share/locale/it/LC_MESSAGES/kvirc.mo
@dirrm share/apps/kvirc/Ascii
@dirrm share/apps/kvirc/Audio
@dirrm share/apps/kvirc/Config
@dirrm share/apps/kvirc/Images
@dirrm share/apps/kvirc/Incoming
@dirrm share/apps/kvirc/Logs
@dirrm share/apps/kvirc/Misc
@dirrm share/apps/kvirc/Scripts/Ascii
@dirrm share/apps/kvirc/Scripts/Audio
@dirrm share/apps/kvirc/Scripts/Images
@dirrm share/apps/kvirc/Scripts/Misc
@dirrm share/apps/kvirc/Scripts
@dirrm share/apps/kvirc/Translation
@dirrm share/apps/kvirc/pics
@dirrm share/apps/kvirc
@dirrm share/doc/HTML/de/kvirc
@dirrm share/doc/HTML/en/kvirc
bin/kvi_run_netscape.sh
bin/kvi_make_scriptdist.sh
bin/kvi_search_help.sh
lib/libkvicore.la
lib/libkvicore.a
lib/libkvilib.la
lib/libkvilib.a
share/kvirc/config/kvi.mime.conf
share/kvirc/config/kvi.tip_en.conf
share/kvirc/config/kvi.popup.conf
share/kvirc/config/kvi.alias.conf
share/kvirc/config/kvi.view.conf
share/kvirc/config/kvi.server.conf
share/kvirc/help/en/alias.kvihelp
share/kvirc/help/en/ame.kvihelp
share/kvirc/help/en/amsg.kvihelp
share/kvirc/help/en/anotice.kvihelp
share/kvirc/help/en/awhois.kvihelp
share/kvirc/help/en/ban.kvihelp
share/kvirc/help/en/beep.kvihelp
share/kvirc/help/en/cd.kvihelp
share/kvirc/help/en/commands.kvihelp
share/kvirc/help/en/config.kvihelp
share/kvirc/help/en/ctcp.kvihelp
share/kvirc/help/en/dcc.kvihelp
share/kvirc/help/en/debug.kvihelp
share/kvirc/help/en/deop.kvihelp
share/kvirc/help/en/devoice.kvihelp
share/kvirc/help/en/dialog.kvihelp
share/kvirc/help/en/dir.kvihelp
share/kvirc/help/en/dns.kvihelp
share/kvirc/help/en/do.kvihelp
share/kvirc/help/en/echo.kvihelp
share/kvirc/help/en/except.kvihelp
share/kvirc/help/en/exec.kvihelp
share/kvirc/help/en/execv.kvihelp
share/kvirc/help/en/foreach.kvihelp
share/kvirc/help/en/halt.kvihelp
share/kvirc/help/en/help.kvihelp
share/kvirc/help/en/host.kvihelp
share/kvirc/help/en/if.kvihelp
share/kvirc/help/en/ignore.kvihelp
share/kvirc/help/en/invite.kvihelp
share/kvirc/help/en/join.kvihelp
share/kvirc/help/en/kick.kvihelp
share/kvirc/help/en/killproc.kvihelp
share/kvirc/help/en/killtimer.kvihelp
share/kvirc/help/en/links.kvihelp
share/kvirc/help/en/list.kvihelp
share/kvirc/help/en/loadconf.kvihelp
share/kvirc/help/en/log.kvihelp
share/kvirc/help/en/me.kvihelp
share/kvirc/help/en/mode.kvihelp
share/kvirc/help/en/msg.kvihelp
share/kvirc/help/en/multimedia.kvihelp
share/kvirc/help/en/newswindow.kvihelp
share/kvirc/help/en/nick.kvihelp
share/kvirc/help/en/notice.kvihelp
share/kvirc/help/en/notify.kvihelp
share/kvirc/help/en/op.kvihelp
share/kvirc/help/en/operators.kvihelp
share/kvirc/help/en/option.kvihelp
share/kvirc/help/en/parse.kvihelp
share/kvirc/help/en/part.kvihelp
share/kvirc/help/en/play.kvihelp
share/kvirc/help/en/plugin.kvihelp
share/kvirc/help/en/popup.kvihelp
share/kvirc/help/en/proclist.kvihelp
share/kvirc/help/en/query.kvihelp
share/kvirc/help/en/quit.kvihelp
share/kvirc/help/en/quote.kvihelp
share/kvirc/help/en/raw.kvihelp
share/kvirc/help/en/register.kvihelp
share/kvirc/help/en/run.kvihelp
share/kvirc/help/en/say.kvihelp
share/kvirc/help/en/server.kvihelp
share/kvirc/help/en/setflags.kvihelp
share/kvirc/help/en/sound.kvihelp
share/kvirc/help/en/status.kvihelp
share/kvirc/help/en/switch.kvihelp
share/kvirc/help/en/timer.kvihelp
share/kvirc/help/en/topic.kvihelp
share/kvirc/help/en/try.kvihelp
share/kvirc/help/en/unban.kvihelp
share/kvirc/help/en/unexcept.kvihelp
share/kvirc/help/en/unregister.kvihelp
share/kvirc/help/en/utoolbar.kvihelp
share/kvirc/help/en/voice.kvihelp
share/kvirc/help/en/while.kvihelp
share/kvirc/help/en/who.kvihelp
share/kvirc/help/en/whois.kvihelp
share/kvirc/help/en/whowas.kvihelp
share/kvirc/help/en/window.kvihelp
share/kvirc/help/en/writefile.kvihelp
share/kvirc/help/en/writeproc.kvihelp
share/kvirc/help/en/events.kvihelp
share/kvirc/help/en/onchannelmessage.kvihelp
share/kvirc/help/en/onchannelmode.kvihelp
share/kvirc/help/en/onchannelnotice.kvihelp
share/kvirc/help/en/onchannelsync.kvihelp
share/kvirc/help/en/onconnect.kvihelp
share/kvirc/help/en/onctcpmultimedia.kvihelp
share/kvirc/help/en/onctrl0.kvihelp
share/kvirc/help/en/onctrl1.kvihelp
share/kvirc/help/en/onctrl2.kvihelp
share/kvirc/help/en/onctrl3.kvihelp
share/kvirc/help/en/onctrl4.kvihelp
share/kvirc/help/en/onctrl5.kvihelp
share/kvirc/help/en/onctrl6.kvihelp
share/kvirc/help/en/onctrl7.kvihelp
share/kvirc/help/en/onctrl8.kvihelp
share/kvirc/help/en/onctrl9.kvihelp
share/kvirc/help/en/ondccchatconnected.kvihelp
share/kvirc/help/en/ondccchatmessage.kvihelp
share/kvirc/help/en/ondccchatterminated.kvihelp
share/kvirc/help/en/ondccgettransfercomplete.kvihelp
share/kvirc/help/en/ondccsendtransfercomplete.kvihelp
share/kvirc/help/en/ondisconnect.kvihelp
share/kvirc/help/en/onf1.kvihelp
share/kvirc/help/en/onf10.kvihelp
share/kvirc/help/en/onf11.kvihelp
share/kvirc/help/en/onf12.kvihelp
share/kvirc/help/en/onf2.kvihelp
share/kvirc/help/en/onf3.kvihelp
share/kvirc/help/en/onf4.kvihelp
share/kvirc/help/en/onf5.kvihelp
share/kvirc/help/en/onf6.kvihelp
share/kvirc/help/en/onf7.kvihelp
share/kvirc/help/en/onf8.kvihelp
share/kvirc/help/en/onf9.kvihelp
share/kvirc/help/en/oninvite.kvihelp
share/kvirc/help/en/onirc.kvihelp
share/kvirc/help/en/onjoin.kvihelp
share/kvirc/help/en/onkick.kvihelp
share/kvirc/help/en/onmejoin.kvihelp
share/kvirc/help/en/onmekick.kvihelp
share/kvirc/help/en/onmenotice.kvihelp
share/kvirc/help/en/onmepart.kvihelp
share/kvirc/help/en/onmeprivatemessage.kvihelp
share/kvirc/help/en/onnickdoubleclicked.kvihelp
share/kvirc/help/en/onpart.kvihelp
share/kvirc/help/en/onservernotice.kvihelp
share/kvirc/help/en/onserverping.kvihelp
share/kvirc/help/en/onshutdown.kvihelp
share/kvirc/help/en/onstartup.kvihelp
share/kvirc/help/en/ontopic.kvihelp
share/kvirc/help/en/onunhandledliteral.kvihelp
share/kvirc/help/en/onunhandlednumeric.kvihelp
share/kvirc/help/en/onuserwindowfiledrop.kvihelp
share/kvirc/help/en/onuserwindowinput.kvihelp
share/kvirc/help/en/onuserwindowselected.kvihelp
share/kvirc/help/en/onwhoisreply.kvihelp
share/kvirc/help/en/functions.kvihelp
share/kvirc/help/en/identifiers.kvihelp
share/kvirc/help/en/s_activewindow.kvihelp
share/kvirc/help/en/s_allchannels.kvihelp
share/kvirc/help/en/s_allchats.kvihelp
share/kvirc/help/en/s_allonchan.kvihelp
share/kvirc/help/en/s_allqueries.kvihelp
share/kvirc/help/en/s_allwindows.kvihelp
share/kvirc/help/en/s_b.kvihelp
share/kvirc/help/en/s_calc.kvihelp
share/kvirc/help/en/s_chan.kvihelp
share/kvirc/help/en/s_char.kvihelp
share/kvirc/help/en/s_chat.kvihelp
share/kvirc/help/en/s_commandline.kvihelp
share/kvirc/help/en/s_config.kvihelp
share/kvirc/help/en/s_connstarttime.kvihelp
share/kvirc/help/en/s_conntime.kvihelp
share/kvirc/help/en/s_conntimes.kvihelp
share/kvirc/help/en/s_console.kvihelp
share/kvirc/help/en/s_cr.kvihelp
share/kvirc/help/en/s_date.kvihelp
share/kvirc/help/en/s_deflogfile.kvihelp
share/kvirc/help/en/s_dialogmagic.kvihelp
share/kvirc/help/en/s_dialogresult.kvihelp
share/kvirc/help/en/s_dictcount.kvihelp
share/kvirc/help/en/s_dictlist.kvihelp
share/kvirc/help/en/s_direxists.kvihelp
share/kvirc/help/en/s_durationtostring.kvihelp
share/kvirc/help/en/s_fileexists.kvihelp
share/kvirc/help/en/s_filesize.kvihelp
share/kvirc/help/en/s_getenv.kvihelp
share/kvirc/help/en/s_getflags.kvihelp
share/kvirc/help/en/s_hostname.kvihelp
share/kvirc/help/en/s_icon.kvihelp
share/kvirc/help/en/s_inetaton.kvihelp
share/kvirc/help/en/s_inetntoa.kvihelp
share/kvirc/help/en/s_isconnected.kvihelp
share/kvirc/help/en/s_isdocked.kvihelp
share/kvirc/help/en/s_isknown.kvihelp
share/kvirc/help/en/s_isme.kvihelp
share/kvirc/help/en/s_isnumber.kvihelp
share/kvirc/help/en/s_ison.kvihelp
share/kvirc/help/en/s_isop.kvihelp
share/kvirc/help/en/s_isreg.kvihelp
share/kvirc/help/en/s_istimer.kvihelp
share/kvirc/help/en/s_isvalidip.kvihelp
share/kvirc/help/en/s_isvoice.kvihelp
share/kvirc/help/en/s_iswellknown.kvihelp
share/kvirc/help/en/s_iswindow.kvihelp
share/kvirc/help/en/s_k.kvihelp
share/kvirc/help/en/s_itemcount.kvihelp
share/kvirc/help/en/s_kvircdir.kvihelp
share/kvirc/help/en/s_kvirclogdir.kvihelp
share/kvirc/help/en/s_kvircscriptdir.kvihelp
share/kvirc/help/en/s_lf.kvihelp
share/kvirc/help/en/s_lowcase.kvihelp
share/kvirc/help/en/s_mask.kvihelp
share/kvirc/help/en/s_me.kvihelp
share/kvirc/help/en/s_myhostname.kvihelp
share/kvirc/help/en/s_myip.kvihelp
share/kvirc/help/en/s_mymask.kvihelp
share/kvirc/help/en/s_mynick.kvihelp
share/kvirc/help/en/s_myrealname.kvihelp
share/kvirc/help/en/s_myumode.kvihelp
share/kvirc/help/en/s_myusername.kvihelp
share/kvirc/help/en/s_noponchan.kvihelp
share/kvirc/help/en/s_numtimetostring.kvihelp
share/kvirc/help/en/s_o.kvihelp
share/kvirc/help/en/s_oponchan.kvihelp
share/kvirc/help/en/s_option.kvihelp
share/kvirc/help/en/s_pluginloaded.kvihelp
share/kvirc/help/en/s_proccmdline.kvihelp
share/kvirc/help/en/s_procexitcode.kvihelp
share/kvirc/help/en/s_procmagic.kvihelp
share/kvirc/help/en/s_procpid.kvihelp
share/kvirc/help/en/s_procstderr.kvihelp
share/kvirc/help/en/s_procstdout.kvihelp
share/kvirc/help/en/s_procwindow.kvihelp
share/kvirc/help/en/s_query.kvihelp
share/kvirc/help/en/s_r.kvihelp
share/kvirc/help/en/s_rand.kvihelp
share/kvirc/help/en/s_range.kvihelp
share/kvirc/help/en/s_readfile.kvihelp
share/kvirc/help/en/s_selected.kvihelp
share/kvirc/help/en/s_selectedhosts.kvihelp
share/kvirc/help/en/s_serverip.kvihelp
share/kvirc/help/en/s_selectedmasks.kvihelp
share/kvirc/help/en/s_selectedusernames.kvihelp
share/kvirc/help/en/s_serverhostname.kvihelp
share/kvirc/help/en/s_servernetwork.kvihelp
share/kvirc/help/en/s_serverport.kvihelp
share/kvirc/help/en/s_status.kvihelp
share/kvirc/help/en/s_strcat.kvihelp
share/kvirc/help/en/s_strfind.kvihelp
share/kvirc/help/en/s_strfindcs.kvihelp
share/kvirc/help/en/s_strleft.kvihelp
share/kvirc/help/en/s_strlefttofirst.kvihelp
share/kvirc/help/en/s_strlefttofirstcs.kvihelp
share/kvirc/help/en/s_strlefttolast.kvihelp
share/kvirc/help/en/s_strlefttolastcs.kvihelp
share/kvirc/help/en/s_strlen.kvihelp
share/kvirc/help/en/s_strmatch.kvihelp
share/kvirc/help/en/s_strmatchcs.kvihelp
share/kvirc/help/en/s_strmid.kvihelp
share/kvirc/help/en/s_strreplace.kvihelp
share/kvirc/help/en/s_strreplacecs.kvihelp
share/kvirc/help/en/s_strrevfind.kvihelp
share/kvirc/help/en/s_strrevfindcs.kvihelp
share/kvirc/help/en/s_strright.kvihelp
share/kvirc/help/en/s_strrightfromfirst.kvihelp
share/kvirc/help/en/s_strrightfromfirstcs.kvihelp
share/kvirc/help/en/s_strrightfromlast.kvihelp
share/kvirc/help/en/s_strrightfromlastcs.kvihelp
share/kvirc/help/en/s_time.kvihelp
share/kvirc/help/en/s_timermagic.kvihelp
share/kvirc/help/en/s_timername.kvihelp
share/kvirc/help/en/s_times.kvihelp
share/kvirc/help/en/s_topic.kvihelp
share/kvirc/help/en/s_tryresult.kvihelp
share/kvirc/help/en/s_u.kvihelp
share/kvirc/help/en/s_upcase.kvihelp
share/kvirc/help/en/s_uptime.kvihelp
share/kvirc/help/en/s_username.kvihelp
share/kvirc/help/en/s_version.kvihelp
share/kvirc/help/en/s_voiceonchan.kvihelp
share/kvirc/help/en/s_window.kvihelp
share/kvirc/help/en/index.kvihelp
share/kvirc/help/en/ircintro.kvihelp
share/kvirc/help/en/jarkko.kvihelp
share/kvirc/help/en/nohelpavailable.kvihelp
share/kvirc/help/en/rfc1459.kvihelp
share/kvirc/help/en/syntax.kvihelp
share/kvirc/help/en/introdKVIRC.kvihelp
share/kvirc/help/en/introdIRC.kvihelp
share/kvirc/help/en/dalNetWatchList.kvihelp
share/kvirc/help/en/doc_ctcp_multimedia.kvihelp
share/kvirc/help/en/doc_dcc_voice_proto.kvihelp
share/kvirc/help/en/doc_plugin_fm.kvihelp
share/kvirc/help/en/doc_plugin_fserve.kvihelp
share/kvirc/help/en/doc_plugin_image.kvihelp
share/kvirc/help/en/doc_plugin_mydialog.kvihelp
share/kvirc/help/en/doc_plugin_xmms.kvihelp
share/kvirc/help/en/misc.kvihelp
share/kvirc/help/en/qh_kvichannel.kvihelp
share/kvirc/help/en/qh_kvidlgoptuser.kvihelp
share/kvirc/help/en/qh_kvidlgscript.kvihelp
share/kvirc/help/en/qh_kviinput.kvihelp
share/kvirc/help/en/qh_kviscriptwizard.kvihelp
share/kvirc/help/en/qh_kvisystray.kvihelp
share/kvirc/help/en/qh_kvitaskbar.kvihelp
share/kvirc/help/en/qh_nohelpavailable.kvihelp
share/kvirc/help/en/qh_qwidget_aliasestab.kvihelp
share/kvirc/help/en/qh_qwidget_defumodetab.kvihelp
share/kvirc/help/en/qh_qwidget_eventstab.kvihelp
share/kvirc/help/en/qh_qwidget_nicknametab.kvihelp
share/kvirc/help/en/qh_qwidget_popupstab.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage1.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage2.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage3.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage4.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage5.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage6.kvihelp
share/kvirc/help/en/qh_qwidget_scriptwizardpage7.kvihelp
share/kvirc/help/en/qh_qwidget_toolbartab.kvihelp
share/kvirc/help/en/qh_qwidget_variablestab.kvihelp
share/kvirc/help/en/quickhelp.kvihelp
share/kvirc/pics/kvirc_48x48_1.xpm
share/kvirc/pics/kvirc_48x48_2.xpm
share/kvirc/pics/kvirc_1_16x16.xpm
share/kvirc/pics/kvirc_1_32x32.xpm
share/kvirc/pics/kvirc_1_48x48.xpm
share/kvirc/pics/kvirc_7_32x32.xpm
share/kvirc/pics/kvirc_7_48x48.xpm
share/kvirc/pics/kvirc_8_32x32.xpm
share/kvirc/pics/kvirc_8_48x48.xpm
share/kvirc/pics/kvi_win_icons.png
share/kvirc/pics/kvi_out_icons.png
share/kvirc/pics/kvi_toolbar_big.png
share/kvirc/pics/kvi_connect_state.png
share/kvirc/pics/kvi_splash.png
share/kvirc/pics/kvi_listbox.png
share/kvirc/pics/kvi_systray_big.png
share/kvirc/pics/kvi_file_icons.png
share/kvirc/pics/kvi_browser_icons.png
share/kvirc/pics/kvi_tipoftheday.png
share/kvirc/pics/kvi_about_bg_00.png
share/kvirc/pics/kvi_about_bg_01.png
share/kvirc/pics/kvi_about_bg_02.png
share/kvirc/pics/kvi_help_icons.png
share/kvirc/pics/kvi_wizard_1.png
share/kvirc/pics/kvi_wizard_2.png
share/kvirc/pics/kvi_wizard_3.png
share/kvirc/pics/kvi_wizard_4.png
share/kvirc/pics/kvi_dock.png
share/kvirc/locale/it.mo
@dirrm share/kvirc/config
@dirrm share/kvirc/help/en
@dirrm share/kvirc/help
@dirrm share/kvirc/locale
@dirrm share/kvirc/pics
@dirrm share/kvirc