aboutsummaryrefslogtreecommitdiff
path: root/www/squid26
Commit message (Collapse)AuthorAgeFilesLines
* Fix grammatical and whitespace errors in squid.conf.default.Kirill Ponomarev2004-08-213-14/+20
| | | | | | | | | | | | | | | Set supplementary group membership correctly when running squid as a non-root user and do not ignore the squid_group setting when starting squid as root (squid bug #1021) Enable the external_acl helper protocol to handle newlines in the embedded data (squid bug #1038) PR: ports/70767 Submitted by: maintainer Notes: svn path=/head/; revision=116926
* * Integrate a vendor patch for a possible DOS against the NTLMSergey Matveychuk2004-08-202-2/+5
| | | | | | | | | | | authentication helpers, see squid bug #1045. * Bump PORTREVISION. PR: ports/70707 Submitted by: maintainer Notes: svn path=/head/; revision=116763
* The ldap_helpers patch has been updated again; see squid bugKirill Ponomarev2004-08-111-2/+2
| | | | | | | | | | #1032 for details. PR: ports/70312 Submitted by: maintainer Notes: svn path=/head/; revision=115955
* Integrate new vendor patches:Kirill Ponomarev2004-08-072-2/+8
| | | | | | | | | | | | | | - fix a problem in the heap policy code that could cause memory corruption when a {cache,memory}_replacement_policy other than the default "lru" was used (squid bug #1009) - correct quoting of unknown % escape codes when generating error pages (squid bug #1030) PR: ports/70110 Submitted by: maintainer Notes: svn path=/head/; revision=115581
* [Maintainer] www/squid: chase re-issued patch, unbreak fetchingEdwin Groothuis2004-07-292-3/+3
| | | | | | | | | | | | | The concurrent_dns_lookups patch was reissued, update distinfo accordingly. See <http://www.squid-cache.org/bugs/show_bug.cgi?id=852> for further information. PR: ports/69764 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> Notes: svn path=/head/; revision=115036
* - integrate a new version of the LDAP update patch, theKirill Ponomarev2004-07-282-8/+8
| | | | | | | | | | | | | | problems with the previous version are hopefully fixed (squid bug #1018) - integrate a new NTLM authentication patch to address a problem with truncating NTLM authentication blobs (squid bug #1016) - remove two patches which were withdrawn (see squid bugs #910 and 994) PR: ports/69719 Submitted by: maintainer Notes: svn path=/head/; revision=114961
* Fix a bug that disallowed explicit unsetting of the squid_flags variable.Ying-Chieh Liao2004-07-281-1/+1
| | | | | | | | PR: 69670 Submitted by: maintainer Notes: svn path=/head/; revision=114908
* - Tweaks to RC scriptPav Lucistnik2004-07-252-12/+47
| | | | | | | | | | | | - Fix dynamic plist generation to not include files that happen to be in target directories. This prevents their removal on deinstallation or upgrade. PR: ports/69552, ports/69266 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (maintainer) Notes: svn path=/head/; revision=114691
* Remove ldap_helpers.patchSergey Matveychuk2004-07-241-2/+0
| | | | | | | | PR: ports/69487 (partially) Submitted by: maintainer Notes: svn path=/head/; revision=114572
* Remove squid-2.5.STABLE6-ldap_helpers.patch until it is fixed.Oliver Eikemeier2004-07-231-1/+0
| | | | | | | | | | | | | | cf <http://www.squid-cache.org/bugs/show_bug.cgi?id=1018> Do not bump PORTREVISION, since a) ldap is not in the default configuration b) we hope to have that fixed soon PR: 69465 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (maintainer) Notes: svn path=/head/; revision=114490
* The ldap_helpers patch has been rerolled (a missing returnKirill Ponomarev2004-07-222-3/+3
| | | | | | | | | | statement was inserted). PR: ports/69408 Submitted by: maintainer Notes: svn path=/head/; revision=114400
* Integrate the following vendor patches as published onKirill Ponomarev2004-07-192-9/+55
| | | | | | | | | | | | | | | | | | | | | | | | | http://www.squid-cache.org/Versions/v2/2.5/bugs/: - fix a memory leak in client_db (squid bug #833) - add delay pools information to cachemgr's active_requests page - make basic authentication operate case insensitive by default, case sensitive operation can be enabled via squid.conf - log if cache files cannot be created for some reason - make sure that a HTTP HEAD request does not return stale data - correctly log partial hits as TCP_MISS instead of TCP_HIT - fix memory leaks within the NTLM authentication helper - handle the request_header_max_size directive correctly - avoid creating a large number of queued DNS lookups for the same domain in case of DNS problems - update LDAP helper PR: ports/69307 Submitted by: maintainer Notes: svn path=/head/; revision=114249
* Update to 2.5-STABLE6Kirill Ponomarev2004-07-142-113/+42
| | | | | | | | PR: ports/69060 Submitted by: maintainer Notes: svn path=/head/; revision=113669
* Fix the patch that simulates the autotools bootstrap for theKirill Ponomarev2004-06-284-86/+24
| | | | | | | | | | | | | | | | | | follow-xff-patchset (thanks to Michael Ranner for spotting the problem and testing the fix). While at it, wordsmith the comments in the patch. Use the official patch for the NTLM auth helper vulnerability, see <http://www.squid-cache.org/Versions/v2/2.5/bugs/> for details. Build install the SMB basic authentication helpers by default PR: ports/68448 Submitted by: maintainer Notes: svn path=/head/; revision=112480
* Correct the patch for the NTLM helper vulnerability accordingKirill Ponomarev2004-06-182-23/+12
| | | | | | | | | | | | | | | | | | to <http://www.squid-cache.org/bugs/show_bug.cgi?id=998> Apply some cleanups: + prefer PATCHDIR over FILEDIR when referring patches + remove unnecessary quotes + move all substitution tasks to the post-patch target + use "${FALSE}" instead of "exit 1" to generate error 1 from a shell Bump PORTREVISION PR: ports/68078 Submitted by: maintainer Notes: svn path=/head/; revision=111717
* - Support systems where pf(4) must be installed from ports (seeKirill Ponomarev2004-06-105-14/+42
| | | | | | | | | | | | | | | ports/67724, submitted by Michal F. Hanula) - Change ": foo=${foo:=bar}" into "foo=${foo:-bar}" to make the shell scripts easier to read and understand - Correct credits for the recently published NTLM auth vulnerability and fix a nearby braino, too - Bump PORTREVISION PR: ports/67797 Submitted by: maintainer Notes: svn path=/head/; revision=111209
* Add a couple of patches, including one for a buffer overflow in the NTLMDag-Erling Smørgrav2004-06-093-2/+95
| | | | | | | | | | authentication helper. PR: ports/67764 Submitted by: maintainer Notes: svn path=/head/; revision=111178
* - correct report of available cache memory for cache sizes >2GBKirill Ponomarev2004-06-022-2/+23
| | | | | | | | | | | | | | | | | | | | | in cache.log (squid bug #570) - correct the least-load store directory selection algorithm for the cache directories using the "ufs" storage scheme (squid bug #676) - correct the type of the cacheCurrentUnlinkRequests SNMP variable (squid bug #946) - include client IP addresses in debug output (squid bug #948) - correct the HTML doctype for autogenerated FTP directory listings (squid bug #969) - if no resolv.conf is present the dns_servers variable now defaults to 127.0.0.1 (squid bug #991) - update the documentation of the MSNT basic authentication helper (squid bug #717) PR: ports/67495 Submitted by: maintainer Notes: svn path=/head/; revision=110692
* - Add new vendor patches:Kirill Ponomarev2004-05-012-2/+14
| | | | | | | | | | | | | | | | | + clarify the meaning of the ERR keyword in digest authentication + correct a spelling error in the Turkish ERR_DNS_FAIL error page (squid bug #950) + fix a problem regarding negatively cached 404 replies with VARY: header (squid bug #616) + correct a parsing bug which rejected a 'range_offset_limit -1 KB' statement in squid.conf (squid bug #968) - Bump PORTREVISION PR: ports/66139 Submitted by: maintainer Notes: svn path=/head/; revision=108113
* - Fix plistKirill Ponomarev2004-04-282-6/+6
| | | | | | | | | | | | | | - Bump PORTREVISION - Clean up pkg-deinstall: + remove an unnecessary variable + replace rmdir -p with two distinct rmdir calls since we do not want to delete $PKG_PREFIX too if it happens to be empty PR: ports/65918 Submitted by: maintainer Notes: svn path=/head/; revision=107856
* - Add a vendor patch to fix an assertion failure that couldKirill Ponomarev2004-04-192-2/+5
| | | | | | | | | | | | occur in certain rare conditions involving aborted POST/PUT requests (squid bug #943) - Bump PORTREVISION PR: ports/65776 Submitted by: maintainer Notes: svn path=/head/; revision=107616
* - integrate a vendor patch to fix a segfault that occured whenKirill Ponomarev2004-04-183-13/+23
| | | | | | | | | | | | | | | | submitting a blank username in digest authentication (squid bug #954) and bump PORTREVISION - follow Duane Wessel's squid book and use "storage scheme" instead of "store type" - remove trailing whitespace - no longer hardcode the path of the nologin binary in pkg-install and re-wrap pw(8)'s arguments for better readability PR: ports/65723 Submitted by: maintainer Notes: svn path=/head/; revision=107442
* - Integrate a vendor patch that fixes an assertion caused byKirill Ponomarev2004-04-122-2/+5
| | | | | | | | | | | truncated DNS replies (squid bug #962) - Bump PORTREVISION PR: ports/65458 Submitted by: maintainer Notes: svn path=/head/; revision=106809
* - Integrate two new vendor patches, please seeKirill Ponomarev2004-04-094-13/+32
| | | | | | | | | | | | | | | | | | | <http://www.squid-cache.org/Versions/v2/2.5/bugs/> for details - Correct OpenSSL support and, while at it, clean up CFLAGS and LDFLAGS handling (thanks to dinoex for lots of helpful advice!). - better be safe than sorry and pass PTHREAD_CFLAGS through in case we are compiling with threads - try to remove the errorpages directory silently since user defined directories might legitimately be present - clean up shell scripting: + do not use too many variables + use /bin/sh's features instead of external commands PR: ports/65356 Submitted by: maintainer Notes: svn path=/head/; revision=106605
* - Integrate four new vendor patches applicable to FreeBSD, seePav Lucistnik2004-04-013-4/+26
| | | | | | | | | | | | | | | | | | http://www.squid-cache.org/Versions/v2/2.5/bugs/ for details - Fix OPTIONS parser to handle a default-to-on option correctly when either the portoptions file does not exist and/or is not read (i.e. the PACKAGE_BUILDING and BATCH cases) - use IGNORE instead of .error to abort - use ${ID} consistently - inform the user of squid.sh's rcNG-ness when /etc/rc.subr is present at installation time - bump PORTREVISION PR: ports/64946 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (maintainer) Notes: svn path=/head/; revision=105880
* - update to squid-2.5.STABLE5, including two vendor patches issued so farSergei Kolobov2004-03-178-209/+673
| | | | | | | | | | | | | | | | | | - provide more OPTIONS, including (untested) support for pf(4) - integrate the follow-XFF-patch from devel.squid-cache.org (submitted by Michael Ranner), this should improve interaction with dansguardian - use id 100 for the squid pseudo user instead of choosing the first free id greater than 3127, a behaviour introduced with PORTVERSION 2.5.4_6. Provide a 'changeuser' target to make migration from a high id to id 100 possible (requested by Kris Kennaway) - don't let the port CONFLICT with itself (criticized by Oliver Eikemeier) - provide rcNG support in squid.sh only on systems with /etc/rc.subr PR: ports/64061 Submitted by: Thomas-Martin Seck (maintainer) Notes: svn path=/head/; revision=104252
* - Integrate a new set of vendor patches, seeOliver Eikemeier2004-02-234-167/+35
| | | | | | | | | | | | | http://www.squid-cache.org/Versions/v2/2.5/bugs/ for details - Remove two local patches in favour of the respective vendor patches - Bump PORTREVISION PR: 63030 Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> Obtained from: http://www.squid-cache.org/Versions/v2/2.5/bugs/ Notes: svn path=/head/; revision=101877
* - integrate a new patch from squid-cache.org, seeSergei Kolobov2004-02-174-16/+152
| | | | | | | | | | | | | | | | | | | | | | | | | | http://www.squid-cache.org/Versions/v2/2.5/bugs/#squid-2.5.STABLE4-ftp_telnet for details - integrate a patch by Glen Gibb to enable ARP based ACLs and make this an OPTION; see also http://www.squid-cache.org/bugs/show_bug.cgi?id=909 for his original bug report - integrate additional vendor patches - make --enable-underscores an OPTION - set a tighter ACL on libexec/pinger - use $SQUID_USER and $SQUID_GROUP in pkg-install - wordsmith comments - bump PORTREVISION PR: ports/62442 Submitted by: maintainer - Fix checksum for updated errorpages patch PR: ports/62923 Submitted by: Michal Pasternak <dotz@irc.pl> Approved by: maintainer Notes: svn path=/head/; revision=101186
* - Update distinfo for the http_workarounds patch (again)Sergei Kolobov2004-02-024-116/+140
| | | | | | | | | | | | | | | | | | | | | | Please see http://www.squid-cache.org/bugs/show_bug.cgi?id=890 for details. Bump PORTREVISION - Update to use new ports collection features: + USE_SIZE + use PORTDOCS and PLIST_FILES and extend the dynamic package list creation to include squid's icon files, too + move file and directory cleanup on deinstallation to pkg-deinstall + get rid of pkg-plist + use OPTIONS for the most commonly used options, leave SQUID_CONFIGURE_OPTIONS for more obscure options - document known non-working features - use lowercase for local variables - other minor cleanups PR: ports/62222 Submitted by: maintainer Notes: svn path=/head/; revision=99815
* The http_workarounds.patch has been updated, update distinfo accordingly.Ying-Chieh Liao2004-01-201-1/+1
| | | | | | | | PR: 61595 Submitted by: maintainer Notes: svn path=/head/; revision=98626
* - integrate another patch from squid-cache.org, seeYing-Chieh Liao2004-01-193-11/+58
| | | | | | | | | | | | | | | | | http://www.squid-cache.org/Versions/v2/2.5/bugs/ for details - cleanup dynamic plist generation: sort files, replace needlessly complex ex-scripting with a ${REINPLACE_CMD} one-liner - integrate a patch to make the SMB-NTLM helper compile on 5.x and hook this helper up to the build (thanks to Stefano Tagliaferri for reporting the bug and testing the patch) - bump PORTREVISION PR: 61543 Submitted by: maintainer Notes: svn path=/head/; revision=98516
* - configure squid to run under a dedicated "squid" user by default; make useSergei Kolobov2004-01-168-1017/+419
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | of SQUID_{UID,GID} which other squid-related ports already implemented. The user/group will be created on the fly if they do not already exist. - introduce WITH_SQUID_LDAP_AUTH to pull in the necessary bits to compile and use the ldap_auth helper - install some more authentication helper applications by default - install helper applications to ${PREFIX}/libexec/squid instead of ${PREFIX}/libexec, add notes about it in pkg-install and pkg-descr - cleanup the pre-installation tasks and move them from Makefile and pkg-plist into the pkg-install script; make 'make install' and 'pkg_add' actually do the same thing - introduce a pkg-deinstall script - make squid.sh rcNG compatible (when either /etc/rc_subr or ${PREFIX}/etc/rc_subr is present, the first one will be used, otherwise the script will work as a "rc classic" script so no additional dependency on the rc_subr port should be needed) - some Makefile cleanups: + the squid installation procedure now correctly strips binaries, so there is no need to do this manually anymore + generate those parts of pkg-plist dynamically that may be affected by user set tunables (currently the localized error pages and helper applications) + document the available configuration options in a slightly different style + remove some obsolete variable declarations and comments + honor NOPORTDOCS - add CONFLICTS - add another vendor patch, see http://www.squid-cache.org/bugs/show_bug.cgi?id=890 for a thorough explanation of what has been fixed. - since we can no longer take the presence of Lithuanian error pages for granted, wrap the workaround for the errorpages.patch with '.if exists()' - bump PORTREVISION PR: 61315 Submitted by: maintainer Notes: svn path=/head/; revision=98339
* - Integrate another patch for the LDAP authentication helperSergei Kolobov2004-01-092-4/+6
| | | | | | | | | | | | | | | (see <http://www.squid-cache.org/Versions/v2/2.5/bugs/> for details) - Correct MASTER_SITES: + fix URL for Melbourne University's ftp server + replace unreachable ftp mirror at Loughborough University with the one at LEO.org, Munich - Bump PORTREVISION PR: 61128 Submitted by: maintainer Notes: svn path=/head/; revision=97786
* - Integrate a new patch issued by the squid development teamSergei Kolobov2004-01-063-2/+16
| | | | | | | | | | | | | | to correct the behaviour of the LDAP authentication helper wrt TLS, see <http://www.squid-cache.org/Versions/v2/2.5/bugs/> for details - Reinstate the errorpages.patch and work around its partial brokenness by installing some Lithuanian error pages manually. - Bump PORTREVISION PR: 60950 Submitted by: maintainer Notes: svn path=/head/; revision=97448
* Change maintainer to Thomas-Martin Seck.Will Andrews2004-01-051-1/+1
| | | | | | | Approved by: adrian Notes: svn path=/head/; revision=97340
* More patches for squid, to keep up to date with the squid distribution.Edwin Groothuis2004-01-022-11/+13
| | | | | | | | Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> (privately) Approved by: maintainer timeout (still) Notes: svn path=/head/; revision=97055
* Add more patch files for www/squidEdwin Groothuis2003-12-302-2/+13
| | | | | | | | PR: ports/59091 (based on) Submitted by: Thomas-Martin Seck <tmseck@netcologne.de> Notes: svn path=/head/; revision=96933
* Uncomment the lines I needed to test the port. Mea Culpa.Edwin Groothuis2003-12-281-2/+2
| | | | | | | *grabs pointy hat* Notes: svn path=/head/; revision=96770
* [PATCH] www/squid: update to 2.5-STABLE4 (+ vendor patches)Edwin Groothuis2003-12-282-4/+56
| | | | | | | | | | | | | | | | | | [...] - Add 2.5-STABLE4 vendor patches - cache.log message on "squid -k reconfigure" confusing - digest auth never detects password changes - login with space confuses redirector helpers - FQDNcache discards negative responses when using internal DNS - Full details at http://www.squid-cache.org/Versions/v2/2.5/bugs/#STABLE4 [...] PR: ports/58090 Submitted by: Jonathan Noack <noackj@concordiacrusaders.org> Approved by: MAINTAINER TIMEOUT Notes: svn path=/head/; revision=96759
* [PATCH] www/squid: update to 2.5 STABLE 4Edwin Groothuis2003-12-283-50/+29
| | | | | | | | | | | | - Update to 2.5-STABLE4 - plist is correct -- see ports/56392 for details on extra files PR: ports/56926 Submitted by: Jonathan Noack <noackj@concordiacrusaders.org> Approved by: MAINTAINER TIMEOUT Notes: svn path=/head/; revision=96758
* o Allow to use $SQUID_CONFIGURE_ARGS in /etc/make.conf for additionalJun Kuriyama2003-12-131-1/+1
| | | | | | | | | $CONFIGURE_ARGS. No response from: maintainer Notes: svn path=/head/; revision=95727
* .. add the missing file.Adrian Chadd2003-07-271-0/+11
| | | | | | | PR: ports/54153 Notes: svn path=/head/; revision=85663
* Massive upgrade to 2.5-stable3. Thanks!Adrian Chadd2003-07-274-30/+74
| | | | | | | | PR: ports/54153 Submitted by: Jon Noack <noackjr@alumni.rice.edu> Notes: svn path=/head/; revision=85662
* Bring the squid-2.5 port up to 2.5.STABLE2.Adrian Chadd2003-04-092-139/+3
| | | | | | | Expect another few commits soon to improve features :) Notes: svn path=/head/; revision=78653
* Add vendor patches:Alexander Leidinger2003-03-092-4/+139
| | | | | | | | | | | | | | | | | | | | | | - fixes for some security issues - fixes for Samba 2.2.6 or later - fixes for OpenSSL 0.9.7 or later - performance fixes - reliability fixes - stability fixes - documentation fixes - fixes/improvements for OpenLDAP 2.1.x or later - ... Have a look at http://www.squid-cache.org/Versions/v2/2.5/bugs/ for a more detailed description. Maintainer timeout after: ~3 months Submitted by: marius@alchemy.franken.de Approved by: kris Notes: svn path=/head/; revision=77073
* Clear moonlight beckons.Ade Lovett2003-03-072-1/+1
| | | | | | | | | | Requiem mors pacem pkg-comment, And be calm ports tree. E Nomini Patri, E Fili, E Spiritu Sancti. Notes: svn path=/head/; revision=77045
* Grab the patch against squid24 from a PR..Adrian Chadd2003-01-311-4/+8
| | | | | | | PR: 42747 Notes: svn path=/head/; revision=74340
* Document the configure argument for reverse SSL proxies.Sean Chittenden2003-01-021-0/+2
| | | | Notes: svn path=/head/; revision=72301
* Removed double USE_PERL5Edwin Groothuis2002-11-051-1/+0
| | | | | | | Submitted by: marius@alchemy.franken.de Notes: svn path=/head/; revision=69486
* Half of these ones missed yesterday while converting to USE_REINPLACE.Edwin Groothuis2002-11-041-0/+2
| | | | | | | | | The other half needs perl to build. Noticed on bento and others (full mailbox :-) Notes: svn path=/head/; revision=69475