Commit graph

118582 commits

Author SHA1 Message Date
smb
4560341e89 Update claws-mail to 3.0.2:
* Bug fixes:
        o bug 1320, 'Memory leak caused by gtk_container_get_children'
        o bug 1321, 'access before allocation when scanning for uris'
        o bug 1324, 'Corrupted IMAP cache'
        o bug 1327, 'segfault when replying to a non-existent news
                     message'
        o bug 1329, 'error in quicksearch.c'
        o bug 1334, 'user defined mail incorporation script not run'
        o bug 1336, 'Segfault if empty space before search-string'
        o bug 1337, 'Crash on removing uncached emails'
        o Prevent unquoted mime boundaries, by always using a /
        o Remove unnecessary error when cancelling export to mbox.
        o MAEMO: make all Folder Properties pages visible
        o MAEMO: fix overlapping buttons in Edit Accounts page

Also update the version dependencies of all plug-ins.  The reality
of the numbering for standard plug-ins was different than had been
assumed, and the actual published dependencies were more complex tha
was captured by the previous structure.
2007-10-23 20:16:50 +00:00
tnn
133497a30a recordproto contains only header files, relax from full to build dep. 2007-10-23 15:34:32 +00:00
adam
4bb008fec2 Updated mail/exim-html to 4.68 2007-10-23 15:18:15 +00:00
adam
5a04efa917 Documentation updated to match exim 4.68 2007-10-23 15:17:10 +00:00
joerg
3ccc61f919 DESTDIR support. 2007-10-23 14:11:51 +00:00
wiz
38d1a3da56 Needs gmake. From Yamashiro Jun in PR 37161. 2007-10-23 13:20:38 +00:00
gdt
1499a33e79 Fix >80 column line, and stray word. Pointed out by dsainty@ 2007-10-23 12:22:48 +00:00
wiz
b8fd6cb389 glibmm updated to 2.14.2. 2007-10-23 12:12:38 +00:00
wiz
451f9d29e9 Update to 2.14.2:
2.14.2:

* Build: Hopefully fix the build on NetBSD-4.99.6/amd64.
  Bug #386990. (was already in 2.12.7) (Murray Cumming)
* gmmproc: Added support for the new _CONFIGINCLUDE() macro.
  (Armin Burgmeier)
2007-10-23 12:11:30 +00:00
wiz
7a408b7a45 gnutls updated to 2.0.2. 2007-10-23 11:44:29 +00:00
wiz
fdc7ca16d9 Update to 2.0.2:
* Version 2.0.2 (released 2007-10-17)

** TLS authorization support removed.
This technique may be patented in the future, and it is not of crucial
importance for the Internet community.  After deliberation we have
concluded that the best thing we can do in this situation is to
encourage society not to adopt this technique.  We have decided to
lead the way with our own actions.

** certtool: Fixed data corruption when using --outder.

** Fix configure-time Guile detection.

** API and ABI modifications:
GNUTLS_SUPPLEMENTAL_USER_MAPPING_DATA: ADDED.  To avoid that the
    gnutls_supplemental_data_format_type_t enum type becomes empty.

* Version 2.0.1 (released 2007-09-20)

** New directory doc/credentials/ with test credentials.
This collects the test credentials from the web page and from src/.
The script gnutls-http-serv has also been moved to that directory.

** Update SRP extension type and cipher suite with official IANA values.
This breaks backwards compatibility with SRP in older versions of
GnuTLS, but this is intentional to speed up the adoption of the
official values.  The old values we used were incorrect.

** Guile: Fix `x509-certificate-dn-oid'

** API and ABI modifications:
No changes since last version.
2007-10-23 11:43:56 +00:00
wiz
a45aa16547 p5-MIME-tools updated to 5.423. 2007-10-23 11:29:30 +00:00
wiz
fe11c05168 Update to 5.423:
5.433     2007-09-27  Dave O'Neill

	* VERSION 5.4.33 RELEASED

	* (bugfix) Fix API regression - MIME::Entity::body() should return an
	  arrayref.  Fixes RT 29643.

5.422     2007-09-25  Dave O'Neill

	* VERSION 5.422 RELEASED

	* (bugfix) Require File::Temp 0.17 or newer for IO::Seekable support.
	  This fixes test failures seen on Darwin.

	* (bugfix) Clear filer's purgeable() before calling init_parse().  Fixes RT 7858.

commit 005e387c42957f2a433464beaef1d2b416746963
Author: Dave O'Neill
Date:   Fri Sep 21 12:41:03 2007 -0400

    Add LICENSE item to Makefile.PL

5.421     2007-09-21  Dave O'Neill

	* VERSION 5.421 RELEASED

	* (enhancement) Use File::Temp for tempfile generation.  MIME::Parser
	  now has a tmp_dir() method for changing the temporary directory on a
	  per-parser basis.

5.420_02  2007-08-29  Dave O'Neill

	* VERSION 5.420_02 (developer release)

	* (bugfix) Correct 'use vars' and add a 'use strict' (fixes RT #22681)

	* (bugfix) Don't allow all-whitespace filenames in
	  recommended_filename() (fixes RT #6115)

	* (bugfix) Require IO-stringy 2.110.  Fixes RT tickets 11312, 11452,
	  12375, 12784, and 18791

	* (docs) Updated RFC references to refer to MIME RFCs 2045-2049 (RT #14119)

	* (cleanup) Warn if no decoder is found for a given encoding. (RT #22682)

	* (cleanup) IO::Wrap no longer used, IO::ScalarArray use minimized


5.420_01  2007-06-18  Dave O'Neill

	* VERSION 5.420_01 (developer release)

	* (bugfix) Fix warning generated by a header of "Content-Type: /".
	  Previous versions would warn about undefined variables.  We now
	  set a blank type and subtype.

	* (cleanup) Partial removal of dependencies on IO::Scalar and
	  IO::ScalarArray.  We now use Perl's built-in I/O on scalars as much
	  as possible.  NOTE THAT THIS REQUIRES PERL 5.8!

	* (cleanup) FileHandle usage removed in favour of IO::File

	* (cleanup) Remove broken utility methods -- shellquote() because it
	  didn't really make anything safe, and catfile(), because File::Spec
	  is better.

	* (cleanup) Multiple test cleanups, including removal of
	  ExtUtils/TBone.pm.  Tests now use Test::More.

	* (cleanup) Remove support for recycling tempfiles ( tmp_recycling() and
	  its usage in new_tmpfile() )

	* (cleanup) Remove nasty "eval join('',<::DATA>) unless caller()"
	  testing code from various modules

	* (cleanup) Merge all changelog information from README and
	  MIME/Tools.pm into ChangeLog
2007-10-23 11:28:55 +00:00
dsainty
ef49501508 If OpenSSL is available, Dar will use it for crypto support. Buildlink this back under Pkgsrc control. 2007-10-23 11:15:25 +00:00
wiz
ac3d1f64ee + delegate-9.7.5, glibmm-2.14.2, gnumeric-current-1.7.13,
goffice0.5-0.5.1, libdvbpsi-0.1.6, octave-current-2.9.15,
  p5-File-Remove-0.38, poppler-0.6.1, shntool-3.0.5.
2007-10-23 10:27:37 +00:00
adrianp
dcfc90f39e Updated chat/inspircd to 1.1.14 2007-10-22 20:57:23 +00:00
adrianp
1dda8f7301 1.1.14 is now out and about, containing a few fixes and stability backports
from the 1.2 trunk. Fixes include a (yet again) refactored m_ident that
should finally adress stability issues some setups encountered with it, fixes
to failover linking (it shouldn't cause splits unnecessarily now) and
some sockets will no longer block on some operating systems.
CHGIDENT is now also silent when issued from U:Lines, for Anope users.
2007-10-22 20:57:00 +00:00
adrianp
cc182a2837 Updated chat/ircd-hybrid to 7.2.3 2007-10-22 20:44:29 +00:00
gdt
1be6c7cfd7 Point out that ghostscript-esp is old and that ghostscript has cups
support if built with the cups option.
2007-10-22 16:31:16 +00:00
dsainty
197c0e2a3c Quell a pkglint -Wall warning, use CONF_FILES+= instead of = 2007-10-22 12:35:32 +00:00
dsainty
c03c2e7f20 Pull over the "cups" option, based largely on the implementation of the "cups"
option in ghostscript-esp, although there it was on by default.

Here it is off by default, which is more in keeping with how the "cups" option
is generally used - it is usually off by default, and a CUPS user would
usually add "cups" to the global options.
2007-10-22 12:15:03 +00:00
dsainty
5fd39f9f4f Updated print/cups to 1.2.12nb1 2007-10-22 12:02:09 +00:00
dsainty
77c395ab30 Fix the output of "cups-config --ldflags" to output "-Wl,-R/usr/pkg" like
other config scripts do.

Bump PKGREVISION since client software may not correctly build or run
without this fix.
2007-10-22 11:56:46 +00:00
taca
9949b8ea43 +openssl-0.9.8g 2007-10-22 11:30:42 +00:00
ghen
1cb861baf8 Updated www/seamonkey, www/seamonkey-bin and www/seamonkey-gtk1 to 1.1.5. 2007-10-22 08:05:10 +00:00
ghen
99cfc074ac Update seamonkey, seamonkey-bin and seamonkey-gtk1 to SeaMonkey 1.1.5.
Security fixes in this version:

MFSA 2007-36 URIs with invalid %-encoding mishandled by Windows
MFSA 2007-35 XPCNativeWrapper pollution using Script object
MFSA 2007-34 Possible file stealing through sftp protocol
MFSA 2007-33 XUL pages can hide the window titlebar
MFSA 2007-32 File input focus stealing vulnerability
MFSA 2007-31 Browser digest authentication request splitting
MFSA 2007-30 onUnload Tailgating
MFSA 2007-29 Crashes with evidence of memory corruption (rv:1.8.1.8)
MFSA 2007-28 Code execution via QuickTime Media-link files

For more info, see http://www.mozilla.org/projects/seamonkey/releases/seamonkey1.1.5/
2007-10-22 08:04:07 +00:00
dogcow
77bb9c8e8d Updated security/p5-Net-SSH to 1.30 2007-10-22 06:54:56 +00:00
dogcow
cded6f8ed6 Update to Net::SSH::Perl 1.3.0:
1.30  2006.03.17
    - Fix for local *READ/*WRITE tie problem in open2 function (Bas van
      Sisseren).
    - Add back 'use IO::Socket' to fix 'Can't locate object method "blocking"
      via package "IO::Handle"' error (rt.cpan.org #15102).
    - Allow "The socket is already in use" as well as "Address already in use"
      to detect port already in use (for AIX, rt.cpan.org #16301).
    - Use sysread (not <>) to read the version string to avoid mixing read
      types and allow pre-version data (fix by Denis Bider, rt.cpan.org #14812).
    - Fix warnings on empty hostfile lines (fix by JOHANL, rt.cpan.org #13750).
    - Get the user's home directory from getpwuid() if the HOME environment
      variable isn't set (rt.cpan.org #13434).
2007-10-22 06:53:16 +00:00
martti
846df88af1 postfix and vim 2007-10-22 06:16:57 +00:00
martti
11d22b860b Updated editors/vim-share to 7.1.145
1414  7.1.117  can't check wether Vim was compiled with Gnome
  1805  7.1.118  (after 7.1.107) compiler warning for Visual C compiler
  1761  7.1.119  crash after setting 'cmdheight' to huge value
 17416  7.1.120  can't use valgrind with "make test" to test for memory leaks
  2350  7.1.121  ":cd %:h" fails when editing file in current directory
  3732  7.1.122  Mac: building with Aap doesn't work properly
  8051  7.1.123  Win32: ":edit foo ~ foo" expands "~"
  2599  7.1.124  (extra) Mac: may get empty buffer if dropping file on Vim.app
 12060  7.1.125  the TermResponse autocommand event is not always triggered
 13372  7.1.126  (extra) ":vimgrep */*" doesn't work if autocmd changes dir
  2319  7.1.127  memory leak when doing completing
  2079  7.1.128  (extra) build problem with Cygwin
  1740  7.1.129  (extra) Win32: Can't get long user name
  9494  7.1.130  crash with some combination of undo and redo
  1535  7.1.131  ":mksession" always adds ":setlocal autoread"
  1781  7.1.132  getpos("'>") may return < 0 for a Linewise selection
  1515  7.1.133  shorten_fname1() linked when it's not needed
 10379  7.1.134  (extra) Win32: Can't build with VC8
  3337  7.1.135  Win32: ":e c:/tmp/foo" and ":e c:/tmp//foo" create two buffers
  1522  7.1.136  memory leak when using Ruby syntax highlighting
  1553  7.1.137  build failure when using EXITFREE
  1836  7.1.138  Perl: Msg() doesn't stop when "q" is typed at the more prompt
  1557  7.1.139  fold truncated when ending Insert mode with CTRL-C
  1664  7.1.140  v:count can't be used in an expression mapping
  2806  7.1.141  GTK: can't use negative offset with -geom argument
  2161  7.1.142  ":redir @A>" doesn't work
  1723  7.1.143  uninitialized memory read when diffing three files
  1250  7.1.144  after ":diffup" cursor can be in the wrong position
  6160  7.1.145  stay in Insert completion mode depending on the char typed
2007-10-22 06:16:16 +00:00
martti
f39b3a0c80 Updated mail/postfix-current to 2.5-20071006
Lost of fixes, see HISTORY for details...
2007-10-22 06:15:56 +00:00
martti
137a0dbe03 Updated mail/postfix to 2.4.6
- A remote SMTP client TLS certificate with an unparsable canonical
  name triggered a panic error in the Postfix SMTP server (attempt
  to allocate zero-length memory) while sending a request to an
  SMTPD policy server.

- On backup MX servers where the queue file system is mounted with
  "atime" (file read/execute access time) updates disabled, the
  flush daemon would trigger mail delivery attempts once every 1000
  seconds, thus rendering the maximal_backoff_time setting useless
  for backup MX service.
2007-10-22 06:15:19 +00:00
bjs
e9c8dffc33 Add links-zlib option, quell pkglint warning from www/links. 2007-10-22 05:46:19 +00:00
minskim
83eb4fbb22 Note update of yasm. 2007-10-21 23:43:08 +00:00
minskim
ac2837bfc5 Update yasm to 0.6.2.
Changes:
- AMD SSE4a and SSE5 instruction support.
- AMD LZCNT, POPCNT, EXTRQ, INSERTQ, MOVNTSD, and MOVNTSS instruction support.
- 16-bit float value (IEEE-754r half precision) support (desirable for SSE5).
- Added "oword", "do", and "reso" aliases for "dqword", "ddq", "resdq".
- Added easier RIP-relative addressing with rel/abs modifiers and "default"
  directive to set default rel/abs mode (see AMD64 for details).
- CPP preprocessor. Contributed by Paul Barker
- GAS local labels (1:, 1f, 1b) support. Noticed by Jung Lee
- GAS .org fill parameter support. Noticed by Jung Lee and Xiaoming Mo
- Command line aliases for -d (-D) and -u (-U) for increased NASM command line
  compatibility. Requested by Mike Frysinger
- ..gotpc ELF32 bugfix: #114
- Minor bugfixes (CPU setting for a few instructions, hash lookup).
2007-10-21 23:41:59 +00:00
adrianp
65b24da175 Updated security/openssl to 0.9.7inb5 2007-10-21 17:53:20 +00:00
adrianp
e35260c69d Full and proper fix for CVE-2007-5135
PKGREVISION++
2007-10-21 17:52:52 +00:00
joerg
a8bf321ffc Remove calls to gnomeconfig when no matching .pc file was found.
Bump revision.
2007-10-21 14:01:16 +00:00
adrianp
e02d11798d Added security/keepassx version 0.2.2 2007-10-21 13:54:07 +00:00
adrianp
86a02d0d3e +keepassx 2007-10-21 13:51:41 +00:00
adrianp
1027ed767f KeePass is a free/open-source password manager or safe which helps you to
manage your passwords in a secure way. You can put all your passwords in one
database, which is locked with one master key or a key-disk. So you only have
to remember one single master password or insert the key-disk to unlock the
whole database. The databases are encrypted using the best and most secure
encryption algorithms currently known (AES and Twofish).
2007-10-21 13:51:01 +00:00
wiz
0cf0ed1b41 + GMT-4.2.1, compiz-0.6.2, gedit-2.20.3, gtksourceview-2.0.1,
ircservices-5.1.2, libgnome-2.20.1.1, libgnomecanvas-2.20.1.1,
  libgnomeui-2.20.1.1, liquidwar-5.6.4, mercurial-0.9.5, openssl-0.9.8f,
  p5-Config-General-2.36, psi-0.11, py-prewikka-0.9.13, tea-17.3.5,
  totem-2.20.1.
2007-10-21 11:06:01 +00:00
dsainty
171b941d15 Add SourceForge as an option to the MASTER_SITES 2007-10-21 04:48:15 +00:00
dsainty
837a62a977 Updated databases/palm-db-tools to 0.3.6nb1 2007-10-21 04:35:04 +00:00
dsainty
b52eaddf49 Patch a few bugs:
The default C++ precision of 6 digits is Very risky in a database context.

As with DATE fields, if a TIME field is unset (hour value 24+), output an
empty string.

Correctly terminate default string values on NUL.

Bump PKGREVISION.

Submitted upstream as: http://sourceforge.net/tracker/index.php?func=detail&aid=1817213&group_id=10524&atid=360524
2007-10-21 03:53:45 +00:00
obache
51da164fe6 No need "ENABLE_CUPS" anymore since last option.mk change. 2007-10-21 02:03:34 +00:00
obache
43df7ca46f Suppress the unexptected cups detection.
Fixes PR 37134.
2007-10-21 01:18:36 +00:00
adrianp
0fb26c6302 Updated net/snort to 2.8.0 2007-10-21 00:23:51 +00:00
adrianp
2d6528fa3e -snort-2.8.0 2007-10-21 00:23:29 +00:00
adrianp
a2b8769b99 Update to 2.8.0
* Port lists
* IPv6 support
* Packet performance monitoring
* Experimental support for target-based stream and IP frag reassembly
* Ability to take actions on preprocessor events
* Detection for TCP session hijacking based on MAC address
* Unified2 output plugin
* Improved performance and detection capabilities
2007-10-21 00:22:53 +00:00