summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2006-07-10Make this compile under gcc-4christos2-1/+21
2006-07-10Fixed pkglint warnings.rillig1-20/+19
2006-07-10Fixed some pkglint warnings.rillig2-33/+29
2006-07-10- Fixed pkglint warnings.rillig2-20/+23
- Moved the binary from sbin to bin, since the manual page is also in category 1. - Replaced /var with ${VARBASE}. - Sorted PLIST. - Bumped PKGREVISION.
2006-07-10USE_TOOLS+=lexminskim1-2/+2
2006-07-09Update ruby-fcgi pacakge to 0.8.7.taca2-7/+8
dispatcher related fixes: Sun Jun 25 12:46:14 JST 2006 moonwolf@moonwolf.com * patch from http://www.kbmj.com/tech/index.php?itemid=26 * patch from http://sean.treadway.info/articles/2005/12/24/open-season-for-eagain pkgsrc changes: - Add RUBY_HAS_ARCHLIB. - Update MASTER_SITES.
2006-07-09Oops, fix PKGREVISION's speeling.taca1-2/+2
2006-07-09- Set files' permission; a bundled PEAR library is too restrictedtaca2-3/+5
permisson. - Remove logs directory from PLIST. Bump PKGREVISION.
2006-07-09Apply recent patch:taca2-4/+8
2006-06-21 12:25 (Cosmetic) Parent not always logged to access.log Bump PKGREVISION.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam26-52/+52
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam26-26/+52
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-07LIBTOOL_OVERRIDE generally doesn't need to be specified anymore... justjlam5-11/+8
set OVERRIDE_DIRDEPTH to find any libtool scripts deeper in the WRKSRC tree unless they're named something other than "libtool". SHLIBTOOL_OVERRIDE generally doesn't need to be specified either -- just define it to the empty list and shlibtool-override will look for libtool scripts.
2006-07-07Correct a variable name (PKG_JAVA_HOME). Bump PKGREVISION.minskim2-6/+6
2006-07-07This package does not need JDK. Set USE_JAVA=run.minskim2-2/+4
2006-07-05Sweep pkgsrc and convert packages that included intltool/buildlink3.mkjlam7-21/+14
to use instead "USE_TOOLS+=intltool". Remove now unused intltool/buildlink3.mk
2006-07-04update to 1.0.16drochner3-7/+8
changes: fixes for serious bugs
2006-07-04Mention (in a comment) that test target needs perl.wiz1-1/+2
2006-07-03Update to 7.15.4:wiz3-7/+14
Version 7.15.4 (12 June 2006) Daniel (8 June 2006) - Brian Dessent fixed the code for cygwin in three distinct ways: The first modifies {lib,src}/setup.h to not include the winsock headers under Cygwin. This fixes the reported build problem. Cygwin attempts as much as possible to emulate a posix environment under Windows. This means that WIN32 is *not* #defined and (to the extent possible) everything is done as it would be on a *ix type system. Thus <sys/socket.h> is the proper include, and even though winsock2.h is present, including it just introduces a whole bunch of incompatible socket API stuff. The second is a patch I've included in the Cygwin binary packages for a while. It skips two unnecessary library checks (-lwinmm and -lgdi32). The checks are innocuous and they do succeed, but they pollute LIBS with unnecessary stuff which gets recorded as such in the libcurl.la file, which brings them into the build of any libcurl-downstream. As far as I know these libs are really only necessary for mingw, so alternatively they could be designed to only run if $host matches *-*-mingw* but I took the safer route of skipping them for *-*-cygwin*. The third patch replaces all uses of the ancient and obsolete __CYGWIN32__ with __CYGWIN__. Ref: <http://cygwin.com/ml/cygwin/2003-09/msg01520.html>. Daniel (7 June 2006) - Mikael Sennerholm provided a patch that added NTLM2 session response support to libcurl. The 21 NTLM test cases were again modified to comply... Daniel (27 May 2006) - Óscar Morales Vivó updated the libcurl.framework.make file. Daniel (26 May 2006) - Olaf Stüben fixed a bug that caused Digest authentication with md5-sess to fail. When using the md5-sess, the result was not Md5 encoded and Base64 transformed. Daniel (25 May 2006) - Michael Wallner provided a patch that allows "SESS" to be set with CURLOPT_COOKIELIST, which then makes all session cookies get cleared. Daniel (24 May 2006) - Tor Arntsen made test 271 run fine again since the TFTP path fix. Daniel (23 May 2006) - Martin Michlmayr filed debian bug report #367954, but the same error also showed up in the autobuilds. It seems a rather long-since introduced shell script flaw in the configure script suddenly was detected by the bash version in Debian Unstable. It had previously passed undetected by all shells used so far... - David McCreedy updated lib/config-tpf.h Daniel (11 May 2006) - Fixed the configure's check for old-style SSLeay headers since I fell over a case with a duplicate file name (a krb4 implementation with an err.h file). I converted the check to manually make sure three of the headers are present before considering them fine. - David McCreedy provided a fix for CURLINFO_LASTSOCKET that does extended checks on the to-be-returned socket to make sure it truly seems to be alive and well. For SSL connection it (only) uses OpenSSL functions. Daniel (10 May 2006) - Fixed DICT in two aspects: 1 - allow properly URL-escaped words, like using %20 for spaces 2 - properly escape certain letters within a word to comply to the RFC2229 Daniel (9 May 2006) - Andreas Ntaflos reported a bug in libcurl.m4: When configuring my GNU autotools project, which optionally (default=yes) uses libcurl on a system without a (usable) libcurl installation, but not specifying `--without-libcurl', configure determines correctly that no libcurl is available, however, the LIBCURL variable gets expanded to `LIBCURL = -lcurl' in the resulting Makefiles. David Shaw fixed the flaw. - Robson Braga Araujo fixed two problems in the recently added non-blocking SSL connects. The state machine was not reset properly so that subsequent connects using the same handle would fail, and there were two memory leaks. - Robson Braga Araujo fixed a memory leak when you added an easy handle to a multi stack and that easy handle had already been used to do one or more easy interface transfers, as then the code threw away the previously used DNS cache without properly freeing it. Daniel (8 May 2006) - Dan Fandrich went over the TFTP code and he pointed out and fixed numerous problems: * The received file is corrupted when a packet is lost and retransmitted (this is a serious problem!) * Transmitting a file aborts if a block is lost and retransmitted * Data is stored in the wrong location in the buffer for uploads, so uploads always fail (I don't see how it could have ever worked, but it did on x86 at least) * A number of calls are made to strerror instead of Curl_strerror, making the code not thread safe * There are references to errno instead of Curl_sockerrno(), causing incorrect error messages on Windows * The file name includes a leading / which violates RFC3617. Doing something similar to ftp, where two slashes after the host name means an absolute reference seems a reasonable extension to fix this. * Failures in EBCDIC conversion are not propagated up to the caller but are silently ignored - Fixed known bug #28. The TFTP code no longer assumes a packed struct and thus works reliably on more platforms. Daniel (5 May 2006) - Roland Blom filed bug report #1481217 (http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows. Daniel (4 May 2006) - Mark Eichin submitted bug report #1480821 (http://curl.haxx.se/bug/view.cgi?id=1480821) He found and identified a problem with how libcurl dealt with GnuTLS and a case where gnutls returned GNUTLS_E_AGAIN indicating it would block. It would then return an unexpected return code, making Curl_ssl_send() confuse the upper layer - causing random 28 bytes trash data to get inserted in the transfered stream. The proper fix was to make the Curl_gtls_send() function return the proper return codes that the callers would expect. The Curl_ossl_send() function already did this. Daniel (2 May 2006) - Added a --checkfor option to curl-config to allow users to easier write for example shell scripts that test for the presence of a new-enough libcurl version. If --checkfor is given a version string newer than what is currently installed, curl-config will return a non-zero exit code and output a string about the unfulfilled requirement. Daniel (26 April 2006) - David McCreedy brought initial line end conversions when doing FTP ASCII transfers. They are done on non-windows systems and translate CRLF to LF. I modified the 15 LIST-using test cases accordingly. The downside is that now we'll have even more trouble to get the tests to run on Windows since they should get CRLF newlines left intact which the *nix versions don't. I figure the only sane thing to do is to add some kind of [newline] macro for the test case files and have them expanded to the proper native line ending when the test cases are run. This is however left to implement. Daniel (25 April 2006) - Paul Querna fixed libcurl to better deal with deflate content encoding when the stream (wrongly) lacks a proper zlib header. This seems to be the case on too many actual server implementations. Daniel (21 April 2006) - Ale Vesely fixed CURLOPT_INTERFACE when using a hostname. Daniel (19 April 2006) - Based on previous info from Tor Arntsen, I made configure detect the Intel ICC compiler to add a compiler option for it, in order for configure to properly be able to detect function prototypes. - Robson Braga Araujo provided a patch that makes libcurl less eager to close the control connection when using FTP, for example when you remove an easy handle from a multi stack. - Applied a patch by Ates Goral and Katie Wang that corrected my bad fix attempt from April 10. Daniel (11 April 2006) - #1468330 (http://curl.haxx.se/bug/view.cgi?id=1468330) pointed out a bad typecast in the curl tool leading to a crash with (64bit?) VS2005 (at least) since the struct timeval field tv_sec is an int while time_t is 64bit. Daniel (10 April 2006) - Ates Goral found out that if you specified both CURLOPT_CONNECTTIMEOUT and CURLOPT_TIMEOUT, the _longer_ time would wrongly be used for the SSL connection time-out! - I merged my hiper patch (http://curl.haxx.se/libcurl/hiper/) into the main sources. See the lib/README.multi_socket for implementation story with details. Don't expect it to work fully yet. I don't intend to blow any whistles or ring any bells about it until I'm more convinced it works at least somewhat reliably. Daniel (7 April 2006) - David McCreedy's EBCDIC and TPF changes. Three new curl_easy_setopt() options (callbacks) were added: CONV_FROM_NETWORK_FUNCTION CONV_TO_NETWORK_FUNCTION CONV_FROM_UTF8_FUNCTION Daniel (5 April 2006) - Michele Bini modified the NTLM code to work for his "weird IIS case" (http://curl.haxx.se/mail/lib-2006-02/0154.html) by adding the NTLM hash function in addition to the LM one and making some other adjustments in the order the different parts of the data block are sent in the Type-2 reply. Inspiration for this work was taken from the Firefox NTLM implementation. I edited the existing 21(!) NTLM test cases to run fine with these news. Due to the fact that we now properly include the host name in the Type-2 message the test cases now only compare parts of that chunk. Daniel (28 March 2006) - #1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that occurred when asking libcurl to follow HTTP redirects and the original URL had more than one question mark (?). Added test case 276 to verify. Daniel (27 March 2006) - David Byron found a problem multiple -d options when libcurl was built with --enable-debug, as then curl used free() on memory allocated both with normal malloc() and with libcurl-provided functions, when the latter MUST be freed with curl_free() in debug builds. Daniel (26 March 2006) - Tor Arntsen figured out that TFTP was broken on a lot of systems since we called bind() with a too big argument in the 3rd parameter and at least Tru64, AIX and IRIX seem to be very picky about it. Daniel (21 March 2006) - David McCreedy added CURLINFO_FTP_ENTRY_PATH. - Xavier Bouchoux made the SSL connection non-blocking for the multi interface (when using OpenSSL). - Tor Arntsen fixed the AIX Toolbox RPM spec Daniel (20 March 2006) - David McCreedy fixed libcurl to no longer ignore AUTH failures and now it reacts properly according to the CURLOPT_FTP_SSL setting. - Dan Fandrich fixed two TFTP problems: Fixed a bug whereby a received file whose length was a multiple of 512 bytes could have random garbage appended. Also, stop processing TFTP packets which are too short to be legal. - Ilja van Sprundel reported a possible crash in the curl tool when using "curl hostwithoutslash -d data -G"
2006-07-02Don't try and define bool if c++ as its builtin. Fixes PR pkg/32960.markd2-1/+20
2006-07-02Hook up py-jonpy.joerg1-1/+2
2006-07-02Initial import of py-jonpy-0.06. From DESCR:joerg4-0/+65
These Python modules provide simple yet powerful multi-threaded object-oriented CGI/FastCGI/mod_python/html-templating facilities for the Python programming language.
2006-07-02Fixed some easy pkglint warnings.rillig3-25/+28
2006-07-01Include Makefile.application for linux emulation packages.. (I wonder howsalo1-1/+2
long this was broken.. it seems like nobody really uses these packages.)
2006-07-01acroread3 is a goner, off you go.salo3-19/+1
2006-07-01Update geeklog-1.4.0.4 (1.4.0sr3).taca4-185/+7
---------------------------------------------------------------------------- Two exploits have been released by "rgod" for insecure Geeklog installations and for a bug in the "mcpuk" file manager that we've been shipping as part of FCKeditor in all previous 1.4.0 releases. o Some of the files outside of the public_html directory were not protected against direct execution. If Geeklog was installed such that those files were accessible from a URL (which has always been strongly discouraged in the installation instructions) then those files could be used to load and execute malicious code from a remote server. More information: So-called Geeklog "exploit" posted In this release, we've added the missing execution prevention for all files outside of public_html. We would still, however, suggest that you fix your Geeklog install if the files outside of public_html are accessible from a URL (see our FAQ for details). o The "mcpuk" file manager that we've integrated into FCKeditor allowed the upload of arbitrary PHP code (even if FCKeditor was disabled in Geeklog's config.php). Depending on your webserver's configuration, it was then possible to execute that uploaded code. More information: Exploit for FCKeditor's mcpuk file manager The file manager has been removed from this release. You will therefore no longer be able to upload files, e.g. images, through FCKeditor. Future versions of Geeklog will ship with an updated version of FCKeditor and its included file manager. Note: This release also includes the updated lib-trackback.php for better protection against Trackback spam. ---------------------------------------------------------------------------- First problem dosen't related to pkgsrc.
2006-06-30Add a temporary fix to handle security problem of fckeditor; disablingtaca3-3/+38
file upload functions. Bump PKGREVISION.
2006-06-30Remove asWedit, it requires Linux libc5(!!), come on, it's 2006 already..salo6-83/+1
2006-06-30Don't hardcode SuSE emulation package directories.salo4-8/+8
2006-06-30acroread3 is goner.salo3-20/+1
2006-06-30Don't install the module in httpd.conf by default.joerg1-2/+2
2006-06-28Disable visiblity support.joerg23-31/+544
Add DragonFly support. Derived from Firefox patches.
2006-06-26Remove temporary files before installation.joerg1-1/+2
2006-06-25Fix build with gcc4.wiz5-1/+453
2006-06-25Set "RPM2PKGSTRIP" to "1" to get rid off the leading "./" in filenames.tron1-2/+2
This avoids false complaints about package list problems if "CHECK_FILES" is set to "yes".
2006-06-25Fixed script interpreters. Bumped PKGREVISION.rillig1-2/+4
2006-06-25Disable CHECK_INTERPRETER for *.hsml files, since they are not intendedrillig1-1/+5
to be executed directly.
2006-06-25This package needs some help to find apxs.rillig1-1/+3
2006-06-25The full pathname to apxs is provided by www/apache2/buildlink3.mk, sorillig1-2/+2
use it. This fixes builds where ${LOCALBASE}/sbin is not in the PATH.
2006-06-25The directory man/man8 must exist before the man pages can be moved there.rillig1-2/+3
2006-06-23This package requires libiconv.minskim1-1/+2
2006-06-23Security update to version 9.0salo2-21/+22
Changes: - security fix for JPEG processing integer overflow vulnerability, http://www.vigilantminds.com/advi_detail.php?id=45 - full changelog: http://www.opera.com/docs/changelogs/linux/900/
2006-06-22This package uses C++.jlam1-1/+2
2006-06-22Needs msgfmt.joerg1-2/+2
2006-06-21Needs msgfmt.joerg1-2/+2
2006-06-21Needs msgfmt.joerg1-2/+2
2006-06-21Modify startup script to honor squid_flags in /etc/rc.conf.taca2-4/+3
Thanks to Joel CARNAT who reported the problem on tech-pkg. Bump PKGREVISION.
2006-06-20USE_TOOLS+=cshminskim1-1/+2
2006-06-19Fix files/README about initial database creation notedtaca1-2/+2
by PR pkg/33762 from S. Kitagawa, thanks much.
2006-06-18-horde3.wiz1-2/+1
2006-06-18- Split MESSAGE's content to separate document file.taca6-45/+72
- Handle system/lib-custom.php as one of modifiable files. Bump PKGREVISION.