summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2007-02-15Modular Xorg support.joerg1-2/+5
2007-02-15No need to directly depend on X11.joerg1-2/+1
2007-02-11PKGREVISION bump due to proper ABI_DEPENDS versioning in devel/libevent.tv1-2/+2
2007-02-08Add openssl bl3.tv1-1/+2
2007-02-06don't complain if the location of the DragonFly header exists.joerg2-8/+17
2007-02-06Allow transparent proxy support for PF on DragonFly.joerg3-3/+21
2007-02-05Add missing NOT_SUNOSLIB to the install script. Should address the installdmcmahill1-2/+2
problems reported in PR pkg/35550.
2007-02-04bump pkgrev after adding USE_PKGLOCALEDIRdmcmahill1-2/+2
2007-02-04add USE_PKGLOCALEDIRdmcmahill1-1/+2
2007-02-04Get firefox2 to compile and run on Solaris-2.9/sparc. The patch takesdmcmahill4-8/+15
care of build problems and the PLIST fixes take care of runtime problems.
2007-02-04Add a NOT_SUNOSLIB to complement the SUNOSLIB variable. Needed bydmcmahill1-1/+5
firefox2.
2007-02-04Get these mozilla clients to work on Solaris-2.9/sparc. There weredmcmahill7-13/+19
two issues. The PLIST was incorrect and since the PLIST is used by the "moz-install" script, anything missing from the PLIST is never installed even when building from source. When libfreebl* were not installed it caused the clients to fail to load the security component and fail with "The browser failed to load its security component". The second issue is that many installations of solaris-2.9 include various glib/gtk/gnome libraries in /usr/lib. This causes failures because the pkgsrc ones were used at link time and the /usr/lib ones at run time. Work around this by setting a LD_LIBRARY_PATH that includes the pkgsrc lib directory first. pkgrevision bumps all around.
2007-02-03Fix module name in MESSAGE for apache2.obache2-3/+5
Pointed out in PR 35510.
2007-02-03Fix install problem with apache2 pointed out in PR 35508.obache1-2/+4
For apache2, module extension is ".la", not ".so".
2007-02-02Update to 7.16.1:wiz2-6/+6
Package info: scp support not enabled (libssh2 is not packaged). Version 7.16.1 (29 January 2007) Daniel (29 January 2007) - Michael Wallner reported that when doing a CONNECT with a custom User-Agent header, you got _two_ User-Agent headers in the CONNECT request...! Added test case 287 to verify the fix. Daniel (28 January 2007) - curl_easy_reset() now resets the CA bundle path correctly. - David McCreedy fixed the Curl command line tool for HTTP on non-ASCII platforms. Daniel (25 January 2007) - Added the --libcurl [file] option to curl. Append this option to any ordinary curl command line, and you will get a libcurl-using source code written to the file that does the equivalent operation of what your command line operation does! Dan F (24 January 2007) - Fixed a dangling pointer problem that prevented the http_proxy environment variable from being properly used in many cases (and caused test case 63 to fail). Daniel (23 January 2007) - David McCreedy did NTLM changes mainly for non-ASCII platforms: #1 There's a compilation error in http_ntlm.c if USE_NTLM2SESSION is NOT defined. I noticed this while testing various configurations. Line 867 of the current http_ntlm.c is a closing bracket for an if/else pair that only gets compiled in if USE_NTLM2SESSION is defined. But this closing bracket wasn't in an #ifdef so the code fails to compile unless USE_NTLM2SESSION was defined. Lines 198 and 140 of my patch wraps that closing bracket in an #ifdef USE_NTLM2SESSION. #2 I noticed several picky compiler warnings when DEBUG_ME is defined. I've fixed them with casting. By the way, DEBUG_ME was a huge help in understanding this code. #3 Hopefully the last non-ASCII conversion patch for libcurl in a while. I changed the "NTLMSSP" literal to hex since this signature must always be in ASCII. Conversion code was strategically added where necessary. And the Curl_base64_encode calls were changed so the binary "blobs" http_ntlm.c creates are NOT translated on non-ASCII platforms. Dan F (22 January 2007) - Converted (most of) the test data files into genuine XML. A handful still are not, due mainly to the lack of support for XML character entities (e.g. & => & ). This will make it easier to validate test files using tools like xmllint, as well as to edit and view them using XML tools. Daniel (16 January 2007) - Armel Asselin improved libcurl to behave a lot better when an easy handle doing an FTP transfer is removed from a multi handle before completion. The fix also fixed the "alive counter" to be correct on "premature removal" for all protocols. Dan F (16 January 2007) - Fixed a small memory leak in tftp uploads discovered by curl's memory leak detector. Also changed tftp downloads to URL-unescape the downloaded file name. Daniel (14 January 2007) - David McCreedy provided libcurl changes for doing HTTP communication on non-ASCII platforms. It does add some complexity, most notably with more #ifdefs, but I want to see this supported added and I can't see how we can add it without the extra stuff added. - Setting CURLOPT_COOKIELIST to "ALL" when no cookies at all was present, libcurl would crash when trying to read a NULL pointer. Daniel (12 January 2007) - Toby Peterson found a nasty bug that prevented (lib)curl from properly downloading (most) things that were larger than 4GB on 32 bit systems. Matt Witherspoon helped as narrow down the problem. Daniel (5 January 2007) - Linus Nielsen Feltzing introduced the --ftp-ssl-ccc command line option to curl that uses the new CURLOPT_FTP_SSL_CCC option in libcurl. If enabled, it will make libcurl shutdown SSL/TLS after the authentication is done on a FTP-SSL operation. Daniel (4 January 2007) - David McCreedy made changes to allow base64 encoding/decoding to work on non-ASCII platforms. Daniel (3 January 2007) - Matt Witherspoon fixed the flaw which made libcurl 7.16.0 always store downloaded data in two buffers, just to be able to deal with a special HTTP pipelining case. That is now only activated for pipelined transfers. In Matt's case, it showed as a considerable performance difference, Daniel (2 January 2007) - Victor Snezhko helped us fix bug report #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) (known bug #36) --limit-rate (CURLOPT_MAX_SEND_SPEED_LARGE and CURLOPT_MAX_RECV_SPEED_LARGE) are broken on Windows (since 7.16.0, but that's when they were introduced as previous to that the limiting logic was made in the application only and not in the library). It was actually also broken on select()-based systems (as apposed to poll()) but we haven't had any such reports. We now use select(), Sleep() or delay() properly to sleep a while without waiting for anything input or output when the rate limiting is activated with the easy interface. - Modified libcurl.pc.in to use Libs.private for the libs libcurl itself needs to get built static. It has been mentioned before and was again brought to our attention by Nathanael Nerode who filed debian bug report #405226 (http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405226). Daniel (29 December 2006) - Make curl_easy_duphandle() set the magic number in the new handle. Daniel (22 December 2006) - Robert Foreman provided a prime example snippet showing how libcurl would get confused and not acknowledge the 'no_proxy' variable properly once it had used the proxy and you re-used the same easy handle. I made sure the proxy name is properly stored in the connect struct rather than the sessionhandle/easy struct. - David McCreedy fixed a bad call to getsockname() that wrongly used a size_t variable to point to when it should be a socklen_t. - When setting a proxy with environment variables and (for example) running 'curl [URL]' with a URL without a protocol prefix, curl would not send a correct request as it failed to add the protocol prefix. Daniel (21 December 2006) - Robson Braga Araujo reported bug #1618359 (http://curl.haxx.se/bug/view.cgi?id=1618359) and subsequently provided a patch for it: when downloading 2 zero byte files in a row, curl 7.16.0 enters an infinite loop, while curl 7.16.1-20061218 does one additional unnecessary request. Fix: During the "Major overhaul introducing http pipelining support and shared connection cache within the multi handle." change, headerbytecount was moved to live in the Curl_transfer_keeper structure. But that structure is reset in the Transfer method, losing the information that we had about the header size. This patch moves it back to the connectdata struct. Daniel (16 December 2006) - Brendan Jurd provided a fix that now prevents libcurl from getting a SIGPIPE during certain conditions when GnuTLS is used. Daniel (11 December 2006) - Alexey Simak found out that when doing FTP with the multi interface and something went wrong like it got a bad response code back from the server, libcurl would leak memory. Added test case 538 to verify the fix. I also noted that the connection would get cached in that case, which doesn't make sense since it cannot be re-use when the authentication has failed. I fixed that issue too at the same time, and also that the path would be "remembered" in vain for cases where the connection was about to get closed. Daniel (6 December 2006) - Sebastien Willemijns reported bug #1603712 (http://curl.haxx.se/bug/view.cgi?id=1603712) which is about connections getting cut off prematurely when --limit-rate is used. While I found no such problems in my tests nor in my reading of the code, I found that the --limit-rate code was severly flawed (since it was moved into the lib, since 7.15.5) when used with the easy interface and it didn't work as documented so I reworked it somewhat and now it works for my tests. Daniel (5 December 2006) - Stefan Krause pointed out a compiler warning with a picky MSCV compiler when passing a curl_off_t argument to the Curl_read_rewind() function which takes an size_t argument. Curl_read_rewind() also had debug code left in it and it was put in a different source file with no good reason when only used from one single spot. - Sh Diao reported that CURLOPT_CLOSEPOLICY doesn't work, and indeed, there is no code present in the library that receives the option. Since it was not possible to use, we know that no current users exist and thus we simply removed it from the docs and made the code always use the default path of the code. - Jared Lundell filed bug report #1604956 (http://curl.haxx.se/bug/view.cgi?id=1604956) which identified setting CURLOPT_MAXCONNECTS to zero caused libcurl to SIGSEGV. Starting now, libcurl will always internally use no less than 1 entry in the connection cache. - Sh Diao reported that CURLOPT_FORBID_REUSE no works, and indeed it broke in the 7.16.0 release. - Martin Skinner brought back bug report #1230118 to haunt us once again. (http://curl.haxx.se/bug/view.cgi?id=1230118) curl_getdate() did not work properly for all input dates on Windows. It was mostly seen on some TZ time zones using DST. Luckily, Martin also provided a fix. - Alexey Simak filed bug report #1600447 (http://curl.haxx.se/bug/view.cgi?id=1600447) in which he noted that active FTP connections don't work with the multi interface. The problem is here that the multi interface state machine has a state during which it can wait for the data connection to connect, but the active connection is not done in the same step in the sequence as the passive one is so it doesn't quite work for active. The active FTP code still use a blocking function to allow the remote server to connect. The fix (work-around is a better word) for this problem is to set the boolean prematurely that the data connection is completed, so that the "wait for connect" phase ends at once. The proper fix, left for the future, is of course to make the active FTP case to act in a non-blocking way too. - Matt Witherspoon fixed a problem case when the CPU load went to 100% when a HTTP upload was disconnected: "What appears to be happening is that my system (Linux 2.6.17 and 2.6.13) is setting *only* POLLHUP on poll() when the conditions in my previous mail occur. As you can see, select.c:Curl_select() does not check for POLLHUP. So basically what was happening, is poll() was returning immediately (with POLLHUP set), but when Curl_select() looked at the bits, neither POLLERR or POLLOUT was set. This still caused Curl_readwrite() to be called, which quickly returned. Then the transfer() loop kept continuing at full speed forever." Daniel (1 December 2006) - Toon Verwaest reported that there are servers that send the Content-Range: header in a third, not suppported by libcurl, format and we agreed that we could make the parser more forgiving to accept all the three found variations. Daniel (25 November 2006) - Venkat Akella found out that libcurl did not like HTTP responses that simply responded with a single status line and no headers nor body. Starting now, a HTTP response on a persistent connection (i.e not set to be closed after the response has been taken care of) must have Content-Length or chunked encoding set, or libcurl will simply assume that there is no body. To my horror I learned that we had no less than 57(!) test cases that did bad HTTP responses like this, and even the test http server (sws) responded badly when queried by the test system if it is the test system. So although the actual fix for the problem was tiny, going through all the newly failing test cases got really painful and boring. Daniel (24 November 2006) - James Housley did lots of work and introduced SFTP downloads. Daniel (13 November 2006) - Ron in bug #1595348 (http://curl.haxx.se/bug/view.cgi?id=1595348) pointed out a stack overwrite (and the corresponding fix) on 64bit Windows when dealing with HTTP chunked encoding. Daniel (9 November 2006) - Nir Soffer updated libcurl.framework.make: o fix symlinks, should link to Versions, not to ./Versions o indentation improvments - Dmitriy Sergeyev found a SIGSEGV with his test04.c example posted on 7 Nov 2006. It turned out we wrongly assumed that the connection cache was present when tearing down a connection. - Ciprian Badescu found a SIGSEGV when doing multiple TFTP transfers using the multi interface, but I could also repeat it doing multiple sequential ones with the easy interface. Using Ciprian's test case, I could fix it. Daniel (8 November 2006) - Bradford Bruce reported that when setting CURLOPT_DEBUGFUNCTION without CURLOPT_VERBOSE set to non-zero, you still got a few debug messages from the SSL handshake. This is now stopped. Daniel (7 November 2006) - Olaf fixed a leftover problem with the CONNECT fix of his that would leave a wrong error message in the error message buffer. Daniel (3 November 2006) - Olaf Stueben provided a patch that I edited slightly. It fixes the notorious KNOWN_BUGS #25, which happens when a proxy closes the connection when libcurl has sent CONNECT, as part of an authentication negotiation. Starting now, libcurl will re-connect accordingly and continue the authentication as it should. Daniel (2 November 2006) - James Housley brought support for SCP transfers, based on the libssh2 library for the actual network protocol stuff. Added these new curl_easy_setopt() options: CURLOPT_SSH_AUTH_TYPES CURLOPT_SSH_PUBLIC_KEYFILE CURLOPT_SSH_PRIVATE_KEYFILE
2007-02-02Update to 3.56:wiz2-6/+6
2007-01-12 Gisle Aas Release 3.56 Cloning of parser state for compatiblity with threads. Fixed by Bo Lindbergh Don't require whitespace between declaration tokens. <http://rt.cpan.org/Ticket/Display.html?id=20864> 2006-07-10 Gisle Aas Release 3.55 Treat <> at the end of document as text. Used to be reported as a comment. Improved Firefox compatiblity for bad HTML: - Unclosed <script>, <style> are now treated as empty tags. - Unclosed <textarea>, <xmp> and <plaintext> treat rest as text. - Unclosed <title> closes at next tag. Make <!a'b> a comment by itself.
2007-02-02Correct path to apr-config in apxs.sborrill3-6/+6
Bump PKGREVISION
2007-02-01SUBDIR+= seamonkey-bin-flash seamonkey-bin-java.ghen1-1/+3
2007-02-01Mistake.ghen3-16/+0
2007-02-01Add www/seamonkey-bin-java, analogue to firefox-bin-java.ghen2-0/+13
2007-02-01Add www/seamonkey-bin-flash, analogue to firefox-bin-flash. ghen3-0/+16
2007-02-01Add www/seamonkey-bin-flash, analogue to firefox-bin-flash.ghen3-0/+16
2007-02-01Update to Flashplayer version 9.0r31.ghen2-8/+8
http://www.adobe.com/aboutadobe/pressroom/pressreleases/200701/011707FlashPlayerLinux.html
2007-02-01update to 3.12.3drochner2-6/+6
changes: translation updates
2007-01-31Drupal 4.7.6, 2007-01-29adrianp2-6/+6
------------------------ - fixed security issue (code execution), see SA-2007-005
2007-01-31The RealPlayerGold package keeps its browser plugin in a different locationsketch2-7/+6
to the old realplayer package; update to reflect this and make it work. Remove an obsolete exec entry in the PLIST, the same function is already performed in the do-install target. Bump PKGREVISION.
2007-01-31add missing gettext-lib/buildlink3.mk. Should address PR pkg/35529dmcmahill2-3/+4
2007-01-31Mark as BROKEN_IN pkgsrc-2006Q4, based onwiz5-8/+12
ftp://asim.lip6.fr/outgoing/packages/i386/3.1/20070114.1132/broken.html (latest 3.1/i386 bulk build of 2006Q4). Feel free to fix them...
2007-01-30Needs msgfmt.joerg1-1/+2
2007-01-30Sync patches with Firefox2: Don't use thread testing on NetBSD andjoerg7-4/+72
DragonFly, fix the build on DragonFly.
2007-01-30Remove "builtin.mk". It doesn't work on systems with provide a "libcurl"tron1-65/+0
but not "libidn". This fixes PR pkg/35358.
2007-01-30Fix PLIST after the last overhaul.uebayasi2-2/+10
2007-01-29fix PLIST problem when USE_IMAGE is not specifieddmcmahill2-4/+4
2007-01-29Needs intltool.joerg1-2/+2
2007-01-28Remove ap2-ruby; it was merged to ap-ruby.taca6-142/+0
2007-01-28Remove ap2-ruby.taca1-2/+1
2007-01-28Update ap-ruby to 1.2.6.taca4-15/+30
pkgsrc changes: merge ap2-ruby to here. mod_ruby-1.2.6 released mod_ruby-1.2.6 is released. Main changes from mod_ruby-1.2.5 - apache/rails-dispatcher.rb supports Rails 1.1. - added guard conditionals around code that uses dconf to avoid SEGV. Thanks, Michael Granger. - fixes for Ruby 1.6.x. - do not call downcase content_type, content_encoding, and content_lnaguages. at 2006-06-15 13:32 mod_ruby-1.2.5 released mod_ruby-1.2.5 is released. Main changes from mod_ruby-1.2.4 - added RubyRestrictDirectives by David Garamond. - added Apache::Request#all_params. - set $0 correctly - added Apache::RubyProfile. - added RubyOption. - added Apache::RailsDispatcher. - supported Apache 2.2 thanks to Michael Sullivan. - added RubyGcPerRequest. - do not timeout if RubyTimeOut is 0. at 2006-02-19 21:52
2007-01-28Update rails to 1.2.1.minskim4-20/+62
Major new features: - RESTful flavor with new encouragement for resource-oriented architectures. - multibyte-safe UTF-8 wrangling.
2007-01-28Update ruby-actionwebservice to 1.2.1, required by rails-1.2.1.minskim2-9/+9
Changes since 1.1.6: * Removed invocation of deprecated before_action and around_action filter methods. Corresponding before_invocation and after_invocation methods should be used instead. * Provide access to the underlying SOAP driver. * ActionWebService WSDL generation ignores HTTP_X_FORWARDED_HOST * Tighten rescue clauses. * Fixed XMLRPC multicall when one of the called methods returns a struct object. * Fix invoke_layered since api_method didn't declare :expects.
2007-01-28Update squid to 2.6.9 (2.6.STABLE9). I deleted DIST_SUBDIR for now.taca2-8/+6
Changes to squid-2.6.STABLE9 (Jan 24 2007) - Bug #1878: If-Modified-Since broken in 2.6.STABLE8 - Bug #1877 diskd bug in storeDiskdIOCallback() Changes to squid-2.6.STABLE8 (Jan 21 2007) - Bug #1873: authenticateNTLMFixErrorHeader: state 4. - Document the https_port vhost option, useful in combination with a wildcard certificate - Document the existence of connection pinning / forwarding of NTLM auth and a few other features overlooked in the release notes. - Spelling correction of the ssl cache_peer option - Add back the optional "accel" http_port option. Makes accelerator mode configurations easier to read. - Bug #1872: Date parsing error causing objects to get unexpectedly cached. - Cleanup to have the access.log tags autogenerated from enums.h - Bug #1783: STALE: Entry's timestamp greater than check time. Clock going backwards? - Don't update object timestamps on a failed revalidation. - Fix how ftp://user@host URLs is rendered when Squid is built with leak checking enabled
2007-01-28Update ruby-actionpack to 1.13.1, required by rails-1.2.1.minskim3-13/+29
Too many changes since 1.12.5. See ${RUBY_DOCDIR}/actionpack/CHANGELOG.
2007-01-27Update emacs-w3m to 1.4.4.uebayasi4-43/+170
A lot of changes since 1.3.3, including Unicode support and add-on modules ("shimbun"). NOTE: I had to comment out w3m's "ucs_conv=1" option which is hard-coded in w3m.el, so that w3m without unicode option also works with emacs-w3m. Do we want w3m to always have its homegrown yet another Unicode mapping table? % ls w3m.* -rwxr-xr-x 1 uebayasi users 513186 Jan 27 20:46 w3m.no-unicode -rwxr-xr-x 1 uebayasi users 1182323 Jan 27 20:48 w3m.unicode
2007-01-26Modular Xorg support for the X11 option of elinks.joerg1-2/+4
2007-01-26Update to KDE 3.5.6markd3-89/+89
Quanta Plus * show Find in Files menu if KFileReplace is installed * fix various crashes in the debugger * fix crash when editing a >style> CSS area * use the correct encoding in the file dialogs * don't lose upload profile settings in certain cases * fix symlink handling in Project Rescan, New Project adding files/folders * do not set the current project mark to a project that could not be opened * allow closing of an untitle editor tab when an image is previewed inside * fix problems with the automatic backup system
2007-01-25enable ap2-fcgidabs1-1/+2
2007-01-25Import www/ap2-fcgid-2.0nb1 into pkgsrc:abs5-0/+51
The mod_fcgid Apache module is a binary compatible alternative to Apache module mod_fastcgi, but only for apache2 and later. FastCGI provides a high-performance alternative to CGI for writing webserver applications.
2007-01-25Update Django to 0.95.1. Changes:joerg3-1117/+1116
* A patch for a small security vulnerability in the script Django's internationalization system uses to compile translation files. * A fix for a bug in Django's authentication middleware which could cause apparent "caching" of a logged-in user. * A patch which disables debugging mode in the flup FastCGI package Django uses to launch its FastCGI server, which prevents tracebacks from bubbling up during production use.
2007-01-25Update to mod_auth_kerb-5.3. Suggested by Michael Santos in PR pkg/35459.markd2-7/+7
Changes: Fixes a potential buffer overflow vulnerability in the SPNEGO processing.
2007-01-25Version 1.4.3epg1-3/+3
(18 January 2007, from /branches/1.4.x) http://svn.collab.net/repos/svn/tags/1.4.3 pkgsrc changes: - Add new 'serf' option to PKG_OPTIONS.subversion to use serf for the DAV (http) network transport instead of neon. User-visible-changes: - Client: * fixed: crash using automatic auth protocols with Neon 0.26 (r22440, -61) * fixed: svn_load_dirs.pl cannot import file names containing '@' (r22203) * fixed: error when committing replaced directories (r22991, -8) * fixed: inability to change file perms due to existing file perms (r23018) * include newest version of svn-graph.pl (r22969) - Server: * fixed: incorrectly reporting authz circular dependencies (issue #2684) * fixed: potential filesystem memory leak in commit finalisation (r22729) - Client and Server: * fixed: crash in character translation, particularly on Windows (r22417) * fixed: potential string corruption when resizing string buffers (r22689) * translation updates for Korean, Spanish, Italian, Simplified Chinese, and Japanese (fixing issues #2649 and #2681) Developer-visible-changes: * support Neon 0.26.2 (issue #2666) * update (experimental) ra_serf repository access module for DAV (r22872) * Windows installer improvements (r21516, r22155, r22224) * fixed: svn_{ra,repos}_replay() doesn't send checksums (r22346, -51, -52) * fixed: error when calling svn_repos_replay2() with a txn root (r22609) * fixed: Solaris packaging script broken (issue #2669) * javahl bindings: - fixed: auth cache is created in the current directory (r22780) - fixed: SVNAdmin's setLog() method always fails (r22387) - fixed: target dependency order in generated build scripts (r22209) * SWIG/perl bindings: - fixed: ra_do_{update,switch,status} work with Perl delta editors (r22311) - fixed: memory leak when calling methods on a Perl commit editor (r22332)
2007-01-25fix a makefile bug related to the change in how GNU make-3.81 handles \ newlinedmcmahill2-1/+33
in single quoted strings compared to version 3.80 and older