summaryrefslogtreecommitdiff
path: root/www
AgeCommit message (Collapse)AuthorFilesLines
2002-08-07Add an explicit runpath for the libwwwssl.so.1.0 shared library, andfredb3-12/+8
partially revert Makefile, v1.32, so platforms without openssl-0.9.6e in base will be able to find libssl.so.300 and libcrypto.so.300 for binaries linked against libwwwwwl.so. Bump pkgrevision to reflect the change in dependencies on platforms without openssl-0.9.6e in base.
2002-08-07Merge wwwoffle.sh and wwwoffled into one rc.d script that follows pkgsrcjlam4-21/+13
conventions for rc.d scripts.
2002-08-06one more instance of :: and 0.0.0.0 issue. by fredbitojun2-5/+16
2002-08-06simply obey config file, don't do trick against :: and 0.0.0.0.itojun3-3/+19
(patch sent to the author). bump PKGREVISION
2002-08-06Switch the "squidGuard" package from using "db2" to "db3" since it workszuntum3-11/+12
decidedly better with the latter ;-) Bump PKGREVISION per wiz's suggestion.
2002-08-06update HOMEPAGE per request from Ville Skytt? <scop at freebsd>lukem1-2/+2
2002-08-05pull in a patch from development sources that fixes a bug in directorymrg2-1/+53
index generation of the root of the web tree. bump to bozohttpd 5.13nb1.
2002-08-05pull in a patch from development sources that fixes a bug in directorymrg1-1/+2
index generation of the root of the web tree. bump to bozohttpd 5.13nb1.
2002-08-05rmdir some directories on @unexeczuntum1-1/+3
2002-08-05Use more sane defaults for config file location, logdir, and dbhome.zuntum1-8/+4
2002-08-04exec gconftool-1 while pkg_add as make install does.taya1-1/+2
2002-08-04Update to 5.13, provided by the author and maintainer.wiz4-723/+7
changes since bozohttpd 5.12: o support .mp3 files (type audio/mpeg) o use stat() to find out if something is a directory, for -X mode changes since bozohttpd 5.11: o constification o fixes & enhancements for directory index mode (-X)
2002-08-04add & enable squidGuardzuntum1-1/+2
2002-08-04Initial import of squidGuard-1.2.0zuntum5-0/+90
squidGuard is a combined filter, redirector and access controller plugin for Squid. It can be used to: * limit the web access for some users to a list of accepted/well known web servers and/or URLs only. * block access to some listed or blacklisted web servers and/or URLs for some users. * block access to URLs matching a list of regular expressions or words for some users. * enforce the use of domainnames/prohibit the use of IP address in URLs. * redirect blocked URLs to an "intelligent" CGI based info page. * redirect unregistered user to a registration form. * redirect popular downloads like Netscape, MSIE etc. to local copies. * redirect banners to an empty GIF. * have different access rules based on time of day, day of the week, date etc. * have different rules for different user groups. * and much more..
2002-08-03Update neon to 0.21.3.hubertf3-9/+109
Changes in release 0.21.3: * Fix segfault if using proxy server with SSL session and server certificate verification fails. * Fix leak of proxy hostname once per session (if a proxy is used). * Add --with-libs configure argument; e.g. --with-libs=/usr/local picks up any support libraries in /usr/local/{lib,include} Changes in release 0.21.2: * Fix 'make install' for VPATH builds. * Use $(mandir) for installing man pages (Rodney Dawes). * Follow some simple (yet illegal) relativeURI redirects. * Always build ne_compress.obj in Win32 build (Branko Èibej). * Fix decompression logic bug (Justin Erenkrantz <jerenkrantz@apache.org>) (could give a decompress failure for particular responses) * Fix ne_proppatch() to submit lock tokens for available locks. * More optimisation of ne_sock_readline. Changes in release 0.21.1: * Don't include default SSL port in Host request header, which can help interoperability with misbehaving servers (thanks to Rodney Dawes <dobey@ximian.com>). * Don't give a "truncated response" error from ne_decompress_destroy if the acceptance function returns non-zero. * Fix for Win32 build (Sander Striker <striker@apache.org>). * Fix for cookie name/value being free()d (thanks to Dan Mullen). * Optimisation of ne_sock_readline. Changes in release 0.21.0: * Socket layer implements read buffering; efficiency and performance improvement. Based on work by Jeff Johnson <jbj@redhat.com> * Cleanup of socket interface: - renamed everything, s/sock_/ne_sock_/, s/SOCK_/NE_SOCK_/ - removed unused and inappropriate interfaces. - renaming done by Olof Oberg <mill@pedgr571.sn.umu.se> - see src/ChangeLog for the gory details. * Fix typoed 'ne_destroy_fn' typedef (Olof Oberg). * Support OpenSSL/ENGINE branch. * Bogus ne_utf8_encode/decode functions removed. * ne_base64() moved to ne_string.[ch]. * ne_token drops 'quotes' parameter; ne_qtoken added. * ne_buffer_create_sized renamed to ne_buffer_ncreate. * ne_xml_get_attr takes extra arguments and can resolve namespaces. * ne_accept_response function type takes const ne_status pointer. * Drop support for automatically following redirects: - ne_redirect_register just takes a session pointer - ne_redirect_location returns an ne_uri pointer * configure changes: --with-ssl and --with-socks no longer take a directory argument. To use SOCKS or SSL libraries/headers in non-system locations, use ./configure CPPFLAGS=-I/... LDFLAGS=-L/... * Reference documentation included for most of ne_alloc.h and ne_string.h, and parts of ne_session.h and ne_request.h. - see installed man pages, HTML documentation. Changes in release 0.20.0: * Major changes to DAV lock handling interface (ne_locks.h): - struct ne_lock uses a full URI structure to identify locked resource - ne_lock() requires that owner/token fields are malloc-allocated (or NULL) on entry - introduce a "lock store" type, ne_lock_store, to replace the lock session; accessor functions all renamed to ne_lockstore_*. - ne_lock_iterate replaced with a first/next "cursor"-style interface - If: headers use an absoluteURI (RFC2518 compliance fix). - fix for handling shared locks on DAV servers which return many active locks in the LOCK response (thanks to Keith Wannamaker) * Moved URI/path manipulation functions under ne_* namespace (ne_uri.h): - path handling functions renamed to ne_path_* - URI structure handling to ne_uri_*; struct uri becomes ne_uri. - ne_uri_parse doesn't take a 'defaults' parameter any more - if URI port is unspecified, ne_uri_parse sets port to 0 not -1. - added ne_uri_unparse and ne_uri_defaultport functions. * New 'ne_fill_server_uri' function to initialize a URI structure with the server details for a given session (useful with locks interface). * ne_decompress_{reader,destroy} are defined as passthrough-functions if zlib support is not enabled. * API change: ne_ssl_provide_fn returns void not int. * Added NE_SSL_FAILMASK for verify failure sanity check. * Removed return codes NE_SERVERAUTH and and NE_AUTHPROXY; correct documentation, NE_PROXYAUTH is given for proxy auth failure. * Require zlib >= 1.1.4 to avoid possible vulnerability in earlier versions. See http://www.gzip.org/zlib/advisory-2002-03-11.txt for more details. (version check can be skipped by passing --with-force-zlib to configure) * New 'ne_ssl_readable_dname' function to create a human-readable string from an X509 distinguished name. * Fix support for newer versions of libxml2 (thanks to Jon Trowbridge <trow@gnu.org>). * Fix corruption of reason_phrase in status object returned by ne_propset_status. * More lenient handling of whitespace in response headers. * ne_content_type_handler will give a charset of "ISO-8859-1" if no charset parameter is specified for a text/* media type (as per RFC2616). * Miscellaneous cleanups and fixes (Jeff Johnson <jbj@redhat.com>). Changes in release 0.19.4: * Support bundled build of expat 1.95.x (Branko Èibej). Update submitted by Joel Wilsson <joelw@unix.se> in PR 17812.
2002-08-02Do away with special pthread.buildlink.mk hack and add "optional" tojlam1-7/+4
PTHREAD_OPTS. This allows us to ignore the "require" inherited from the glib/buildlink.mk file, which was originally causing "require native" to be used for mozilla and was causing build problems on platforms without native pthreads.
2002-08-02fix compilation with -Werror enabled on netbsd-1.5.3/alpha.dmcmahill2-1/+704
patch from Matt Green.
2002-08-01Fix so that mozilla doesn't require a native pthread library. "require"jlam1-4/+7
comes from devel/glib/buildlink. devel/glib requires a pthread library but www/mozilla optionally wants a native pthread library. Checking for PTHREAD_TYPE != "native" will work, but we may want to consider expanding the capabilities of pthread.buildlink.mk to cover this scenario.
2002-08-01Wildcard depends line after ap-aolserver update.wiz1-2/+2
2002-08-01Convert to use pthread.buildlink.mk.jlam2-12/+14
2002-08-01Adjust to new pthread.buildlink.mk: remove USE_PTHREAD and replace withjlam1-2/+2
appropriate PTHREAD_OPTS incantation, and move the checks for the value of PTHREAD_TYPE below the inclusion of pthread.buildlink.mk.
2002-08-01Change MAINTAINER from tv at netbsd dot org to packages at netbsd dot orgjschauma6-12/+12
after consulting with Todd. Any volunteers for any of these packages?
2002-08-01Crank PKGREVISION here, too.mycroft1-1/+2
2002-08-01Grrrr, stupid static version number for apache.mycroft1-2/+2
2002-08-01Crank libmm dependency versions and dependent pkg revisions.mycroft3-6/+7
2002-07-31fix a bug in creating scaled images. If the original image is the correctdmcmahill3-12/+17
size and in the correct format, it is not re-encoded (losing quality) anymore but just copied. Problem noted by Jeff McMahill. Andrew Brown and Jaromir Dolecek helped me with perl. Bump PKGREVISION.
2002-07-31Want apache-1.3.26nb3 now.wiz1-2/+2
2002-07-30Update apache packages with some common changes:wiz7-58/+98
Give Apache a user and group by default, not only with suexec. The variables for this have changed from APACHE_SUEXEC_USER and APACHE_SUEXEC_GROUP to APACHE_USER and APACHE_GROUP. Mention 'Apache' in COMMENT. Use variables for the version number instead of copying it around. Bump PKGREVISION. For apache{,6}: Change paths to /var/httpd instead of /var/spool/httpd. Honour STRIPFLAG. Add --without-confadjust as configure argument. Enable the 'define' module. For apache: Enable proxy module on NOPIC platforms. Some of these changes are based on pkg/17469 by Greg A. Woods, some on comments by Johnny Lam. Reviewed by Johnny Lam.
2002-07-30Update to 5.11.wiz2-5/+5
Changes since 5.10: o more man page fixes from Thomas Klausner o de-K&R C-ification o fix Date: header for daemon mode o fix core dump when asking for /cgi-bin/ when CGI isn't configured o use a valid Server: header
2002-07-30use PKG_SYSCONFDIR/bins for the global config directory instead ofdmcmahill5-8/+30
hard coding /etc/bins. install a default binsrc as an example which can be copied to ${PKG_SYSCONFDIR}/bins/binsrc and/or ~/.bins/binsrc bump PKGREVISION to bins-1.1.10nb1
2002-07-30add missing dependency on p5-IO-String. Makes the reading of EXIF data workdmcmahill1-1/+2
2002-07-29Set USE_JAVA=run on some packages that obviously don't need a JDK for thejlam3-6/+6
build. These packages set NO_BUILD and by inspection of the Makefiles, there isn't any invocation of java needed.
2002-07-26Re-order includes, so that x11-links is pulled in correctly.jschauma1-2/+2
Makefile.common should be included as the last file, as that file includes bsd.pkg.mk. This closes PR pkg/17729 (this time for real)
2002-07-26Back out hasty commit after seeing that wiz has already checked on thisjschauma1-3/+1
and requires feedback. (I believe the technical term is 'Ooops'.)
2002-07-26Add BUILD_DEPENDS for x11-links; this closes PR pkg/17729 by hejschauma1-1/+3
2002-07-26revert to 1.25, as 1.27 causes apache to dump core.grant2-6/+7
fixes pkg/17627.
2002-07-25In FTP_Request(), don't free "path" until we're really done with it, asfredb3-2/+25
"file" is in "path"'s allocation. This fixes a bug where the server task would randomly try to acces a file as a directory, and fail. Bump PKGREVISION, as this was a fairly serious bug.
2002-07-24Change explicit build dependencies on perl into "USE_PERL5=build". Thisjlam16-42/+33
makes these packages build correctly on Darwin where perl>=5.8.0 is required.
2002-07-24Updated cvsweb to 2.0.5martti4-29/+17
* Fix diffs between tags * Fix duplicate accesskeys and id's in the "front" page * Fix typo in JavaScript download window parameter * Include query string in JavaScript download links in order to unbreak downloads from non-default CVS roots * Don't display @ForbiddenFiles in directory listings; also make sure their logs are not accessible via direct URLs * Fix dir sort order breakage when there are rogue files in the repository dir and the sort order is not by file name * Add -f; avoid reading ~/.cvsrc
2002-07-22Adapt to using perl-5.8.0. Perl 5.8.0 removes the need for libperl asjlam1-2/+2
DynaLoader.a is now an archive of PIC objects.
2002-07-19Set use_ssl_verify to y(es), requested in pkg/17644 by Atsushi Onoe.wiz1-2/+2
2002-07-19Gr, fix path again.mycroft2-5/+5
2002-07-19Fix LP64 botch.mycroft2-1/+22
2002-07-17Use a newer distfile as the old one is no longer available (as seen inmartti1-2/+2
the latest bulk build). PKGNAME is unmodified as ${WRKSRC}/STATUS uses the same version for this distfile as before.
2002-07-17Updated adzap to 20020717 (the old distfile is no longer available)martti2-5/+5
2002-07-16Finish move of converters/ttf2pt1, print/p5-Font-AFM, and print/ttftot42wiz1-2/+2
to fonts category.
2002-07-16Update to 2.7c. Straight from the NEWS file:fredb3-20/+5
Bug Fixes: Install two DLLs for the Win32 version. Don't crash for HTTP servers that send headers prefixed with whitespace. Make the "edit selected entry" option work. Don't write uncompressed data to the cache with a header saying it is compressed. Be more lenient in detecting spiders that cannot make requests. The wwwoffle-tools programs now handle dir names as if they had http:// in front. Disallow wwwoffle requests for protocols that WWWOFFLE does not handle. Use the command line config filename in error messages. Fix to allow compilation on SGI IRIX. Handle XHTML style tags when modifying HTML. Updated setuid/setgid code. Some memory leaks removed and potential crashes removed due to using lint). New Features: Split up Set-Cookie headers since browsers can't handle them. Don't request deflated data since WWWOFFLE and servers don't agree on format. Added a form on the monitor options page to stop monitoring a URL. The confirm-requests option now asks for confirmation for page reloads. Documentation: Update FAQ to reference privoxy as well as JunkBuster. Describe how to modify htdig templates to work with WWWOFFLE.
2002-07-16Use scrollkeeper's buildlink.mk fileagc1-2/+2
2002-07-15Added $NetBSD$ tag according to mail from Thomas Klausner on tech-pkg. Someheinz1-2/+5
slight formatting changes.
2002-07-15Eliminate the BUILDLINK_DEPENDS.libwww exception, and bumpfredb1-3/+2
${PKGREVISION}. This guarantees a package free of "openssl" and "socks" crud, thereby closing PR 17010.