summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2006-08-18+ RealPlayerGold-10.0.8, autogen-5.8.5, glibmm-2.12.0, gtkmm-2.10.0,wiz1-3/+6
openttd-0.4.8.
2006-08-18Updated mail/dovecot to 1.0rc7.ghen1-1/+2
2006-08-18Update to dovecot-1.orc7. From the release announcement mail:ghen2-7/+6
> Can everyone now agree that there are no more hangs? :) > > * Require that Dovecot master process's version number matches the > child process's, unless version_ignore=yes. Usually it's an > accidental installation problem if the version numbers don't match. > * Maildir: Create maildirfolder file when creating new maildirs. > > + ldap+prefetch: Use global uid/gid settings if LDAP query doesn't > return them > + %variables: Negative offsets count from the end of the string. > Patch by Johannes Berg. > - kqueue ioloop code rewrite > - notify=kqueue might have caused connection hangs sometimes > - deliver: If message body contained a valid mbox From_ line, it > and the rest of the message was skipped. > - mbox: We got into infinite loops if trying to open a 2 byte sized > file as mbox. > - Don't crash with ssl_disable=yes > - quota plugin caused compiling problems with some OSes > - mbox: After saving a mail to a synced mbox, we lost the sync which > caused worse performance > > I think my v1.0 TODO list is: > > - avoid duplicate flag change notifications, or in case the message is > also expunged don't bother notifying its flag changes at all > (shouldn't be hard) > - HFS+ avoid-hardlinks patch? > - 32bit -> 64bit upgrade still doesn't work without assert-crashing: > mail-cache-transaction.c: line 709 (mail_cache_add): assertion failed: > (fixed_size == (unsigned int)-1 || fixed_size == data_size) > - Courier-compatible INBOX. namespace gives "invalid namespace" errors > > I'm still not sure about the last one though. Could someone give me > specific commands that clients send that causes it? > > As for the 32bit -> 64bit upgrade fix, could someone give me access to a > x86-64 machine for a while to test it out?
2006-08-17Updated lang/elk to 3.99.7; net/amule to 2.1.3adam2-4/+4
2006-08-17Changes 2.1.3:adam3-17/+16
* Bug fix release
2006-08-17Changes 3.99.7:adam4-36/+18
* The last known garbage-collector bug was fixed.
2006-08-17glib2 updated to 2.12.2.wiz1-1/+2
2006-08-17Update to 2.12.2:wiz3-16/+16
Overview of Changes from GLib 2.12.1 to GLib 2.12.2 =================================================== * Unicode updates: - Normalization is following Unicode TR #29 - g_unichar_isxdigit() only accept characters for which g_unichar_xdigit_value() returns a value - g_unichar_toupper and g_unichar_tolower leave unconvertable characters in place instead of replacing them by NUL * Bugs fixed 348491 g_utf8_strup() and g_utf8_strdown() returns string with NUL bytes 349825 GKeyFile always inserts a newline before a group 347842 g_unichar_isxdigit() is too general about what it considers a digit 348694 g_utf8_normalize() hasn't been updated to PR #29 348785 Hint about G_DEBUG in Message Logging docs 349792 Wrong english string (UI) 349952 gparamspecs.c uses gcc feature * Translation updates (ca,cs,de,dz,es,eu,fi,gu,ko, nl,pl,tr,uk,zh_HK,zh_TW)
2006-08-17Update to 4.1.3adrianp2-7/+8
Major changes compared to the IMP H3 (4.1.2) version are: * Added server configuration option to limit numer of login tries. * Added link to view attached S/MIME key details. * Fixed escaping of folder names. * Updated Catalan, German and Slovenian translations. * Several small bugfixes and improvements. The full list of changes (from version H3 (4.1.2)) can be viewed here: http://cvs.horde.org/diff.php/imp/docs/CHANGES?r1=1.699.2.194&r2=1.699.2.206&ty=h
2006-08-17Update to 3.1.3adrianp3-9/+9
Major changes compared to Horde 3.1.2 are: * Security Fixes - Closed an XSS problem in index.php and improved protection against phishing attempts. * Bugfixes and improvements - Added Kolab group ACL support. - Improved import of date and time fields. - Fixed synchronization support. - Updated Catalan, German and Slovenian translations. The full list of changes (from version 3.1.2) can be viewed here: http://cvs.horde.org/diff.php/horde/docs/CHANGES?r1=1.515.2.252&r2=1.515.2.261&ty=h
2006-08-17Our python24 package installs python2.4.3 -- make the html docsperry2-8/+8
package install the 2.4.3 docs, too, so that the docs correspond to the installed package.
2006-08-17Updated sysutils/ups-nut-cgi to 2.0.4nb1.ghen1-1/+2
2006-08-17This doesn't need X11. Bump PKGREVISION.ghen1-2/+2
2006-08-17- erlang-11.ghen1-2/+1
2006-08-17Updated lang/erlang, lang/erlang-doc and lang/erlang-man to 11.0.ghen1-1/+4
2006-08-17Update to Erlang R11B-0 (erlang-11.0). Changes since R10B:ghen8-80/+346
=== SMP Support === The major news is the support for SMP (Symmetric MultiProcessing). SMP is supported by most modern operating systems like Linux, Windows, Mac OSx, Solaris and is becoming more important now when dual processors, hyper-threading technology and multi-core systems are a reality. With Erlang, most of the problems which occur in multi-threaded programs have been solved once and for all in the Erlang VM and do not have to be handled by the application programmers. In the SMP version of the Erlang virtual machine, there can be many process schedulers running in separate OS threads. As default there will be as many schedulers as there are processors or processor cores on the system. The SMP support is totally transparent for the Erlang programs. That is, there is no need to change or recompile existing programs. Programs with built-in assumptions about sequential execution must be rewritten in order to take advantage of the SMP support, however. In this release, the Erlang VM supports SMP with focus on stability. There will follow a number of subsequent steps with necessary optimizations and support for more platforms. === Erlang Language and Related Issues === * The andalso and orelse operators are now allowed to be used in guards. That also applies to match specifications. * The BIF is_record/3 can now be used in guards. Also, is_record/3 can now be called without an erlang: module prefix for consistency with the other is_* functions. * The compiler options ignore_try and ignore_cond, which allowed code that used unquoted try or cond as atoms or record tags, has been removed. Old code that depended on the options need to be revised to have occurrences of try or cond as atom or record tags single-quoted. (Note: Although cond is a reserved keyword, there is no cond statement. It might be introduced in a future release.) * (ERTS 5.4.8) The new fun M:F/A construct creates a fun that refers to the latest version of M:F/A. This syntax is meant to replace tuple funs {M,F} which have many problems. * (ERTS 5.4.8) The new type test is_function(Fun, Arity) -- which may be used in guards -- test whether Fun is a fun that can be applied to Arity arguments. === New Applications === Dialyzer Dialyzer is a static analysis tool that identifies software discrepancies such as type errors, unreachable code, unnecessary tests, etc in single Erlang modules or entire (sets of) applications. Inviso The Inviso application, together with some new extensions to Runtime_Tools, is aimed at providing features for efficient tracing of production Erlang/OTP systems: * Distributed tracing - tracing on any number of Erlang nodes. * Autostart - tracing during system start-up. * Overload protection - mechanisms for suspending and later reactivating tracing, should an overload situation occur. * Enhanced use of meta tracing. * Trace cases - predefined specifications of what to trace. * Off-line merging and formatting of log files. Inviso is still under development. An easier-to-use trace tool, using the features listed above, is planned to be released as an R11B patch in Q3/Q4 2006. SSH The SSH application is an Erlang implementation of the secure shell protocol. It is considered to be a beta release, meaning there can be changes made to the API before it reaches 1.0. === Existing Applications === Compiler (Compiler 4.3.6) It is now possible to encrypt the debug information in Beam files. Debugger (Debugger 2.0) The debugger can now handle the try/catch language construct. Inets The Erlang implementation of the TFTP procotcol, tftp, is now documented. Kernel In Kernel 2.10.X, several bug fixes and improvements have been made in global , the global name registration facility. OS_Mon (OS_Mon 2.0) The entire OS_Mon application (code and documentation) has been reviewed and consequently updated with the goal to make the application more robust, homogeneous and easier to configure. STDLIB Added the zip module with functions for reading and creating zip archives.
2006-08-17-bind-9.3.2,nagios-2.5,netatalk1-1.6.4.taca1-4/+1
2006-08-17Note update of nagios related packages:taca1-1/+8
- net/nagios-base-2.5 - net/nagios-plugins-1.4.3 - net/nagios-plugin-ldap-1.4.3 - net/nagios-plugin-mysql-1.4.3 - net/nagios-plugin-pgsql-1.4.3 - net/nagios-plugin-snmp-1.4.3 - net/nagios-nrpe-2.5.2
2006-08-17Update nagios-nrpe package to 2.5.2.taca2-7/+6
************** NRPE Changelog ************** 2.5.2 - 06/30/2006 ------------------ - Fixed incorrect service name in sample xinetd config file - Added note on how to restart inetd for OpenBSD users (Robert Peaslee) - Fix for nonblocking accept()s on systems that define EAGAIN differently than EWOULDBLOCK (Gerhard Lausser) - Fix to (re)allow week random seed (Gerhard Lausser)
2006-08-17Catch up nagios-plugin-* pacakges to 1.4.3.taca6-20/+18
1.4.3 Setuid plugins (check_dhcp, check_icmp) separated into plugins-root/. Run make install as root to install SSL plugins work with gnutls as well as OpenSSL check_mysql_query added to run arbitrary SQL commands, with threshold checking libtool now required for development systems Notice: check_udp (compiled from check_udp.c) will be deprecated in the next release. check_udp2 should be used instead and will be renamed to check_udp
2006-08-17Update nagios-plugins pacakge to 1.4.3.taca7-90/+79
1.4.3 Setuid plugins (check_dhcp, check_icmp) separated into plugins-root/. Run make install as root to install SSL plugins work with gnutls as well as OpenSSL check_mysql_query added to run arbitrary SQL commands, with threshold checking libtool now required for development systems Notice: check_udp (compiled from check_udp.c) will be deprecated in the next release. check_udp2 should be used instead and will be renamed to check_udp
2006-08-17Update nagios-base to 2.5.taca6-52/+55
##################### Nagios 2.x Change Log ##################### 2.5 - 07/13/2006 ---------------- * Bug fix for excluding hidden files from config file processing * Bug fix for incorrect links to trends CGI from notification CGI * Hopefully faster shutdown during host checks * Lock file is now closed just prior to shutdown, instead of when SIGINT is received * Bug fix for segfault during startup due to extended service definition duplication * Bug fix for segfault with wildcards in servicegroup members * Bug fix for segfault when p1.pl file was missing and embedded Perl interpreter was enabled 2.4 - 05/31/2006 ---------------- * Fix for missing <limits.h> include that prevented CGI compilation under Solaris * Better error message reporting in the command CGI (cmd.cgi) * Fix for order of recovery/flapping notifications immediately after end of host/service flapping * Bug fix for potential crash (SIGBUS) of CGIs when reading mmap()'ed status, comment, and downtime files * Added 'install-unstripped' option to Makefile to allow installing unstripped binaries for debugging * Minor bug fix to sample redundancy handle-master-proc-event script
2006-08-17- Reduce pkglint warning.taca1-10/+9
- Add GEEKLOG_SITEBASE to BUILD_DEFS. No functional changes.
2006-08-17Note update of net/bind9 package to 9.3.2.taca1-1/+2
2006-08-17Update bind to 9.3.2.taca12-208/+187
Changes are huge, so please see http://www.isc.org/sw/bind/bind9.3.php.
2006-08-17Note update of net/synergy package to 1.3.1nb1.taca1-1/+2
2006-08-17Improve synergy package discussed with minskim@.taca5-3/+75
- honor PKG_SYSCONFDIR not hard-coded to "/etc" and PKG_INSTALL frame work for a configuration file. - Install documents. Bump PKGREVISION.
2006-08-17Note update of net/netatalk1 to 1.6.4anb3.taca1-1/+2
2006-08-17netatalk1 package overhaultaca9-48/+77
- Adapt buildlink framework and fix compile problem with des.h header file. - Proper dependency with openssl. - Use subst framework for replacing path. - Fix minor pkglint warning. Bump PKGREVISION.
2006-08-17Note update of ja-squirrelmail pacakge to 1.4.8.taca1-1/+2
2006-08-17Update ja-squirrelmail package to 1.4.8.taca5-92/+20
Changes from 1.4.7: - A security fix for CVE-2006-4019 - A collection of bugfixes Changes from 1.4.6: - Fixed URL for Read Receipts being incorrect in some cases (#1177518). - Fixed endless loop when trying to parse "From: )(" (#1517867). - Using is_file() instead of file_exists() in fortune plugin (#1499134). - Add manual page for conf.pl under contrib. - Don't allow selecting INBOX as Sent, Draft or Trash folder (#1242346). Todo: Make squirrelmail-decode and squirrelmail-locale depend on ja-squirrelmail as well as squirrelmail.
2006-08-17Note update of lang/php5 package to 5.1.4nb4.taca1-1/+2
2006-08-17Correct PLIST to fix a binary package:taca2-4/+5
- remove an extra directory. - handle empty directories.
2006-08-17Note of these packages:taca1-1/+5
- databases/ruby-DBI-0.1.0 - databases/ruby-DBD-mysql-0.1.0 - databases/ruby-DBD-postgresql-0.1.0 - databases/ruby-DBD-sqlite-0.1.0
2006-08-17Added www/zope29 2.9.4darcy1-1/+2
2006-08-17Zope 2.9.4 committed.darcy1-2/+1
2006-08-17Add Zope 2.9.4.darcy13-1/+9894
Many changes from 2.6. See http://zope.org/Products/Zope/2.9.4/CHANGES.txt for details of the 2.9 branch changes.
2006-08-17Added entries for updating libprelude, libpreludedb and py-prewikkashannonjr1-1/+4
2006-08-17Update to 0.9.7. Changes:shannonjr3-9/+19
- Use preludedb_delete_(alert|heartbeat)_from_list(). Require libpreludedb 0.9.9. Provide a deletion performance improvement of around 3000%. - Handle multiple listed source/target properly. Separate source/target in the message listing. - Make host command/Information link available from the Sensor listing. - Always take care of the "external_link_new_window" configuration parameter. - Make external command handling more generic. Allow to specify command line arguments. - Allow to define unlimited number of external commands rather than only a defined subset (fix #134). - Avoid toggling several popup at once in the HeartbeatListing. - Only provide lookup capability for known network address type (fix #76). - New address and node name lookup provided through prelude-ids.com service. - Link to new prelude-ids.com port lookup instead of broken portsdb database (fix #162). - Various bug fixes.
2006-08-17Update to 0.9.9. Changes:shannonjr2-6/+6
- Implement an idea from Lex van Roon <r3boot@r3blog.nl.eu.org> providing an alert/heartbeat deletion performance improvement in the order of 3000% (preludedb-admin already benefit from it, next Prewikka release will benefit from it too). - Fix --with-(perl|python|swig) detection path ordering. - Verbose error reporting on logfile opening error. - Various bug fixes.
2006-08-17Update to 0.9.10.1. Changes:shannonjr4-14/+13
- Fix checking for swig/perl/python when full path to the application is specified. - Fix OpenBSD getaddrinfo() AI_ADDRCONFIG issue (apply to some other system as well). - Fix workaround for system with broken libtool, that prevented the use of plugin (#168).
2006-08-17Uncomment directories which had no reason given for being commented out.wiz1-8/+8
2006-08-17Note update of "xchat" package to version 2.6.6nb1.tron1-1/+2
2006-08-17Install "xchat" binary unstripped under Mac OS X (Darwin). This makestron1-1/+7
the plugin loader work for some weird reason. Hint provided by Adrian Portelli on "tech-pkg" mailing list. Bump package revision because of this fix.
2006-08-16Note update of "xchat" and "xchat-python" packages to version 2.6.6.tron2-3/+4
2006-08-16Update "xchat" and "xchat-python" package to version 2.6.6.tron4-8/+17
Changes since version 2.6.2: - Updated translations (de, el, es, fr, gl, hu, nl, sr, sv, vi, zh_TW). - Fixed the invisible cursor color when using GTKSpell and a black input box (when "Use the text box font & colors" is ON). - Allow loading a cert/privatekey file from ~/.xchat2/<NetWorkName>.pem - Improved the fallback routine when you receive non-UTF8 messages. It can now handle CP1252 from mIRC users and the ISO-8859-15 Euro symbol. - Added CHANOPT command for setting channel specific options such as showing of joins and part, beep on message and color paste (Lian Wan Situ). - /CLEAR HISTORY will clear your command history. - Fixed a crash if you left a Ban-List window open after closing the associated channel and then clicking Refresh. - Added an option of using 'Last-Spoke' nick completion order in Settings > Input Box. - The /QUERY command now has -nofocus arg, which scripts might find useful. - You can now /set gui_url_mod 0, to allow left-clicking URLs (default is 4, for CTRL). - XChat will now respect gtk-button-images=0 set in ~/.gtkrc-2.0. - Added a ./configure option to use your preferred spelling library: --enable-spell=type. Where type can be: none static libsexy gtkspell. Note that using gtkspell will force the inputbox to become a GtkTextView. - Advanced users can /set tab_small 2, to get _extra_ small tabs. - Added /SPLAY <soundfile>. - Plugin API: * The second args to xchat_list_int and xchat_list_str can now be NULL as a shortcut to "channels" list for current context only. * Added bits 6-8 to the field "flags" in the "channels" list. * /GUI MSGBOX <text> can now contain Pango markup. * Added -m arg to /MENU. See plugin20.html for more. - Fixed opening a irc:// URL via "xchat -a --url=abc123" command while "Skip serverlist on startup" is off. This fix is only relevant when opening an initial instance of xchat (i.e not via dbus). - Fixed the tree layout "flashing" (redrawing slowly) after you switched to tabs and back to tree. - Fixed plugin/script get_list("users") causing a critical GDK warning when not executed from the front-most tab. - Added spelling support in the input-box via GTKSpell. - Improved the error reporting when connecting through a Socks proxy. - DCC file transfers via http/socks45/wingate proxy is now supported (Damjan Jovanovic & me). - Fixed Socks 5 failing on 64-bit CPUs. - Added support for connecting through a Microsoft ISA Proxy, requires libntlm at build time (Pavel Fedin). - You can now mark and copy timestamps if you hold down SHIFT. - Timestamps are now preserved in the /lastlog command. Also fixed a bug where the separator line disappeared during /lastlog. - Added a Browse button to the DCC download folder setting. - Made the setup window a little neater and Gnome-like. - Improved the notify window a little and fixed a small memory leak. - Fixed CTCPs being truncated in the RawLog window. - Added an option to open a "Save As..." dialog when receiving a DCC file offer. - Fixed a crash if you try to remove a network from the list while it's in a auto-reconnect delay [debian bug #364858]. - Python: Fixed some memory usage bugs.
2006-08-16When adding --with-ioloop=best last week, I did not see there already was aghen2-3/+8
pkgsrc option for kqueue support. Hence, remove --with-ioloop=best again, and enable the "kqueue" option by default on *BSD platforms (as already suggested by grant when he first added the option). The pkg's default behaviour does not change, so don't bump PKGREVISION.
2006-08-16evince{,-nautilus} updated to 0.5.5.wiz2-3/+4
2006-08-16Update to 0.5.5:wiz3-67/+68
============== Evince 0.5.5 ============== New Features: * Evince have preview mode for using with gtk+ * New print dialog is used with gtk 2.10 * New recent files framework is used UI Improvements: * Sidebar is unified with Epiphany * Escape unfocus page entry Bug Fixes: * Automake updates * Link coordinates now used correctly * Desktop file is corrected * Memory leak fixes Translations: * ca cs de dz el es et eu fi fr gu ja ko mk nl ru sl sv th zh_HK zh_TW Thanks: Carlos Garcia Campos, Christian Persch, Radoslav Dorcik, Ricardo Markiewicz, Sebastien Bacher, Wouter Bolsterlee and especially translators: Ankit Patel, Arangel Angov, Benoît Dejean, Changwoo Ryu, Chao-Hsiung Liao, Christophe Merlet, Daniel Nylander, Francisco Javier F. Serrador, Guntupalli Karunakar, Hendrik Richter, Ilkka Tuohela, Inaki Larranaga, Jakub Friedl, Josep Puigdemont i Casamajó, Jovan Naumovski, Nikos Charonitakis, Priit Laes, Takeshi Aihana, Theppitak Karoonboonyanan
2006-08-16Remove mutt-1.4.2.2 again, tron beat freshmeat to it by a month.wiz1-2/+1