Commit graph

214 commits

Author SHA1 Message Date
hubertf
a26b957174 Update silc-server to 0.8.
Patches contributed by Lubomir Sedlacik <salo@Xtrmntr.org> in PR 15779

Changes from 0.7.9 to 0.8:
==========================

* Removed 0.6.x backwards support.
* Added `prefer_ipv6' argument to the functions
  silc_net_gethostbyname[_async].  If it is TRUE it will return
  IPv6 address over IPv4.  If FALSE IPv4 address is returned
  even if IPv6 address was found.
* Added support silc_net_create_connection[_async] to fallback
  to IPv4 address if IPv6 address could not be used (like if
  it doesn't work on a specific system).  Affected file in
* Added `user_count' to the SilcChannelEntry which now tells the
  number of users on the channel.  The user count is now saved
  in normal server of global channels as well.
* Added following new config file settings:
  channel_rekey_secs, key_exchange_rekey, key_exchange_pfs,
  key_exchange_timeout, conn_auth_timeout, connections_max,
  links_max.
  Implemented all the new config settings handling in the server.
  Optimized the use of SKE Mutual flag usage.  Use it only
  if connection authentication protocol is not based in public
  key authentication.
* Added new configuration options and blocks:
  keepalive_secs, reconnect_count, reconnect_interval,
  reconnect_interval_max, reconnect_keep_trying and
  require_reverser_lookup.  Added ConnectionParam block, and
  implemented the connection parameters when connecting as
  initiator and when accepting connections as responder.
* Splitted the doc/example_silcd.conf.in.  Separated the crypto
  algorithm parts and created new file silcalgs.conf, that
  is now included from the example_silcd.conf.in.
* Optimized the silc_server_connect_to_router_second to take
  the connection configuration object from the SilcServerConnection
  object instead of finding it during the connecting phase.
  Added the configuration object to SilcServerConnection struct.
* Fixed the public key authentication to allocate always the
  destination signature buffer instead of using static buffer.
* Added new Passphrase and Publickey authentication methods to
  config file, allowing both public key and passphrase based
  authentication to be set at the same time.
  Added `prefer_passphrase_auth' setting in config file which
  can be used to set to prefer passwd auth if both passwd and
  public key is set.  If not set, public key is preferred.
  This has effect only when being initiator (responder will try
  both anyway).
  Added support for authentication with passphrase and public key
  at the same time.  The passphrase is tried first always since
  it is faster to check.
* Merged the new SILC Config library, with the server parsing
  support.  Read the header file silcconfig.h or the toolkit
  documentation for the news.
2002-03-03 23:49:49 +00:00
hubertf
3533c420aa Update of chat/silc-client to version 0.8.
Contributed by Lubomir Sedlacik <salo@xtrmntr.org> in PR 15772.

Changes:

- added support for optional perl support to Makefile
- added PLIST.perl for package with perl support enabled
- updated MASTER_SITEs
- updated patches

This version introduces the new Irssi-SILC client which is based in the new
Irssi 0.8.1 version.  In addition of being entirely new irssi base this
version also introduces the perl scripting support.  With this scripting
support it is possible to create scripts that introduce new features and new
commands.  It is also possible to create a bot with it.

The client config file has changed too.  The old "silc.conf" (which was the
silc specific config file) is now gone, and the "config" (which was the irssi
specific config file) is now renamed as silc.conf, and includes both silc
stuff and irssi stuff.  So, after installing this new client I suggest
removing the old silc.conf file since otherwise when you run the new client it
will yell you about the config file.  Be warned.

When you look at the new silc.conf config file you will see settings like,
"crypto_default_cipher", "crypto_default_hash" and "crypto_default_hmac".
These are the silc specific settings and you can freely edit them (or use
/SET command) to include what ever value you prefer.  The default values
should fit to all since they are the SILC protocol default ones.  Anyway,
they are editable if you want to edit, but you don't need to edit them.

New commands that this new client introduces is for example /STATUSBAR.
With this command you can manage the different bars on the screen.  Like,
whether to show topic bar or not etc.

most significant changes in silc-client since version 0.7.6.2:

* Fixed CUMODE_CHANGE notify handling to change the mode of correct client
* Allow zero length channel messages inside the Channel Message Payload
* The silc_cipher_register, silc_hash_register and silc_hmac_register now
  checks if the object to be registered is registered already
* Merged the new SILC Config library, with the server parsing support.
  Read the header file silcconfig.h or the toolkit documentation for the
  news.
* Added new Passphrase and Publickey authentication methods to config file,
  allowing both public key and passphrase based authentication to be set at
  the same time.
* Added `prefer_passphrase_auth' setting in config file which can be used to
  set to prefer passwd auth if both passwd and public key is set. If not set,
  public key is preferred.  This has effect only when being initiator
  (responder will try both anyway).
* Added support for authentication with passphrase and public key at the same
  time. The passphrase is tried first always since it is faster to check.
* Fixed the public key authentication to allocate always the destination
  signature buffer instead of using static buffer.
* Add the client on channel after it was resolved at the channel message
  receiving, and it was not already on the channel.
* Fixed command line parameter handling. All SILC initialization is now done
  in silc_core_init() which also fixes autoconnecting to servers.
* Rewrote the notify handling in Irssi SILC client to not call the events as
  signals. Fixes problems with Perl support.
* Send the auto-nicking NICK command in client library with little timeout
  after connecting.
* Fixed padding problem in PKCS#1. The padding was not actually random since
  the random number generator was used incorrectly. This security bug affects
  only when encrypting with PKCS#1, and it is not currently used at all in
  SILC. SILC only use signing with PKCS#1.
* Fixed a NICK change bug in client library, to not recreate the
  client_entry->channels hash table everytime nick is changed.
* Fixed NICK change printing in Irssi SILC Client. Fixed KICKED notify
  printing in Irssi SILC Client.
* Fixed the lib/silcsftp/sftp_fs_memory.c to use silcutil routines instead
  of calling directly OS routines.
* Added proper initializations to silc's irssi code, so it's now possible
  to load it as module.
* Added silc_schedule_reinit function to do the enlarging of the max tasks
  handling capabilities of the scheduler.
* Added `prefer_ipv6' argument to the functions
  silc_net_gethostbyname[_async]. If it is TRUE it will return IPv6 address
  over IPv4. If FALSE IPv4 address is returned even if IPv6 address was
  found.
* Added support silc_net_create_connection[_async] to fallback to IPv4
  address if IPv6 address could not be used (like if it doesn't work on
  a specific system).
2002-03-03 23:27:48 +00:00
wiz
aecbeebc9d regen 2002-02-21 12:24:22 +00:00
itojun
4ecc512156 have USE_INET6 2002-02-19 08:20:45 +00:00
seb
66111c6d15 Introduce new framework for handling info files generation and installation.
Summary of changes:
- removal of USE_GTEXINFO
- addition of mk/texinfo.mk
- inclusion of this file in package Makefiles requiring it
- `install-info' substituted by `${INSTALL_INFO}' in PLISTs
- tuning of mk/bsd.pkg.mk:
    removal of USE_GTEXINFO
    INSTALL_INFO added to PLIST_SUBST
    `${INSTALL_INFO}' replace `install-info' in target rules
    print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info'
- a couple of new patch files added for a handful of packages
- setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it
- devel/cssc marked requiring texinfo 4.0
- a couple of packages Makefiles were tuned with respect of INFO_FILES and
  makeinfo command usage

See -newly added by this commit- section 10.24 of Packages.txt for
further information.
2002-02-18 15:14:00 +00:00
hubertf
300f4b6be9 Update silc-client to 0.7.6.2. Changes:
- Fixed a bug in hash table tarversing.
 - Fixed private message handling.
 - Fixed the channel message payload decryption in the function
   silc_channel_message_payload_decrypt to not modify the original
   buffer before it is verified that the message decrypted correctly.
   Otherwise, next time it is called with correct channel key it won't
   encrypt since the payload is corrupted.
 - Fixed SILC_LOG_ERROR and SILC_LOG_WARNING
 - Fixed the event_mode CMODE handler to not crash when mode is changed
   and +k mode is set in the channel.
 - Added SILC_CLIENT_FILE_KEY_AGREEMENT_FAILED file transfer error than can
   occur while key agreement protocol.
 - Fixed the file transfer's key agreement payload to include zero port
   also if the hostname is NULL because it could not be bound.
 - Call file transfer monitor callback now also if error occurs during key
   agreement protocol.
 - Check that the file exists locally before sending the file transfer
   request at all.

Patch contributed by Lubomir Sedlacik <salo@xtrmntr.org> in PR 15630.











































SSH Secure Shell 3.0.0 (Build 199)
Copyright (c) 2000-2001 SSH Communications Security Corp - http://www.ssh.com/

This copy of SSH Secure Shell is a non-commercial version.
This version does not include PKI and PKCS #11 functionality.


This program uses RSA BSAFE® Crypto-C by RSA Security Inc.

Last login: Mon Feb 18 00:10:56 2002 from pd9eb5184.dip.t-
NetBSD 1.5.2 (SMAUG) #9: Tue Sep 18 17:12:07 MEST 2001

   *** Welcome to smaug.fh-regensburg.de! ***            ,        ,
                                                        /(        )`
   This machine is hooked up to the net to support      \ \___   / |
   development and evaluation of NetBSD.                /- _  `-/  '
   Unauthorized access is ILLEGAL!                     (/\/ \ \   /\
                                         Welcome to    / /   | `    \
                                         NetBSD V1.5   O O   ) /    |
   Administration: Hubert Feyrer                    \  `-^--'`<     '
   <feyrer@smaug.fh-regensburg.de>                    (_.)  _  )   /
                                                       `.___/`    /
                                                         `-----' /
   --- NOTICES ---                          <----.     __ / __   \
            within the next week. Note      <----|====O)))==) \) /====
            access to serial console is     <----'    `--' `.__,' \
            revoked!                                     |        |
   011008 - Broken RAM module removed,                   \       /  (FL)
            NetBSD 1.5.2 kernel booted.             ______( (_  / \_____
            Sorry for the downtime!               ,'  ,-----'   |       \
                                                  `--{__________)       \/
smaug% screen -x bsd3
drwxr-xr-x   3 feyrer  cvs   512 Feb 18 00:04 patches
yui# Als
Als: Command not found.
^O^R
^@^@P^@^@^@ ^@^@^@^H^@^@^@þB^B­I@^A
^F^@þB^B¼o@^A
^A

þB^BÒo@^A
È^A

þB^BÄo@yui#
yui#
CVS/           Makefile       PLIST          distinfo.orig
DESCR          Makefile.orig  distinfo       patches/
yui# o@B
o@B: Command not found.
yui#

yui#
yui#
CVS/           Makefile       PLIST          distinfo.orig
DESCR          Makefile.orig  distinfo       patches/
yui# pwd
/disk1/cvs/pkgsrc/chat/silc-client
2002-02-17 23:12:31 +00:00
hubertf
793d1d8ea7 Update irssi to 0.8.1.
Patch submitted by Otto Hilska <mutru@cc.hut.fi> in private mail.
Changes:


v0.8.1 2002-02-17  Timo Sirainen <tss@iki.fi>

	* Expected bugfix release :) Worst thing was that I forgot always to
	  debug why /cat /dev/urandom crashed irssi. Well, found two ways
	  that could make it happen.

	- Irssi was linked with -lcurses AND -lncurses
	- Logging could have produced GLib errors with certain conditions
	- A few compiler warnings fixes

v0.8.0 2002-02-17  Timo Sirainen <tss@iki.fi>

	* I really should make releases more often. Once in every two weeks
	  used to be nice. Maybe once in a month would be good now. There
	  was many reasons why this release took this long .. first being
	  addicted to books, then life stuff, then it took forever to figure
	  out that irssi was crashing under solaris (and not because of one
	  of the big changes I made while moving to IRC from solaris box).

	  And now.. well, after this release I'll start working more with
	  the yet another irssi rewrite :) The code is getting too ugly
	  again, and some things need rewriting to support some new features
	  more easily. It will take a while to get it all done, so I'll try
	  to keep updating this "stable" irssi as well.

	  There's too many changes since 0.7.98.3 (and .4 which was just
	  minor bugfix), about 6600 lines in ChangeLog. I'm not going to
	  read all that, so I'll just list the biggest changes that I can
	  remember now.

	  This version was supposed to be called 0.7.99, but since there
	  were so many changes, and I originally though of putting 0.8.0
	  out long time ago, and 0.7.100 would look stupid, I guess it's
	  time for 0.8.0 :)

	+ /UPGRADE - upgrade irssi to new version on-the-fly without
	  disconnecting from server, so other people won't even notice you
	  quit from IRC. This ONLY executes the new binary, it does NOT
	  download/compile/whatever irssi.
	+ UTF-8 support with /SET term_type UTF-8, default is "8bit".
	  It's also automatically detected from system locale (if supported).
	+ Fully configurable statusbar. Yes. FULLY. Don't bother asking if
	  something could be done with it, it can, just ask how. Well,
	  there's a few things I didn't have time/energy to finish:
	  window-specific statusbar groups and support for multiple input
	  lines in screen.
	+ Rewritten keyboard handling. No more the CTRL-X and ALT-x handling,
	  now you can create whatever keyboard combinations your terminal
	  can send to irssi.
	+ Rewritten text buffer (scrollback) handling.
	+ Irssi doesn't depend on curses anymore, so it can be installed
	  anywhere a working terminfo/termcap exists. This also allows us to
	  use all the possible colors terminal has (curses limits to 64), so
	  eg. %0 is now always black background, not the default terminal
	  background (%n).

	  Several systems have also terminfo/termcap database that doesn't
	  support colors, so I've added /SET term_force_colors option to
	  force ANSI-style colors. Note that eg. BitchX does this by default.

	  Getting rid of curses allows also one great thing for you people
	  copy&pasting long urls :) If a long word gets split to two lines,
	  doubleclicking the word selects it from both lines.
	+ Rewritten server event redirections. Before it was pretty easy to
	  mess up irssi's expectations of what server sends, and some things
	  might have stayd in the buffer forever. Especially notify lists
	  messed up /WHOIS requests for the notified people. Now all this
	  should be history and it's a lot easier for scripts to use the
	  redirections as well.
	+ New ICB chat protocol plugin - very basic and doesn't support
	  nicklist, but works. :)
	+ --home and --config parameters to specify alternate ~/.irssi
	  directory or config file.
	+ Scripts can be unloaded separately with /SCRIPT UNLOAD. You can get
	  a list of runnning scripts with /SCRIPT.
	+ /SERVER PURGE [<target>] - purge the output buffer (for given
	  target). Useful for example if you accidentally paste 100 lines :)
	  The buffer is automatically purged if you get kicked from channel,
	  or if you /PART the channel and there's more than 10 lines in
	  output buffer.
2002-02-17 22:41:38 +00:00
jlam
8d8f893065 Update chat/gaim to 0.52. Relevant changes from version 0.50 include:
* Better buddy icon transparency (thanks SeanEgan)
        * Fixed a little bug with connecting via proxy (thanks
          for reminding me of this, Manish Singh)
        * Various jabber bug fixes/enhancements (JSeymour)
        * Arrow buttons in log viewer and some other dialogs
          work (thanks Ben Miller)
        * Option to only send auto-response while idle (thanks
          Sean Egan)
        * Control time between sending auto-responses (thanks
          Mark Doliner)
2002-02-17 22:31:18 +00:00
skrll
08bdd44549 mkdir -> ${MKDIR}
rmdir -> ${RMDIR}
rm -> ${RM} (${RM} added to PLIST_SUBST)
chmod -> ${CHMOD}
chown -> ${CHOWN}
2002-02-15 10:12:28 +00:00
jlam
049c47a82b Add location where snapshots maybe found, as this package tracks the
snapshot "release" of naim.
2002-02-07 22:52:58 +00:00
tv
d93fe0cd60 pkglint. 2002-02-06 14:44:02 +00:00
tv
831daed969 Update to release candidate snapshot 20020204. Some minor bugfixes and
an updated libfiretalk.
2002-02-06 14:40:38 +00:00
hubertf
45612504b1 Update silc-server to 0.7.9. Changes:
0.7.9: This time a lot of little bugs has been fixed and some major crashbugs
       as well.  Namely, I found problem in the hash table routine that could
       have caused some really weird problems, and I've encountered such
       problem at least in one core file earlier.  Some additional desync
       problems has been fixed as well, so if you are running a normal server
       then upgrading is strongly recommended.

check full changelog at:

  http://silcnet.org/txt/changes-server.txt

Patch submitted by Lubomir Sedlacik <salo@silcnet.org> in PR 15453
2002-02-02 10:58:31 +00:00
hubertf
4efb009db4 Update silc-server from 0.7.6 to 0.7.8. Changes:
this release includes many patches which fix various problems ending in
crashing the server. upgrade is strongly recommended.

0.7.7: This server attempts to fix various crash bugs, for example one crash
       relating to BAN command is fixed.

0.7.8: Another quick bugfix to fix the descync problems of normal SILC server
       when it connects to SILC router.  The descyning could happen if there
       were a lot of channels, like we had on Sunday and Monday after being
       slashdotted.  Upgrading is strongly recommended if you are running
       a server that is connected to a router.  Took me only 6 hours to find
       the problem...

Patch submitted by Lubomir Sedlacik <salo@silcnet.org> in PR 15416
2002-02-02 10:31:22 +00:00
martti
57f6d0966f Added p5-Net-AIM and p5-Net-AOLIM 2002-01-31 07:36:19 +00:00
martti
2842dd73f7 Imported p5-Net-AOLIM-1.2 (provided by Amitai Schlair in pkg/15210)
Object-Oriented interface to the AOL Instant Messenger TOC client protocol.
2002-01-31 07:34:51 +00:00
martti
3c389d272e Imported p5-Net-AIM-1.21 (provided by Amitai Schlair in pkg/15287)
This module is an implementation of the AOL Instant Messenger TOC
protocol.  I've written and rewritten almost all the code.  It
works fairly and is pretty reliable. The intent for this version
was to make an easily usable module for creating AIM bots.
2002-01-31 07:33:40 +00:00
drochner
4c220a94ae convert to new Python framework 2002-01-29 11:33:54 +00:00
hubertf
613737d6e1 Update silc-client to 0.7.3. Changes:
changes in the package:

 - patch-ab is no longer needed, integrated into distribution.  patch-ac has
   been moved in it's place
 - minor change in Makefile, long transscription of ${PKG_SYSCONFDIR} was
   changed into one variable
 - patch-aa was modified to follow change in Makefile.in

changes in the silc-client:

 0.7.3: This version fixes the NICK command to always give the unformatted
        nickname, instead of possibility of formatted nickname, fixes the
        GETKEY command to save the public key to correct filename, and to
        first resolve the client information and server information only if
        client was not found.  The public keys are now (when connecting to
        server for first time) saved with using the IP address of the server,
        instead of the hostname of the server.  The old hostname format is
        used as a fall back method if the IP address based filename could
        not be found.

Submitted by Lubomir Sedlacik <salo@Xtrmntr.org> in PR 15380
2002-01-26 18:30:08 +00:00
hubertf
347bab6e43 Update silc-server to 0.7.6:
changes in the package since 0.7.3 to 0.7.6:

 - rewrite of package's Makefile. big parts of INSTALL and DEINSTALL scripts
   were moved into Makefile itself
 - silc-server now creates user silcd:silcd who run silcd by default
 - INSTALL and DEINSTALL files are smaller and contains only neccessary
   actions which cannot be executed from Makefile
 - partial rewrite of rc script, added rcvar support, it is neccessary to have
   silcd=YES in rc.conf now to start silc server (unless force is used)
 - changed motd.txt to contain BSD daemon ;)
 - updated patch-aa and patch-ab files

changes in the silc-server software since 0.7.3 to 0.7.6:

 0.7.4: This version fixes a crash that can occur mainly on normal server.
        Upgrading is recommended to avoid instability later.  This version
        also fixes the BAN and INVITE commands that were pretty much broken.
        This version also disallows a situation where the nickname that server
        sets initially for the client could be a bad nickname (like nick
        including whitespaces).  It used to be possible but now server checks
        for this.  Johnny also introduces a new logging system to this version
        with log files being open all the time and not opened every time
        something is logged, and log rotation support.

 0.7.5: Hopefully fixed the most nasty bugs.  I found bunch of weird bugs
        that causes server syncing problems.  Upgrading is strongly
        recommended as soon as possible.

 0.7.6: Only a minor bugfix release to fix the CUMODE command that allowed
        non-founder channel users to remove modes of the founder, and to fix
        GETKEY always return server's public key if it is requested, and to
        fix the TOPIC_CHANGE notify to not route it twice to router.

Patch submitted by Lubomir Sedlacik <salo@Xtrmntr.org> in PR 15373
2002-01-26 14:43:16 +00:00
simonb
9a5f550965 naim seems to be a quickly moving target - the two-or-three day old
distfile isn't available anymore.

Update to naim-0.11.1-2002-01-23-2329 (pkg version 0.11.1.20020123)
and put a copy of the distfile on ftp.netbsd.org.
2002-01-25 22:45:50 +00:00
tv
e7fcbb73fa Add naim. 2002-01-25 15:54:40 +00:00
tv
e439661754 naim 0.11.1, an AIM/IRC chat client using a ncurses text interface.
=====
naim is a chat program for use with America Online's AOL Instant
Messenger. The name naim is derived from n's AIM client, but it could
also have been derived from ncurses AIM client because of naim's use of
the ncurses text-mode screen library.

naim is based on firetalk, the multiprotocol chat library.  naim is
capable of connecting to IRC as well as AIM services.
2002-01-25 15:53:56 +00:00
drochner
ee84b68686 use python buildlink 2002-01-18 14:37:20 +00:00
tron
0f590bb06d Update "xchat" package to version 1.8.7. Change since version 1.8.3:
- Updated Swedish translation (Christian Rose).
 - Updated Russian translation (Anton Farygin).
 - Added Latvian translation (Artis Trops).
 - Made a work-around for a refresh glitch when delinking a tab under
   gnome (the topic bar was overlapped).
 - Fixed the need for signed chars (e.g. on PPC and s390).
 - Fixed background garbage being drawn when using hidden tabs.
 - Cleaned up alot of the nick completion code. Fixed some behaviour
   too (Mukund, dinkles, me).
 - Connect Cmd is executed again if you get auto-reconnected.
 - Added safe-gaurd to stop duplicate nicks in userlist.
 - Added an option to automatically remove finished/failed dccs
   from the list. Use /set dcc_remove ON to enable it.
 - Added an option to truncate long channel tabs. Use:
   /set truncchans xx, where xx is the max chars (Jyrki Muukkonen).
 - Made the default popup menu, dialog buttons, userlist buttons,
   usermenu and urlhandlers translatable (via gettext).
 - MMX tinting is now built on any x86 machine (it's checked at
   runtime anyway).
 - Added "Automatic Unmark Away" option in setup->away (Mads Martin).
 - Immediately abort file transfers when out of space.
 - Fixed a serious CTCP reply vulnerability (Hanno Hecker).
 - Updated Danish translation (Morten Brix Pedersen).
 - Updated Spanish translation (Antonio de la Torre).
 - Updated French translation (Olivier Berger).
 - The server "Connect cmd" is now executed before auto-join-channels,
   so you can use it to authenticate to nickserv etc.
 - Fixed autoresume again, for the last time... no, really.
 - Fixed sending parts for all channels instead of one quit when you
   exit the whole program (helps bncs).
 - Autocomplete in the middle of a sentence won't jump to the end of
   the textbox (Darell Tan).
 - Fixed the buggy 1.8.5 outbound queue. It now sends privmsg/notice
   with a lower priority, but never out-of-order.
 - Updated Slovak translation (Stano Visnovsky).
 - Updated Swedish translation (Christian Rose).
 - Updated Spanish translation (Antonio de la Torre).
 - Updated Hebrew translation (Dan Fruehauf).
 - Some fixes to the MODE parser.
 - Added ability to customize dialog tab buttons (Oskar Liljeblad).
 - Added an extra field in the EditServer window to enter a command
   to execute after logging in.
 - /load -e <file> can now load a file of commands to execute.
 - Added ability to change the log timestamp format (Jyrki Muukkonen).
 - Fixed default keybinding for Shift-PageUp (Mukund).
 - Changed the outbound throttle behaviour. Now only privmsgs and
   notices go to the back of the queue, everything else goes to the
   front.
 - Made it possible to compile with older than 5.6 perl again.
 - The main window's size and position is now saved on exit. Use
   /set mainwindow_save OFF to revert to the old behaviour.
 - Avoid auto-resuming the same file from two different people
   (without breaking autoresume this time).
 - Removed /sslserver and added a -ssl arg to /server, /reconnect,
   /servchan and /newserver.
 - Added support for /server irc://host:port/channel.
 - Added some mmx asm code written by Willem Monsuwe for tinting
   transparency. Use --disable-mmx to revert to gdk-pixbuf method.
 - Fixed resetting your away status after an auto-reconnect.
 - Updated Spanish translation (Antonio de la Torre and Manuel
   García Aguilar).
 - Updated Russian translation (Valek Filippov).
 - Fixed lockup when a file being offered is shortened before being
   accepted.
 - Fixed ** ERROR **: file python.c: line 743 (pysH_Eget_users):
   assertion failed: (cur->hostname).
 - /kickban now deops and bans in one line (-o+b) (Felix Nawothnig).
 - Auto-nickcompletion now uses the nicksuffix setting (Mukund).
 - win32: change log-filenames with a | character to _.
 - When binding to a set hostname/ip, it would try to bind to port
   65535 - fixed.
 - Fixed crash when closing a dcc chat in a perl-dcc-chat-callback.
 - Added option "Beep on Channel Messages" and a Beep button to the
   toolbox ("<" button in the botton right) (Jason Wies).
 - Avoid auto-resuming the same file from two different people.
 - /close -m now closes all dialog/query windows.
2002-01-16 14:59:38 +00:00
tron
5462be9268 Use "gnome-core" buildlink glue code to avoid build failure with new
directory layout of "ORBit" package.
2002-01-16 14:22:22 +00:00
hubertf
2e3c2cc6bb new in silc-client 0.7.2 2002-01-14 21:16:46 +00:00
hubertf
73b7afc7e2 - update to silc-client package, version 0.7.2
- cleaned up CONFIGURE_ARGS
 - revised patches/patch-aa to follow change in the Makefile.in
 - removed post-configure target from Makefile, fix to this issue has been
   moved into patches/patch-ac file (inspired by chat/irssi package, thanks to
   mutru!)

Update submitted by Lubomir Sedlacik <salo@xtrmntr.org> in PR 15147
2002-01-14 21:15:59 +00:00
wiz
e251488358 Sort. 2001-12-30 14:46:59 +00:00
zuntum
bc4bd5fdf8 Add & enable vicq 2001-12-30 11:39:08 +00:00
zuntum
561b59529a Initial import of vicq-0.3
vICQ is simple ICQ client written in perl with look & feel of micq
and works fine with v7 protocol of ICQ. It is based on Net::ICQ2000
module written by Robin Fisher.

Fixes pkg/14718 by Shell Hung <shell@shellhung.org>
2001-12-30 11:37:47 +00:00
hubertf
8009f7aff2 Update silc-server to 0.7.3.
Patches sent by Lubomir Sedlacik <salo@silcnet.org> in PR 15079.

Changes in the silc-server package:

 - update to the silc-server package version 0.7.3
 - patch-ab is no longer needed--it has been integratedinto distribution,
   patch-ac moved into its place
 - complete release notes can be found at:

    http://silcnet.org/txt/release-server.txt

 - complete changelog can be found at:

    http://silcnet.org/txt/changes-server.txt
2001-12-28 21:29:16 +00:00
hubertf
93a26d999c use buildlink dir for ncurses 2001-12-26 03:02:29 +00:00
fredb
f692f5b0ec Add and enable aim. 2001-12-22 19:51:49 +00:00
fredb
b93d910f1f Initial import of aim-1.5.234, America Online's Instant Messenger (SM). 2001-12-22 18:40:00 +00:00
hubertf
94bb9fe4c9 Update silc-client to 0.7.1.
Patches submitted by Lubomir Sedlacik <salo@silcnet.org> in PR 14892

Changes in the silc-client package:

 - upgrade to silc-client package, version 0.7.1
 - minor changes in the MASTER_SITES variable
 - patch-ab was removed, it has been integrated into main distribution,
   patch-ac was moved in its place so patches/patch-ac is no longer needed

Changes in the silc-client-0.7.1:

 - various serious fixes in /whois, /join, /away, /key, /file, /list, /kick,
   /msg, /nick commands
 - fixed problem with allocation of 0 bytes when encoding payload
2001-12-21 20:48:29 +00:00
hubertf
54204fcb93 Update silc-server to 0.7.2.
Patch submitted by Lubomir Sedlacik <salo@silcnet.org> in PR 15013.


changes in the silc-server package:

 - upgrade to silc-server package, version 0.7.2
 - minor changes in the MASTER_SITES variable
 - minor change in the DEINSTALL script not to print output from rc script
 - removed the USE_NCURSES definition and added --without-ncurses configure
   option not to link against -lncurses, this was really unwanted behavior

changes in the silc-server-0.7.2:

 - fixed the server to router reconnection
 - various fixes in password authentications in the server, authentication
   payload and channels
 - fixed silc_server_command_pending, this should fix various IDENTIFY and
   WHOIS related crashes
2001-12-21 09:07:09 +00:00
hubertf
9bbac6d451 This file is no longer needed after the latest update.
Pointed out by Lubomir Sedlacik <salo@silcnet.org> in private mail.
2001-12-21 08:58:33 +00:00
tron
2dfe17b0d7 Add and enable "everybuddy" and "everybuddy-gnome". 2001-12-19 14:11:24 +00:00
tron
14f9df115e Import new "everybuddy" and "everybuddy-gnome" packages:
Universal Instant Messaging Client
2001-12-19 14:10:04 +00:00
tron
cac20bb4b6 Update maintainer address. 2001-12-19 11:06:21 +00:00
tron
981a75b1c7 Move definition of "WRKSRC" to the correct position. 2001-12-19 10:59:43 +00:00
tron
9afefbfa67 Replace broken "rmdir -r" with "@dirrm". 2001-12-17 05:42:53 +00:00
hubertf
72f6aad26d update the silc-server package to version 0.7.1.
Submitted by Lubomir Sedlacik <salo@silcnet.org> in PR 14887

Changes in the NetBSD's package from version 0.6.4 -> 0.7.1:

   - upgrade to silc-server-0.7.1 (the main changes below)
     the biggest change is the ipv6 support (new configuration file format is
     needed, though)
   - removed patch-ac because it was integrated into distribution
     (patch-ad was moved in its place)
   - completely rewritten rc.d script to use rc.subr instead and fixed the
     problem with removing pidfile so now status) works fine.
   - added default motd file
   - INSTALL and DEINSTALL scripts are cleaner and more useful, check for logs
     directory before creating it, added motd.txt installing/removing.
   - better and more helpful default configuration file (added Example:
     sections for each variable)
   - added examples/ directory containing sample configurations of various
     scenarios into $DOCDIR

changes in the silc-server itself:
        o Fixed WHOIS and IDENTIFY commands to return correct replies,
          and correct error replies.  This fixes various weird bugs
          related to these commands.
        o Send NO_SUCH_CLIENT_ID error notify if received private
          message to invalid Client ID.  It is guaranteed that if
          private message is sent to unknown client, the sender will
          receive a notification for it.
        o Send the kicker's information in KICK command to the kicked
          client.
        o Fixed LIST command to return correct amount of channels.
          This fixes the weird bug that LIST would show like 50 channels
          and some channels multiple times.
        o Channel topics, and users SILC modes are announced now during
          server->router connecting.
        o Implemented the founder authentication during JOIN command.
        o Support for IPv6 based Server ID added.
        o Memory leak fixes.
2001-12-17 00:43:10 +00:00
reinoud
7c892bda9a Update gaim package to 0.50 extending it with some IRC commands like /list
and /invite, swedish transaltions, IM/Chats tabbel in one window option and
kill off the lagmeter plugin.
2001-12-15 03:00:43 +00:00
reinoud
bf7ab54fd3 Updated Gaim from 0.44 to 0.49 ... BIG improvement and heaps of bugfixes
.... see homepage for more details for its too big to sum up here; it even
fine on NetBSD/Alpha so is prolly LP64 clean enough to work.

http://gaim.sourceforge.net/
2001-12-13 03:23:35 +00:00
mrg
43068be68e upgrade to ircii 20011210. this includes:
o  new /on raw_send
    o  new /exec -filter option
    o  fixed mIRC colour code handling
    o  enhanced redirection to multiple targets
    o  bug fix for $mid()
    o  bug fix for when resizing to a smaller window
    o  other bug fixes
2001-12-10 13:38:29 +00:00
jlam
478cba00bb By default, prevent invocation of GNU "auto*" driven by the generated
Makefiles during the build process by touching various auto{conf,make}
source files to make them up-to-date.  Packages that require regenerating
the configure script and Makefile.in files should make the appropriate
calls to auto{conf,make} in a pre-configure target.  This allows the
various targets listed in ${_CONFIG_PREREQ} to modify the generated files
without triggering the GNU auto* tools and having the modifications be
overwritten.
2001-12-04 06:14:57 +00:00
jlam
55ffb37406 bsd.pkg.install.mk calls the INSTALL script at the right times
automatically, so no need to do it ourselves.
2001-12-02 06:56:38 +00:00
hubertf
7b7cc0c087 add & enable silc-server 2001-11-30 23:34:35 +00:00