Commit graph

256265 commits

Author SHA1 Message Date
Gerald Pfeifer
c6abd83d17 Update to the 20110513 snapshot of GCC 4.6.1. 2011-05-14 02:01:47 +00:00
Stanislav Sedov
37f9a097e1 - Update to 1.2.3. 2011-05-14 01:21:39 +00:00
Gerald Pfeifer
d2d88b00e8 Update to Wine 1.3.20. This includes the following changes:
- Option to clip the mouse inside fullscreen windows.
 - Support for persistent HTTP connections.
 - Initial implementation of the XML writer.
 - Support for drawing rectangles in the DIB engine.
 - Volume control in MMDevAPI.
 - More MSVC runtime functions.
 - Various bug fixes.

Two of my three changes for OSS support have been integrated upstream,
only one remains.

Only tentatively remove $DATADIR/wine upon deinstallation to allow for
the forthcoming wine-gecko port. [1]

PR:		156001 [1]
Submitted by:	David Naylor <naylor.b.david@gmail.com> [1]
2011-05-14 00:21:47 +00:00
TAKATSU Tomonari
6727592b3c - Update to 2.0.0 2011-05-14 00:05:23 +00:00
Olli Hauer
6c4402d643 - document Apache APR DoS vulnerabilities 2011-05-13 23:33:16 +00:00
Stanislav Sedov
5681f39416 - Mark as ignore on freebsd versions >= 900037
(present in the base system).
2011-05-13 23:22:11 +00:00
Olli Hauer
065a08b1b3 - apache22 was updated, remove PORTREVIION since PORTVERSION was adjusted 2011-05-13 23:03:45 +00:00
Olli Hauer
92dcc59c86 - update to version 2.2.18
Changes:
http://www.apache.org/dist/httpd/CHANGES_2.2.18

Changes with Apache 2.2.18

  *) Log an error for failures to read a chunk-size, and return 408 instead
     413 when this is due to a read timeout.  This change also fixes some cases
     of two error documents being sent in the response for the same scenario.
     [Eric Covener] PR49167

  *) core: Only log a 408 if it is no keepalive timeout. PR 39785
     [Ruediger Pluem,  Mark Montague <markmont umich.edu>]

  *) core: Treat timeout reading request as 408 error, not 400.
     Log 408 errors in access log as was done in Apache 1.3.x.
     PR 39785 [Nobutaka Mantani <nobutaka nobutaka.org>, Stefan Fritsch,
     Dan Poirier]

  *) Core HTTP: disable keepalive when the Client has sent
     Expect: 100-continue
     but we respond directly with a non-100 response.  Keepalive here led
     to data from clients continuing being treated as a new request.
     PR 47087.  [Nick Kew]

  *) htpasswd: Change the default algorithm for htpasswd to MD5 on all
     platforms. Crypt with its 8 character limit is not useful anymore;
     improve out of disk space handling (PR 30877); print a warning if
     a password is truncated by crypt. [Stefan Fritsch]

  *) mod_win32: Added shebang check for '! so that .vbs scripts work as CGI.
     Win32's cscript interpreter can only use a single quote as comment char.
     [Guenter Knauf]

  *) configure: Fix htpasswd/htdbm libcrypt link errors with some newer
     linkers. [Stefan Fritsch]

  *) MinGW build improvements.  PR 49535.  [John Vandenberg
     <jayvdb gmail.com>, Jeff Trawick]

  *) mod_ssl, ab: Support OpenSSL compiled without SSLv2 support.
     [Stefan Fritsch]

  *) core: AllowEncodedSlashes new option NoDecode to allow encoded slashes
     in request URL path info but not decode them. PR 35256,
     PR 46830.  [Dan Poirier]

  *) mod_rewrite: Allow to unset environment variables. PR 50746.
     [Rainer Jung]

  *) suEXEC: Add Suexec directive to disable suEXEC without renaming the
     binary (Suexec Off), or force startup failure if suEXEC is required
     but not supported (Suexec On).  [Jeff Trawick]

  *) mod_proxy: Put the worker in error state if the SSL handshake with the
     backend fails. PR 50332.
     [Daniel Ruggeri <DRuggeri primary.net>, Ruediger Pluem]

  *) prefork: Update MPM state in children during a graceful restart.
     Allow the HTTP connection handling loop to terminate early
     during a graceful restart.  PR 41743.
     [Andrew Punch <andrew.punch 247realmedia.com>]

  *) mod_ssl: Correctly read full lines in input filter when the line is
     incomplete during first read. PR 50481. [Ruediger Pluem]

  *) mod_autoindex: Merge IndexOptions from server to directory context when
     the directory has no mod_autoindex directives. PR 47766. [Eric Covener]

  *) mod_cache: Make sure that we never allow a 304 Not Modified response
     that we asked for to leak to the client should the 304 response be
     uncacheable. PR45341 [Graham Leggett]

  *) mod_dav: Send 400 error if malformed Content-Range header is received for
     a put request (RFC 2616 14.16). PR 49825. [Stefan Fritsch]

  *) mod_userdir: Add merging of enable, disable, and filename arguments
     to UserDir directive, leaving enable/disable of userlists unmerged.
     PR 44076 [Eric Covener]

  *) core: Honor 'AcceptPathInfo OFF' during internal redirects,
     such as per-directory mod_rewrite substitutions.  PR 50349.
     [Eric Covener]

  *) mod_cache: Check the request to determine whether we are allowed
     to return cached content at all, and respect a "Cache-Control:
     no-cache" header from a client. Previously, "no-cache" would
     behave like "max-age=0". [Graham Leggett]

  *) mod_mem_cache: Add a debug msg when a streaming response exceeds
     MCacheMaxStreamingBuffer, since mod_cache will follow up with a scary
     'memory allocation failed' debug message. PR 49604. [Eric Covener]

  *) proxy_connect: Don't give up in the middle of a CONNECT tunnel
     when the child process is starting to exit.  PR50220. [Eric Covener]

PR:		156997
Submitted by:	Tsurutani Naoki <turutani _at_ scphys.kyoto-u.ac.jp>
2011-05-13 23:02:38 +00:00
Olli Hauer
ef457ed720 - update apr1 to version 1.4.4 (security update CVE-2011-0419)
Changes: (trimmed non FreeBSD related to keep the list shorter)
http://www.apache.org/dist/apr/CHANGES-APR-1.4

Changes for APR 1.4.4
Changes for APR 1.4.3

  *) Security: CVE-2011-0419
     Reimplement apr_fnmatch() from scratch using a non-recursive
     algorithm; now has improved compliance with the fnmatch() spec.
     [William Rowe]

  *) poll, pollset, pollcb on Windows: Handle calls with no file/socket
     descriptors.  PR 49882.  [Stefan Ruppert <sr myarm.com>, Jeff Trawick]

  *) Fix address handling when accepting an AF_INET socket from a socket
     bound as AF_INET6.   PR 49678.  [Joe Orton]

  *) Add new experimental configure option --enable-allocator-uses-mmap to
     use mmap instead of malloc in apr_allocator_alloc(). This greatly reduces
     memory fragmentation with malloc implementations (e.g. glibc) that
     don't handle allocationss of a page-size-multiples in an efficient way.
     It also makes apr_allocator_max_free_set() actually have some effect
     on such platforms. [Stefan Fritsch]

  *) configure: Make definition of apr_ino_t independent of
     _FILE_OFFSET_BITS even on platforms where ino_t is 'unsigned int'.
     [Stefan Fritsch]

  *) apr_ring: Workaround for aliasing problem that causes gcc 4.5 to
     miscompile some brigade related code. PR 50190. [Stefan Fritsch]

  *) apr_file_flush_locked(): Handle short writes. [Stefan Fritsch]

  *) apr_pollset_create_ex(): Trap errors from pollset providers.
     PR 49094.  [Sami Tolvanen <sami.tolvanen mywot.com>]

  *) apr_pollset_create*(): Fix memory lifetime problem with the wakeup
     pipe when the pollset was created with APR_POLLSET_NOCOPY.
     [Neil Conway <nrc cs.berkeley.edu>]

  *) Fix detection of some Linux variants when configure is built with
     recent GNU tools.  [Eric Covener]

  *) Avoid a redundant fcntl() call in apr_file_open() where O_CLOEXEC
     is supported.  PR 46297.  [Joe Orton]

  *) Improve platform detection by updating config.guess and config.sub.
     [Rainer Jung]

  commit with apache@ hat

PR:		156997
Submitted by:	Tsurutani Naoki <turutani _at_ scphys.kyoto-u.ac.jp>
2011-05-13 23:00:17 +00:00
Max Brazhnikov
3afa32a9fd Update to 0.7.1 2011-05-13 20:26:11 +00:00
Alexey Dokuchaev
e732550b50 Reformat description text. 2011-05-13 19:54:29 +00:00
Gabor Pali
3a0ea31db9 - Stop processing if one of the dependencies is missing from bsd.hackage.mk
Obtained from:	FreeBSD Haskell
2011-05-13 18:09:15 +00:00
Sylvio Cesar Teixeira
c66f6df22d - Update to 1.12 2011-05-13 18:05:03 +00:00
Sylvio Cesar Teixeira
a0604961ff - Update to 2.14 2011-05-13 18:03:58 +00:00
Sylvio Cesar Teixeira
b930c843ac - Update to 1.2.8.11 2011-05-13 18:03:01 +00:00
Beech Rintoul
387e302dcf -Bump portrevision to chase dovecot2 update
PR:		ports/156728
Approved by:	itetcu (mentor)(implicit)
2011-05-13 17:04:41 +00:00
Beech Rintoul
b87cabdf69 -Update to 2.0.12
-Dovecot 2.0.12 changes:
-doveadm: Added "move" command for moving mails between mailboxes.
-virtual: Added support for "+mailbox" entries that clear \Recent
 flag from messages (default is to preserve them).
-dbox: Fixes to handling external attachments
-dsync: More fixes to avoid hanging with remote syncs
-dsync: Many other syncing/correctness fixes
-doveconf: v2.0.10 and v2.0.11 didn't output plugin {} section right

PR:		ports/156728
Submitted by:	Uffe Jakobsen <uffe@uffe.org>
Approved by:	Maintainer timeout (>Two Weeks)
		itetcu (mentor)(implicit)
2011-05-13 17:02:12 +00:00
Beech Rintoul
6ff2c27f4a -Update to 0.6.0
-Pass maintainership to submitter

PR:		ports/156685
Submitted by:	Guido Falsi <mad@madpilot.net>
Approved by:	Olivier Smedts <olivier@gid0.org> (maintainer)
		itetcu (mentor)(implicit)
2011-05-13 16:39:32 +00:00
Romain Tartière
d3432ebe51 Force commit to fix wrong info in last commit log
PR:		ports/143537
Submitted by:	Ivan Klymenko <fidaj@ukr.net>
Pointy hat to:	me
2011-05-13 16:12:53 +00:00
Romain Tartière
e9261e82a5 make jobs unsafe
PR:		lang/mono
Submitted by:	Ivan Klymenko <fidaj@ukr.net>
2011-05-13 16:09:36 +00:00
Sergey Skvortsov
f1ff754e38 Update to 2.01080605
Changes:	http://cpansearch.perl.org/src/ILYAZ/Math-Pari-2.01080605/Changes
2011-05-13 15:29:07 +00:00
Cy Schubert
a4153f0c21 Update 3.2.2 --> 3.2.4
Suggested by:	Peter Czanik <czanik@balabit.hu> (Upline)
2011-05-13 15:14:15 +00:00
Greg Larkin
85eabfe8eb - Updated to 1.11.6
ChangeLog: http://framework.zend.com/changelog/1.11.6

Security:	http://framework.zend.com/security/advisory/ZF2011-02
Security:	34e8ccf5-7d71-11e0-9d83-000c29cc39d3
2011-05-13 15:09:16 +00:00
Cy Schubert
7523415f30 Update 0.2.10 --> 0.2.12.
Take on maintainership of this port.

Approved by:	Ivan Lago <ivan.lago@ifom-ieo-campus.it> (Maintainer)
Prodded by:	Peter Czanik <czanik@balabit.hu> (Upline)
2011-05-13 15:06:26 +00:00
Greg Larkin
e8f4f8f1c3 - Document www/zend-framework (potential SQL injection when using PDO_MySQL)
Security:	http://framework.zend.com/security/advisory/ZF2011-02
2011-05-13 15:06:00 +00:00
Sylvio Cesar Teixeira
e9b19384e1 - Update to 1.15.5
PR:		ports/155397
Submitted by:	Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> (maintainer)
2011-05-13 14:48:17 +00:00
Boris Samorodov
b8067e60f9 . transfer maintainership to emulation@;
. remove deprecation and expiration (fc4 ports are defaults for FreeBSD-7.x).
2011-05-13 14:47:52 +00:00
Sylvio Cesar Teixeira
ab755208c5 - Update to 0.9.3.
- Removed files:

- files/patch-src-dcmtk_interface.cc
- files/patch-src-mpeg_encode.c
- files/patch-src-ui_common.c

PR:		ports/156963
Submitted by:	Guido Falsi <mad@madpilot.net> (maintainer)
2011-05-13 14:37:57 +00:00
Philippe Audeoud
39032cb906 rebot3.pl renames MP3 files that you have grabbed from audio CDs with
the track name, number, album, and/or artist. It does so by using
either a remote CDDB server or a local CDDB created by cd (and other)
players like xmcd, kscd or xmms. With rebot3.pl you can also add or
remove ID3 (version 1) tags to/from the MP3 files.

WWW: http://www.headmqa.com/rebot3/

PR:		ports/156879
Submitted by:	Chris Rees (utisoft at gmail.com)
2011-05-13 14:34:36 +00:00
Wesley Shields
2125e1e314 Add an AUDIT option, which is off by default for now. I will turn it on
with the next significant bump.

Submitted by:	Mike Kelly (private mail)
2011-05-13 14:30:35 +00:00
Greg Larkin
76825995ce - Fixed rc.d script so it adheres to rc.conf setting [1]
- Added missing dependency on devel/py-thrift
- Bumped PORTREVISION

PR:		ports/154942 (based on)
Submitted by:	Erik Steigler <erik@okcupid.com> [1]
Approved by:	maintainer timeout (18 days)
2011-05-13 13:53:55 +00:00
Wesley Shields
e431a53e3d Update to 1.411.
While here, be explicit about the RUN_DEPENDS.

PR:		ports/156710
Submitted by:	Mark Felder <feld@feld.me>
Approved by:	maintainer timeout
2011-05-13 13:12:07 +00:00
Wesley Shields
8f4361328f Update to 1.16.5
PR:		ports/156914
Submitted by:	Ryan Steinmetz <rpsfa@rit.edu>
Approved by:	maintainer timeout (3 days, security update)
Security:	3fadb7c6-7b0a-11e0-89b4-001ec9578670
2011-05-13 13:10:06 +00:00
Sunpoet Po-Chuan Hsieh
95cd33d310 - Update 1.28
Changes:	http://search.cpan.org/dist/JSON-Any/Changes
2011-05-13 12:49:40 +00:00
Roman Bogorodskiy
0778074285 - Update to 1.13.3
- Remove useless CONFIGURE_TARGET definition
2011-05-13 12:01:55 +00:00
Lev A. Serebryakov
245cc4f250 Fix plist
PR:	ports/156907
2011-05-13 11:45:09 +00:00
Philippe Audeoud
883a27c493 - Update to 1.5
- Changelog: http://cpansearch.perl.org/src/NORBU/Net-Dropbox-API-1.5/Changes
2011-05-13 08:33:11 +00:00
Philippe Audeoud
8a7c17bd87 - Update to 1.57
- Changelog: http://cpansearch.perl.org/src/ZEFRAM/Math-Complex-1.57/ChangeLog
2011-05-13 08:29:16 +00:00
Wen Heping
f7dbb25491 - Apply a patch from Gentoo to fix run error:
http://bugs.gentoo.org/show_bug.cgi?id=140987

PR:		ports/156985
Submitted by:	Tim Zingelman <zingelman@fnal.gov>
2011-05-13 08:23:23 +00:00
Philippe Audeoud
15659866c6 - Update to 1.43
- Changelog: http://cpansearch.perl.org/src/SULLR/IO-Socket-SSL-1.43/Changes
2011-05-13 08:17:47 +00:00
Wen Heping
b7799d3fac - Update to 1.2.10 2011-05-13 08:12:40 +00:00
Philippe Audeoud
348a08ff8f - Update to 0.35
- Changelog: http://cpansearch.perl.org/src/RKITOVER/Net-SSH2-0.35/Changes
2011-05-13 08:08:29 +00:00
Philippe Audeoud
d7f5856ec0 - Update to 1.015
- Changelog: http://cpansearch.perl.org/src/KWILLIAMS/Math-BaseCalc-1.015/Changes
2011-05-13 07:54:07 +00:00
Ion-Mihai Tetcu
fc7c6f864b Update to 17.07
PR:		156636
Submitted by:	Radim Kolar
2011-05-13 07:13:24 +00:00
Ion-Mihai Tetcu
aee0670b90 - fix installation
- adjust pkg-message, as this is the "next" version :)

PR:		156994
Submitted by:	Zhihao Yuan <lichray@gmail.com>
2011-05-13 06:55:11 +00:00
Greg Lewis
403554a2c9 . Update to 3.6.2.
Submitted by:	tg@
2011-05-13 06:08:47 +00:00
Alexey Dokuchaev
9cfbd49eb6 Update to newer snapshot version (20061110) which fixes a PBM crash problem.
There is no known official martersite for now, but distfile can be fetched
from Debian mirrors, so switch to them for a time being.

PR:		ports/156272
Submitted by:	maintainer
2011-05-13 03:49:08 +00:00
Rene Ladan
4e0f8c47b8 Remove line for multimedia/linux-libtheora, the port was readded 2011-05-13 03:48:49 +00:00
Rene Ladan
bb33653e46 Update to 11.0.696.68
Security:	6887828f-0229-11e0-b84d-00262d5ed8ee
2011-05-13 03:42:24 +00:00
Vanilla I. Shu
7923d9443b add missing depends to devel/libexecinfo.
PR:		ports/156993
Submitted by:	L Campbell <lcampbell at ironclad.mobi>
2011-05-13 03:32:44 +00:00