Commit graph

2420 commits

Author SHA1 Message Date
wiz
de4f1eb802 + gajim. 2010-12-24 00:03:03 +00:00
wiz
dbb185111b Initial import of gajim-0.14.1 from wip/gajim.
WIP package worked on by tonnerre, shattered, netcap, shindenmorr,
rillig, vstakhov.

Gajim is a Jabber client written in PyGTK. The goal of Gajim's developers
is to provide a full featured and easy to use xmpp client for the GTK+
users. Gajim does not require GNOME to run, eventhough it exists with it
nicely. Gajim is released under the GNU General Public License

FEATURES:
* Tabbed chat windows
* Group chat support (with MUC protocol)
* Emoticons, Avatars, File transfer, URL grabber, Bookmarks
* Systray icon, Speller
* TLS and GPG support (with SSL legacy support)
* Transport Registration support
* Service Discovery including Nodes
* Wikipedia, dictionary and search engine lookup
* Multiple accounts support
* DBus Capabilities
* XML Console
2010-12-24 00:02:28 +00:00
dsainty
1f40f3a084 Mechanically replace references to graphics/jpeg with the suitable
alternative from mk/jpeg.buildlink3.mk

This allows selection of an alternative jpeg library (namely the x86 MMX,
SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and
follows the current standard model for alternatives (fam, motif, fuse etc).

The mechanical edits were applied via the following script:

#!/bin/sh
for d in */*; do
  [ -d "$d" ] || continue
  for i in "$d/"Makefile* "$d/"*.mk; do
    case "$i" in *.orig|*"*"*) continue;; esac
    out="$d/x"
    sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \
        -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \
        < "$i" > "$out"
    if cmp -s "$i" "$out"; then
      rm -f "$out"
    else
      echo "Edited $i"
      mv -f "$i" "$i.orig" && mv "$out" "$i"
    fi
  done
done
2010-12-23 11:44:24 +00:00
tonio
ee6950e295 Update chat/bitlbee to 3.0.1
Patch provided by gls@

Changes:
Version 3.0.1 (released 2010-11-24) hilights:
- MSN login fixes, Jabber (3.0 had a bug that made Jabber contacts never go
  offline), some other minor IM module fixes (including the new default ICQ
  login server).
- Fixed build issues on some non-Linux systems.
- Minor bugfixes/improvements.
2010-12-20 10:49:06 +00:00
jwise
c56b3aba9e Work around an issue where SunOS (10) definition of SIGRTMIN and SIGRTMAX
confuses ircII signal handling autogeneration.
2010-12-13 19:32:11 +00:00
drochner
1bb31baf0a update to 0.12.5
This switches to the stable release branch.
pkgsrc change: add "test" target
2010-11-29 15:29:06 +00:00
drochner
560fa12f20 update to 2.30.3
changes:
-bugfixes
-translation updates
2010-11-29 15:18:31 +00:00
drochner
2913ea2783 +telepathy-logger 2010-11-24 18:52:05 +00:00
drochner
1cf6f8bb7c add telepathy-logger-0.1.6, a logging module for the "telepathy" framework
(will be needed by future versions of Gnome's "empathy" IM client)
2010-11-24 18:50:48 +00:00
tron
40c67b1ff6 Reset package revision. 2010-11-16 13:19:06 +00:00
tron
589f5f6af1 Update "xchat-*" packages to version 2.8.8. Changes since 2.8.6pl1:
- Made balloon time adjustable via /set input_balloon_time (Nicoleau Fabien).
- Fixed a crash in the /SET command if a boolean value was loaded from config
  file that isn't set to 0 or 1.
- Added -on and -off parameters to the /SET command. This can be used to set
  bits, for example gui_tweaks.
- Made scrolling backwards for the search window act better (Richard Hitt).
- [2045483] Made ESC key close the search window (Richard Rowell).
- Improved the reconnect logic. If a network is already open but disconnected,
  it'll now get re-used if you use the Network List and connect to that same
  network.
- Improved scrollback reloading speed significantly (Soeren Sandmann Pedersen).
- [2957047] Handle CTCPs when IDmsg is used correctly (Lian Wan Situ).
- [2987626] Allow /GHOST's password arg to be optional (Ori Avtalion).
- Added networks: 7-indonesia, ChattingAway, GeekShed, TURLINet.
- When switching tabs, make the treeview only scroll if the selected item
  isn't visible [treeview-less-jumping.diff] (Brian Evans).
- Selecting an item in the nickmenu will now copy it to clipboard (Alex
  Kutepow).
- New icons for notification area (systray): file offer, message and highlight
  (Brian Evans).
- Defined a comparison routine for contexts in Python (Brian Evans).
- For the auto-join command, added an 'x' filler for empty keys. This works
  around a bug in ircd-seven.
- When a single channel MODE changes, xchat will no longer re-issue a MODE
  request for the titlebar display, but figure the new modes intelligently
  (Brian Evans).
- Various text event changes (Brian Evans):
  1. Added "Private Action", "Private Action to Dialog", "SSL Message".
  2. Added "Identified text" parameter all the 'action' events.
  3. Added a $3 parameter to "Server Text".
- Perl (Lian Wan Situ)
 * Fixed a bug that resulted in timer hooks being leaked because
   "return REMOVE" from a timer callback was not unhooking like it was
   supposed to
 * Reverted the unintentional change to how the server argument of print()
   and command() is interepreted when it is undef
 * Add hook_fd to the 'hooks' export tag
 * Fixed a leak in XS_Xchat_get_list(Vincent Pit)
 * Change Xchat::register so that scripts calling it without a name or
   version will still show up in the plugins and scripts window.
 * Added calls to PERL_SYS_INIT3 and PERL_SYS_TERM which are required on
   some platforms
 * Added some additional guards to prevents bits of scripts from spilling
   into each other
 * Added "modes", "win_ptr" and "xchatdirfs" to the list of keys that are
   returned by context_info()
 * Changed the information displayed in the "Plugins & Scripts" for scripts
   that do not call register() to show up as "" for the name and description
   and "unknown" for the version
 * /reloadall will now reload scripts in the same order they were loaded
 * Make xchat_send_modes available as Xchat::send_modes
 * Add support for getting the network list using Xchat::get_list( "networks" )
 * Xchat::strip_code will now strip off ANSI escape codes as well
2010-11-16 12:21:10 +00:00
abs
9987fa4b3a PKGREVISION bumps for changes to gtk2, librsvg, libbonobo and libgnome 2010-11-15 22:56:08 +00:00
jnemeth
a214160fb9 add NetBSD-5 to INCOMPAT_CURSES 2010-11-15 08:55:21 +00:00
shattered
3b05a61c76 Follow HTTP redirects to new HOMEPAGEs and/or MASTER_SITES. 2010-11-13 21:08:54 +00:00
adam
b34d74d4e8 Changes 2.2.11:
* Use length with route keys
* closefd during main loop
* ported router connection closing improvement from cwave
* fix potential segfault in a call to xhash_putx()
* enforce iq type
* Fixed packet jabber:server -> jabber:client namespace mangling
* Fixed attribute namespace handling in NAD parser
* Fixed missing reference in log_error
2010-11-09 07:33:10 +00:00
tonio
ccb014cd7c Update chat/bitlbee to 3.0
Version 3.0 (released 2010-10-22) hilights:
* Lots of stuff, see the development version below.
* MSN protocol module was rewritten. This fixes some problems many people were
  having with the old code lately, and adds support for things like status
  messages and offline messages.
* The bitlbee-otr branch is now merged into mainline, which means you can
  compile BitlBee with OTR encryption support, if you want, without any need
  for patches/alternative branches.
* Many more fixes, small changes, etc. Just read the full non-bzr changelog for
  all details.
2010-11-05 22:20:57 +00:00
markd
d2426d6e6e Update konversation to 1.3.1
Konversation 1.3.1 is a maintenance release that improves program behavior
and fixes defects.

Konversation 1.3 debuts a major new feature in the area of
Direct-Client-to-Client (DCC) support: An implementation of the DCC
Whiteboard extension that brings collaborative drawing - think two-player
Kolourpaint - to IRC. It also brings back the integration with KDE's SSL
certificate store the KDE 3 version enjoyed and expands support for
auto-away to the Windows and Mac OS X platforms thanks to both recent
advances in the KDE 4 platform and new code in Konversation. Interface
tweaks, new keyboard shortcuts and many bugfixes round things out.
2010-10-27 06:35:59 +00:00
obache
abf61a6ed7 Allow to install without X. 2010-10-03 07:32:42 +00:00
obache
d4bd3619f6 Oops, not user-destdir support.
* switch to simply depend on wish.
* instead of replaceing prefix with subst, pass to install script.
* then avoid intaractive installation.
2010-09-26 09:31:13 +00:00
obache
95de721372 * use SUBST for replace prefix
* set LICENSE=original-bsd
2010-09-26 08:47:59 +00:00
obache
fbd21459e9 + prosody 2010-09-23 05:23:38 +00:00
fhajny
6339c8a693 Import prosody-0.7.0 as chat/prosody.
Prosody is a flexible communications server for Jabber/XMPP written in Lua.
It aims to be easy to use, and light on resources. For developers it aims
to be easy to extend and give a flexible system on which to rapidly develop
added functionality, or prototype new protocols.

(Based on wip/prosody.)
2010-09-21 11:01:22 +00:00
adam
6109aa350c Revbump after updating databases/db5 2010-09-16 08:04:14 +00:00
wiz
c9c858b09a nm workaround not needed any longer, was fixed sometime before or in 0.11.11. 2010-09-14 23:49:39 +00:00
wiz
4d24b9b8ad More PKGREVISION bumps for pixman update. 2010-09-14 11:13:10 +00:00
wiz
200e3c4a04 Bump dependency on pixman to 0.18.4 because cairo-1.10 needs that
version, and bump all depends.

Per discussion on pkgsrc-changes.
2010-09-14 11:00:44 +00:00
wiz
e442668e9f Update to 6.40:
6.40  Thu Sep 9 06:55:27 UTC 2010
    - AutoJoin.pm: Wait for a reply from NickServ before joining channels
      on connect
2010-09-12 11:15:58 +00:00
wiz
a82fd6facb Update to 0.85, provided by Claudio Leite in PR 43864.
0.85 - 9/10/2010

 * Pretends to be iChat instead of an old version of AIM,
   due to AIM blocking older clients

 * Please note that bsflite is no longer in active development.
   Any updates at this point will be minor. Since I do not use
   AIM myself these days I am interested in finding somebody
   interested in taking over bsflite development.
2010-09-10 21:22:30 +00:00
wiz
f084e10d8c Fix HOMEPAGE. 2010-09-10 08:28:13 +00:00
taca
eaa3b4dffd * Use lang/ruby/gem.mk instead of misc/rubygems/rubygem.mk.
* Remove default value of GEM_BUILD.
2010-09-10 04:00:29 +00:00
wiz
836d223c23 Set LICENSE. 2010-09-06 10:51:13 +00:00
wiz
e5ec9e104b Update to 6.39:
6.39  Sat Sep 4 02:16:28 UTC 2010
    - AutoJoin.pm: Allow channel keys to be undefined
    - Make the 'nickserv' command do the right thing on ratbox ircds
    - Add a server_version() method

6.38  Fri Sep 3 18:33:50 UTC 2010
    - Only process the first CTCP chunk we find in a message. This prevents
      someone from flooding our outgoing queue by having us e.g. reply to 20
      VERSION requests at a time.
    - CTCP.pm: Reply to VERSION with "dev-git" when no version is available.

6.37  Tue Aug 17 22:53:22 GMT 2010
    - Make all warnings fatal
    - Use real temp files in tests instead of littering the dist directory

6.36  Mon Jul 26 03:53:50 GMT 2010
    - Added a logged_in() method to see if we're logged into IRC

6.35  Sun Jun 27 09:32:22 GMT 2010
    - Disconnecting.pod: Mention when it is appropriate to use
      C<< $irc->yield('shutdown') >>.
    - Connector.pm: Clear the reconnect timer when the plugin is deleted so
      that we can actually shut down the IRC component.
    - Depend on POE::Component::Pluggable 1.26 for irc_plugin_error

6.34  Fri Jun 25 18:16:40 GMT 2010
    - CTCP.pm: Do "use POE::Component::IRC;" to avoid weird failures when
      this plugin is compiled by code which hasn't done the same.

6.33  Mon Jun 21 20:27:42 GMT 2010
    - BotCommand.pm: Allow user to choose how help messages are delivered
    - BotCommand.pm: Require the command prefix in private messages
    - BotCommand.pm: Make the help messages more context-sensitive
    - BotCommand.pm: Add support for custom auth checks
    - BotCommand.pm: If Eat == 1, we eat everything that looks like a command
    - Cookbook: Add Gtk2 example by Damian Kaczmarek
    - Logger.pm: Support a hook for custom log storage
    - IRC.pm: Remove redundant version() method
    - Convert distribution over to Dist::Zilla
2010-09-06 10:49:03 +00:00
fhajny
484c53b603 Updated chat/ejabberd to 2.1.5.
Short list of changes:
* Erlang/OTP R12 support fixed
* Erlang/OTP R14A support added
* OpenSSL 0.9.8 or higher is required
* BOSH: New optional connection attribute process-delay
* C2S: Don't ask for client certificate when using tls
* C2S: Inform client that SSL session caching is disabled
* CTL: Fix problem when FIREWALL_WINDOW options for erl kernel were used
* CTL: Some systems delete the lock dir; in such case don't use Flock at all
* Caps: Support all the hash functions required by XEP-0115
* Config: Fix typo in --enable-transient_supervisors
* Config: New configure option: --enable-nif
* Extauth: Support parallel script running
* MUC: Allow admins to see private rooms in disco
* ODBC: Correct handling of SQL boolean types
* ODBC: Discard too old queued requests (the caller has already got a timeout)
* ODBC: Fixes wrong SQL escaping when --enable-full-xml is set
* ODBC: Use ets insead of asking supervisor in ejabberd_odbc_sup:get_pids/1
* Pubsub: Enforce disco features results
* S2S: When logging s2s out connection attempt or success, log if TLS is used
* Shared Rosters: When account is deleted, delete also member
  of stored rosters
2010-09-03 10:31:43 +00:00
drochner
6899ff8e70 don't enable the "avahi" option per default, as done in other pkgs
(doesn't work on NetBSD)
2010-08-31 18:00:52 +00:00
adam
e9f5dd65f8 Sorted PLIST 2010-08-30 19:05:48 +00:00
adam
dff4b237c5 Changes 2.7.3:
* Lots of little incremental bug fixes and enhancements in this release.
* Finally got some fixes out there for you Yahoo users behind some
  particularly annoying firewalls and proxies, among other fixes.  Enjoy!

Changes 2.7.2:
* We discovered a security issue in Pidgin 2.7.0 and 2.7.1 and decided to
  release a patched version quickly.  This release contains the fix for that
  crash, and a few other minor fixes.
2010-08-30 19:02:26 +00:00
adam
d52306d323 Changes 2.7.3:
* Lots of little incremental bug fixes and enhancements in this release.
* Finally got some fixes out there for you Yahoo users behind some
  particularly annoying firewalls and proxies, among other fixes.  Enjoy!

Changes 2.7.2:
* We discovered a security issue in Pidgin 2.7.0 and 2.7.1 and decided to
  release a patched version quickly.  This release contains the fix for that
  crash, and a few other minor fixes.
2010-08-30 11:18:01 +00:00
adam
c448e288e3 Changes 1.1.10 (toolkit):
* More string format fixes in silcd and client libary
* configure: changed AC_PROG_LIBTOOL order to fix disabling shared libs
* configure: check threads support in OpenBSD
* Fixed string format vulnerability in client entry handling
* Reported and patch provided by William Cummings
* silcd: Fixed IDENTIFY command reply handling for channels

Changes 1.1.18 (server):
* silcd: Added heartbeat support
* Added support for sending SILC_PACKET_HEARTBEAT packets to connection,
  to make sure they keep alive and to detect if they have died
* Set SO_KEEPALIVE for all accept()ed sockets
* silcd: Fixed SIGUSR1 signal handling
* Fixed the SIGUSR1 signal handling which can be used to dump the server
  internals to /tmp.
* Changed also End of Stream handling to handle NULL idata pointer instead
  of ignoring the EOS in case it is NULL.
* Changed also the DETACH timeout handling to use the packet stream
  directly instead of looking up client in the callback
* More string format fixes in silcd and client libary
2010-08-30 11:17:16 +00:00
jmcneill
5b63210643 Use bash to run configure script 2010-08-25 09:59:52 +00:00
seb
c3f1e700ad Bump the PKGREVISION for all packages which depend directly on perl,
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.

The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.

sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
2010-08-21 16:32:42 +00:00
wiz
252c5b1d62 Reset maintainer, he resigned. 2010-08-16 09:48:00 +00:00
mrg
53fd659219 avoid accessing arrays out of bounds. should fix build isses on freebsd8. 2010-08-12 04:02:28 +00:00
sketch
8f0f152656 Add another bunch of patches, including:
- implement commands via irssi signals
 - detect /topic on join
 - support /names, including on join
 - build correctly as .so on OSX
2010-08-10 20:26:36 +00:00
drochner
d4dcbc1698 update to 0.1.6
changes:
-Implement IDLE_LOGFILE to divert output to a file
-Implement Debug interface

pkgsrc change: add some support to run selftest
2010-08-09 10:25:37 +00:00
drochner
ec161c667c update to 5.5.3
changes:
-minor protocol extensions
-bugfixes
2010-08-09 10:22:23 +00:00
drochner
20c93b4403 update to 0.11.11
changes:
-minor API extensions
-bugfixes
2010-08-09 10:19:12 +00:00
drochner
50a5de7c68 update to 0.0.14
changes:
- Add properties to get the Farsight2 session and stream
- Recognize the shm transmitter
- Ignore invalidly empty strings in tp properties
- Fix -Wshadow warnings
2010-08-05 18:57:55 +00:00
obache
e80a4a520e Update unrealircd to 3.2.8.1.
Unreal3.2.8.1
- Fixes a security issue, which is exploitable (crash) when allow::options::noident
  is in use.

Unreal3.2.8
==[ NEW ]==
- set::level-on-join: this defines which privileges a user receives when creating a
  channel, default is 'chanop', the only other available setting is 'none' (opless).
- Away notification through WATCH: This allows clients to receive a notification
  when someone goes away or comes back, along with a reason, a bit like IM's.
  There's probably no current client supporting this but it would be a nice feature
  in notify lists. Client developers: see Changes file for full protocol details.
  This feature can be disabled by setting set::watch-away-notification to 'no'.
- Spamfilter: Slow spamfilter detection: For each spamfilter, Unreal will check,
  each time it executes, how long it takes to execute. When a certain threshold is
  reached the IRCd will warn or even remove the spamfilter. This could prevent a
  spamfilter from completely stalling the IRCd. Warning is configured through
  set::spamfilter::slowdetect-warn (default: 250ms) and automatic deletion is
  configured by set::spamfilter::slowdetect-fatal (default: 500ms).
  You can set both settings to 0 (zero) to disable slow spamfilter detection.
  This feature is currently not available on Windows.
- SSL: set::ssl::server-cipher-list can be used to limit the allowed ciphers
- SSL: To specify when an SSL session key should be renegotiated you can use
  set::ssl::renegotiate-bytes <bytes> and set::ssl::renegotiate-timeout <seconds>.
- UHNAMES support: This sends the full nick!ident@host in NAMES which can be
  used by clients for their IAL. mIRC, Klient, etc support this.
- There have also been some behavior changes, which can be considered NEW, see
  next section (CHANGED).

==[ CHANGED ]==
- IPv6: On IPv6 servers you no longer have to use ::ffff:1.2.3.4 IP's for IPv4 in the
  config file, you can use the simple 1.2.3.4 form, as they are converted automatically.
- When someone is banned and /PARTs, the part reason (comment) is no longer shown
- ChanMode +S/+c: now strips/blocks 'reverse' as well
- Smart banning is now disabled by default because it was too annoying, this means that
  f.e. if there's a ban on *!*@*.com then you can still add a ban on *!*@*.aol.com
- except ban { } now also protects against ZLINEs and ban ip { }
- Modules: user modes and channel modes without parameters (eg: +X) no longer have
  to be PERManent, this means they can be upgraded/reloaded/unloaded on-the-fly.

==[ MAJOR BUGS FIXED ]==
- Zip links issue (Overflowed unzipbuf)
- Crash issue with 3rd party modules that introduce new channel modes w/parameters
- Mac OS X: Various issues which prevented the IRCd from booting up
- Remote includes (constant) crash with new curl/c-ares versions
- A few rare crash issues, including a crash when linking to another server
- In case of clock adjustments, the IRCd will no longer freeze when the time is
  adjusted backwards, nor will it incorrectly throttle clients when adjusted forward.
  However, because clock adjustments (time shifts) of more than xx seconds are
  so dangerous (and will still cause a number of issues), big warnings are now
  printed when they happen.
  Morale: synchronize your system clock, or use the built-in timesync feature.

==[ MINOR BUGS FIXED ]==
- CGI:IRC: Several IPv6 issues, both on IPv6 IRCd's and CGI:IRC gateways
- IP masks in oper::from::userhost sometimes didn't match when they should
- (G)ZLINE's on IPv6 users were sometimes rejected
- CHROOTDIR works again
- OperOverride fixes
- Throttling is now more accurate
- And more... see Changelog
2010-07-25 13:18:52 +00:00
drochner
75e2d9d979 needs py-expat to build, seen in bulk build 2010-07-22 08:31:35 +00:00
obache
565330f153 Update ircservices to 5.0.64.
While here, fixes PR#43618 (getline) and set LICENSE=gnu-gpl-v2.

Version 5.0
-----------
2009/07/31 .64	ChanServ DEPROTECT no longer removes channel owner mode, to
		    prevent abuse by rogue users.  Reported by Kieron
		    Thwaites <ron2k.za@gmail.com>
2010-07-15 11:48:21 +00:00