aboutsummaryrefslogtreecommitdiff
path: root/www/varnish2
Commit message (Collapse)AuthorAgeFilesLines
* Upgrade to 2.0.6. I forgot to commit this after the 8.0 freeze.Dag-Erling Smørgrav2010-01-262-4/+7
| | | | Notes: svn path=/head/; revision=248623
* Upgrade to 2.0.5.Dag-Erling Smørgrav2009-11-093-6/+5
| | | | Notes: svn path=/head/; revision=244024
* Reorganize the rc scripts; there were several things about the old onesDag-Erling Smørgrav2009-10-135-44/+116
| | | | | | | | that simply didn't make sense. Add a pkg-message containing a very brief quick-start guide and a warning to existing users about the rc changes. Notes: svn path=/head/; revision=242785
* Upgrade to 2.0.4.Dag-Erling Smørgrav2009-04-062-4/+4
| | | | | | | PR: ports/133343 Notes: svn path=/head/; revision=231704
* Upgrade to 2.0.3.Dag-Erling Smørgrav2009-02-132-4/+4
| | | | Notes: svn path=/head/; revision=228195
* - No need to define USE_REINPLACE these daysPav Lucistnik2009-01-081-1/+0
| | | | Notes: svn path=/head/; revision=225487
* Forgot varnishtest(1) man page.Dag-Erling Smørgrav2008-11-181-1/+2
| | | | Notes: svn path=/head/; revision=223009
* Upgrade to 2.0.2.Dag-Erling Smørgrav2008-11-183-11/+5
| | | | Notes: svn path=/head/; revision=223008
* Varnish has its own mechanism for dropping privs, and will not work ifDag-Erling Smørgrav2008-11-181-2/+11
| | | | | | | | | started with su as rc.subr wants. If we unset varnishd_{user,group} before calling run_rc_command, rc.subr won't see them, but we can still use them to specify which user and group Varnish should use. Notes: svn path=/head/; revision=223007
* Revert the addition of varnishd_user and varnishd_group. They are magicDag-Erling Smørgrav2008-11-034-9/+6
| | | | | | | to rc.subr. While we're here, s/Id/FreeBSD/ in all three rc scripts. Notes: svn path=/head/; revision=222353
* Upgrade to 2.0.1.Dag-Erling Smørgrav2008-10-203-8/+9
| | | | | | | Submitted by: anordby Notes: svn path=/head/; revision=221825
* Run varnishd as www:wwwDag-Erling Smørgrav2008-10-201-2/+6
| | | | Notes: svn path=/head/; revision=221824
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* Upgrade to 1.1.2.Dag-Erling Smørgrav2007-12-204-24/+44
| | | | Notes: svn path=/head/; revision=204212
* Apply patch for Varnish bug #150.Dag-Erling Smørgrav2007-08-292-1/+19
| | | | Notes: svn path=/head/; revision=198496
* Bump port revision to mark the addition of four missing plist entries.Dag-Erling Smørgrav2007-08-231-0/+1
| | | | Notes: svn path=/head/; revision=198199
* (annoyed grunt)Dag-Erling Smørgrav2007-08-221-0/+4
| | | | Notes: svn path=/head/; revision=198121
* Upgrade to 1.1.1.Dag-Erling Smørgrav2007-08-209-153/+6
| | | | Notes: svn path=/head/; revision=197991
* Tweak previous commit.Dag-Erling Smørgrav2007-07-292-2/+1
| | | | Notes: svn path=/head/; revision=196581
* Fix plist.Dag-Erling Smørgrav2007-07-292-1/+4
| | | | Notes: svn path=/head/; revision=196546
* Correct @dirrmtry syntax.Dag-Erling Smørgrav2007-07-261-1/+1
| | | | | | | Submitted by: sat@ Notes: svn path=/head/; revision=196323
* Upgrade to 1.1 + vendor patches for a number of regressions.Dag-Erling Smørgrav2007-07-259-7/+163
| | | | Notes: svn path=/head/; revision=196265
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-1/+0
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* Fix the rc scripts so it is actually possible to override the defaults.Dag-Erling Smørgrav2007-06-093-15/+13
| | | | Notes: svn path=/head/; revision=193127
* Fix typo in varnishlog.in.Dag-Erling Smørgrav2007-06-052-1/+2
| | | | Notes: svn path=/head/; revision=192850
* Upgrade to 1.0.4.Dag-Erling Smørgrav2007-05-255-8/+67
| | | | Notes: svn path=/head/; revision=191732
* Upgrade to 1.0.3.Dag-Erling Smørgrav2007-02-202-5/+4
| | | | Notes: svn path=/head/; revision=185557
* Add startup script.Dag-Erling Smørgrav2006-11-222-1/+34
| | | | | | | | PR: ports/105743 Submitted by: Sten Spans <sten@blinkenlights.nl> Notes: svn path=/head/; revision=177803
* Correct man page listing.Dag-Erling Smørgrav2006-11-151-2/+4
| | | | Notes: svn path=/head/; revision=177288
* Upgrade to 1.0.2.Dag-Erling Smørgrav2006-11-093-7/+8
| | | | Notes: svn path=/head/; revision=176923
* Upgrade to 1.0.1 (fixes a bug that affects performance under high load)Dag-Erling Smørgrav2006-09-212-4/+4
| | | | Notes: svn path=/head/; revision=173509
* Jump the gun on the Varnish 1.0 release.Dag-Erling Smørgrav2006-09-204-12/+19
| | | | Notes: svn path=/head/; revision=173452
* Varnish requires FreeBSD 6.1 or newer to run.Dag-Erling Smørgrav2006-08-151-1/+7
| | | | Notes: svn path=/head/; revision=170703
* The Varnish high-performance HTTP accelerator.Dag-Erling Smørgrav2006-08-114-0/+54
Notes: svn path=/head/; revision=170365