summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2002-10-23Bump the PKGREVISION of www/php3 after moving the actual php binary fromjlam1-2/+2
${PREFIX}/bin into ${PREFIX}/libexec/cgi-bin.
2002-10-23* Move the LIBS+= setting out from below bsd.pkg.mk as there's no reasonjlam3-19/+18
it has to be there. * Use BUILD_DIRS instead of manually invoking "make all" from another subdirectory of WRKSRC during post-build. * Install the actual binary in ${PREFIX}/libexec/cgi-bin/php and symlink into ${PREFIX}/bin/php. This allows the php binary to function in a secure Apache setup. This fixes part of pkg/18783 by Chris Baird.
2002-10-23Move USE_BUILDLINK2 setting to the common Makefile since we includejlam1-4/+5
buildlink2.mk files from here. Also change a BUILDLINK_DIR to a BUILDLINK_PREFIX.gdbm since we strive not to lie to the configure/build processes any longer with buildlink2.
2002-10-22-move the doc files and examples to share/doc/pycurl<pythonversion>drochner4-18/+37
for coexistence with a future py22pth (or even native thread) pkg -use buildlink2
2002-10-22- Quote macro value used as argument of envtaya2-25/+25
fix PR#18541 - use ${WRKDIR} as temporary dir instead of /tmp fix PR#18748
2002-10-22Update to 1.3.26.1a, provided by Todd Vierling in PR 18514.wiz3-26/+53
Changes: * mod_gzip_update_static Yes/No This new directive controls wether mod_gzip should re-gzip outdated precompressed files. mod_gzip compresses a copy of the original file, use it with care! No other modules can handle the content of these HTTP requests. * bugfix for long lines In older versions, mod_gzip had a problem with HTTP header lines longer than 4k. This bug has been fixed. * Vary bugfix The previous version of mod_gzip sent Vary headers in too many cases. But now this is not longer necessary. mod_gzip sends no Vary headers when the request is excluded by 'file', 'uri' or 'handler'. * Netware patch Guenter Knauf wrote a patch for Netware. It's now included. * Documentation included * mod_gzip_static_suffix suffix This new directive defines the suffix of the static compressed files. On most platforms this will be .gz, but on some it may be .z or something like that. Default is '.gz'. Warning: You have to add an 'AddEncoding .suffix gzip' in your Apache config! If you don't do this, Apache may send a wrong 'Content-Encoding' HTTP header (or even none at all). * mod_gzip_handle_methods GET POST Parameters are GET or POST or a list of both values. Default is the list of both values. * mod_gzip_send_vary Yes/No This will be useful for some caching HTTP proxies like squid. Prior to the current version of mod_gzip, they had problems to properly handle mod_gzip output. Warning: Don't set this value to "no" unless you are perfectly sure that all clients in your environment are able to handle compressed content properly! * Workfile bug fixed In prior versions of mod_gzip there was a problem with the workfiles. When the compressed version of a file was bigger than the file itself, the workfile has not been deleted. Now it will be. * mod_gzip recognizes outdated .gz files mod_gzip now performs another stat() call and checks whether the static compressed version of the file is older than the uncompressed original file itself. If so, it sends the uncompressed content(!) and creates a SEND_AS_IS:PRECOMPRESSED_VARIANT_OUTDATED status value.
2002-10-22Consistently use ${SED} instead of sed. From PR 18749 by Greg A. Woods.wiz1-6/+6
2002-10-21Convert to buildlink2.wiz1-9/+4
2002-10-21Convert to buildlink2.wiz3-14/+201
Get rid of autoconf dependency by adding a patch.
2002-10-20Use buildlink2. Use perl5/module.mk.seb2-12/+6
2002-10-20Fix documentation installation. Buildlink with zlib. Bump PKGREVISION.seb2-6/+10
XXX Should buildlink2.mk's BUILDLINK_DEPENDS.curl version be bumped to 7.10.1?
2002-10-20Use buildlink2. Use perl5/module.mk.seb2-12/+6
2002-10-20Use perl5/module.mk.seb1-5/+2
2002-10-20Updated to pycurl-7.10.1shell3-9/+23
- accept python-21pth only Changes : * Added new module-level function version_info() from libcurl-7.10. * Added commandline options to setup.py for specifying the path to 'curl-config' (non-windows) and the curl installation directory (windows). See the 'INSTALL' file for details. * Added CURLOPT_ENCODING, CURLOPT_NOSIGNAL and CURLOPT_BUFFERSIZE from libcurl-7.10 (by Markus Oberhumer). * Added a simple web-browser example based on gtkhtml and pycurl. See the file 'examples/gtkhtml_demo.py' for details. The example requires a working installation of gnome-python with gtkhtml bindings enabled (pass --with-gtkhtml to gnome-python configure). * Added new method 'select' on CurlMulti objects. Example usage in 'tests/test_multi5.py'. This method is just an optimization of the combined use of fdset and select. * Added support for curl_multi_fdset. See the file 'tests/test_multi4.py' for example usage. Contributed by Conrad Steenberg <conrad@hep.caltech.edu>. * perform() on multi objects now returns a tuple (result, number of handles) like the libcurl interface does. * Added the 'sfquery' script which retrieves a SourceForge XML export object for a given project. See the file 'examples/sfquery.py' for details and usage. 'sfquery' was contributed by Eric S. Raymond <esr@thyrsus.com>. * API enhancements: added Curl() and CurlMulti() as aliases for init() and multi_init(), and added close() methods as aliases for the cleanup() methods. The new names much better match the actual intended use of the objects, and they also nicely correspond to Python's file object. * Also, all constants for Curl.setopt() and Curl.getinfo() are now visible from within Curl objects. * More see Changes - All changes are fully backward-compatible. -
2002-10-20Updated to curl-7.10.1shell4-20/+12
Changes : - Jeff Lawson fixed a few problems with connection re-use that remained when you set CURLOPT_PROXY to "". - Craig Davison found a terrible flaw and Cris Bailiff helped out in the search. Getting HTTP data from servers when the headers are split up in multiple reads, could cause junk data to get inserted among the saved headers. This only concerns HTTP(S) headers. - Vincent Penquerc'h gave us the good suggestion that when the ERRRORBUFFER is set internally, the error text is sent to the debug function as well. - Fixed the telnet code to timeout properly as the option tells it to. On non-windows platforms. - John Crow pointed out that libcurl-the-guide wasn't included in the release tarball! - Kevin Roth pointed out that make install didn't do right if build outside the source tree (ca-bundle wise). - FOLLOW_LOCATION bugfix for the multi interface [trim], more see CHANGES.
2002-10-19add dependency on p5-gettext and patch the locale directory path.dmcmahill3-10/+17
This enables changing locale's. Noted in private email from Eric Jacoboni (jaco at scrogneugneu dot org)
2002-10-19backout last change - phoenix is already here.grant1-2/+1
2002-10-19remove files which relate to the phoenix Linux binary package.grant3-21/+0
2002-10-19Add phoenixtaya1-1/+2
2002-10-19Initial import of phoenixtaya15-703/+2723
Phoenix is a redesign of the Mozilla browser component, similar to Galeon, K-Meleon and Chimera, but written using the XUL user interface language and designed to be cross-platform.
2002-10-19also make 'MASTER_SITE' overridetaya1-2/+2
2002-10-19add MOZILLA_BIN to set mozilla binary file nametaya2-3/+6
add BUILD_SVG to build svg
2002-10-19make following items override by definition in Makefiletaya6-16/+26
DISTNAME, HOMEPAGE, mozilla binary name make SVG optional for phoenix add --with-pthreads to config option if pthread is available
2002-10-19Track directory layout change at MASTER_SITE_GNOME.rh4-8/+8
Patch provided in PR pkg/18701 by Julio Merino <jmmv@menta.net>
2002-10-19Install shimbun and other support files for semi and mew.minoura2-28/+255
Bump PKGREVISION.
2002-10-18Downgrade to 2.1pre3.wiz5-19/+11
2.1pre4's links -g has very annoying problems with control modifiers and X events in general, and the maintainers don't feel the need to fix it.
2002-10-18Use buildlink2 and java.mk.jlam1-11/+9
2002-10-18Use newer way to convert a build dependency to a full dependency.jlam1-2/+2
2002-10-18Upgraded to 4.0pre.47.minoura6-15/+55
Also quick port to Emacs 21. Pre.47's changes are mostly to support Emacs 21, but it has at least 2 problems: - It does not work in a TTY. - Mule handling is insufficient.
2002-10-18Remove some really annoying "ks=..." debugging output.jlam2-7/+15
2002-10-18Use the newer method for converting a build to a full dependency.jlam1-4/+3
2002-10-17Added ap2-php4martti1-1/+2
2002-10-17This is the php4 module for apache2 users (provided by Dawid Szymanskimartti4-0/+48
in PR#17085, minor fixes by me).
2002-10-17Added buildlink2.mkmartti1-0/+33
2002-10-15add phoenix.grant1-1/+2
2002-10-15Initial import of Phoenix-0.3 into the NetBSD packages collection.grant7-0/+733
Phoenix is a redesign of the Mozilla browser component, similar to Galeon, K-Meleon and Chimera, but written using the XUL user interface language and designed to be cross-platform. This is a Linux binary package for Linux and NetBSD/i386.
2002-10-15s/BUILDLINK_DIR/BUILDLINK_PREFIX.curl/martti1-2/+2
2002-10-14clean up some more of the cruft left in emul-rootjschauma1-3/+3
2002-10-14Linux' find wants the dir as the first argument, NetBSD find wantsjschauma3-6/+6
'-d' first. Adjust FIND_ARG accordingly. Problem noted by Martti Kupparinen.
2002-10-14Update to 2.1pre4.wiz5-15/+15
* Polish translation update. * SSL patch for Solaris and other systems without /dev/random * Links-now button. * Belarusian translation * Swaped open and closed folder symbol in bookmarks. * Fixed Solaris keyboard translation bug.
2002-10-14Added php4-curlmartti1-1/+2
2002-10-14Added php4-curl-4.2.3 (provided by Harry Waddell in PR#18602)martti3-0/+21
PHP is a programming language designed to be embedded into web pages. This module provides curl functions for PHP4.
2002-10-14Updated php to 4.2.3martti11-111/+84
* lots of bug fixes * experimental apache2 support * added IPv6 support to gethostbyaddr() ATTENTION!! register_globals defaults to 'off' now
2002-10-14Only set apache_start to "start" if it's not already set.lukem3-9/+9
Previously, if apache_start was set in /etc/rc.conf and /etc/rc.d/apache was loaded as part of the /etc/rc start sequence, apache_start's value would be overridden by "apache_start=start" in this script, because /etc/rc.conf would have already been loaded and load_rc_config() would not reload it again. This problem would not have been seen if /etc/rc.d/apache was started manually, or /etc/rc.conf.d/apache or @PKG_SYSCONFDIR@/apache_start.conf was used to set apache_start. (I am using /etc/rc.conf, and was wondering why apache wasn't starting with ssl support at boot, but worked after a manual restart...)
2002-10-13Update squid to 2.5.1 with several patches fromtaca16-1110/+320
http://www.squid-cache.org/Versions/v2/2.5/bugs/. Now try to install more authentication modules, but those modules should be handled by proper frame work (Curretly, SASL modules aren't handled). Changes to squid-2.5 (): - Major rewrite of proxy authentication to support other schemes than basic. First in the line is NTLM support but others can easily be added (minimal digest is present). See Programmers Guide. (Robert Collins & Francesco Chemolli) - Reworked how request bodies are passed down to the protocols. Now all client side processing is inside client_side.c, and the pass and pump modules is no longer used. - Optimized searching in proxy_auth and ident ACL types. Squid should now handle large access lists a lot more efficiently. (Francesco Chemolli) - Fixed forwarding/peer loop detection code (Brian Degenhardt) - now a peer is ignored if it turns out to be us, rather than committing suicide - Changed the internal URL code to obey appendDomain for internal objects if it needs appending. This fixes weirdnesses where a machine can think it is "foo.bar.com", and "foo" is requested. (Brian Degenhardt) - Added the use of Automake to create the Makefile.in's in the squid source tree. This will allow libtool in the future, and immediately allows better dependency tracking - with or without gcc - as well as the dist-all and distcheck targets for developers which respectively build a tar.gz and a tar.bz2 distribution, and check that what will be distributed builds. - Added TOS and source address selection based on ACLs, written by Roger Venning. This allows administrators to set the TOS precedence bits and/or the source IP from a set of available IPs based upon some ACLs, generally to map different users to different outgoing links and traffic profiles. - Added 'max-conn' option to 'cache_peer' - Added SSL gatewaying support, allowing Squid to act as a SSL server in accelerator setups. - SASL authentication helper by Ian Castle - msntauth updated to v2.0.3 - no_cache now applies to cache hits as well as cache misses - the Gopher client in Squid has been significantly improved - Squid now sanity checks FTP data connections to ensure the connection is from the requested server. Can be disabled if needed by turning off the ftp_sanitycheck option. - external acl support. A mechanism where flexible ACL checks can be driven by external helpers. See the external_acl_type and acl external directives. - Countless other small things and fixes - HTML pages generated by Squid or CacheMgr as well as the ERR documents now contain a doctype declaration so that browsers know which HTML specification the document uses. In addition to that they have a new look (background-color, font) and are valid according to the HTML standards at www.w3.org. (Clemens Löser) - Login and password send to Basic auth helpers is now URL escaped to allow for spaces and other "odd" characters in logins and passwords - Proxy Authentication is no longer blindly forwarded to peer caches if not used locally. If forwarding of proxy authentication is desired then it must now be configured with the login=PASS cache_peer option. - Responses with Vary: in the header are now cached by squid. (Henrik Nordstrom). - Removed unused 'siteselect_timeout' directive.
2002-10-13Make more readable, and fix right hand side of DEPENDS.wiz1-2/+2
2002-10-13buildlink1 -> buildlink2.wiz1-4/+5
2002-10-13buildlink1 -> buildlink2.wiz1-2/+4
2002-10-12Complete conversion to buildlink2 (hi johnny!).wiz1-3/+3
2002-10-11Create the PLIST dynamically, instead of using pre-determined ones.jschauma12-787/+61
This allows the the user to choose 'custom' as an installation method as well as 'complete' or 'recommended'. This obsoletes the NS_INST variable and reduces likeliness of errors due to not properly set PKG_LANG. Some more re-organizing wrt Linux-emul root etc: the installer behaves differently according to who runs 'make'. (Try to) clean up parts of the emul root if it was used, too. These changes should help address some of the issues pointed out in PR pkg/18606 and PR pkg/18615.