1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00
freebsd-ports/www/varnish/Makefile
Kubilay Kocak e275f8d7de www/varnish: Update to 3.0.5, Enable STAGE support
- Update to 3.0.5
- Enable STAGE support, update pkg-plist accordingly
- Update LICENSE
- Modernize LIB_DEPENDS
- Pet portlint (space->tab)

Changes:

 * A bad interaction between -b, -c and -m in the varnishlog tool has
   been fixed.
 * A malformed request could in some configurations lead to Varnish
   crashing has been corrected. This is CVE-2013-4484.
 * Duplicate Content-Length headers were in some cases sent to clients
   when streaming is enabled, this has been fixed
 * ESI parse errors are no longer printed to standard output.
 * Stop segfaulting if the first part of a synthetic page is NULL.

PR:		ports/185188
PR:		ports/185543
Submitted by:	feld, Hung-Yi Chen <gaod@hychen.org>
Approved by:	maintainer timeout (1 month)
Security:	http://www.vuxml.org/freebsd/d9dbe6e8-84da-11e3-98bd-080027f2d077.html
2014-01-25 09:27:18 +00:00

77 lines
2.1 KiB
Makefile

# $FreeBSD$
PORTNAME= varnish
PORTVERSION= 3.0.5
CATEGORIES= www
MASTER_SITES= http://repo.varnish-cache.org/source/
MAINTAINER= anders@FreeBSD.org
COMMENT= The Varnish high-performance HTTP accelerator
LICENSE= BSD2CLAUSE
LIB_DEPENDS= libpcre.so:${PORTSDIR}/devel/pcre
CONFLICTS= varnish-2.*
GNU_CONFIGURE= yes
USES= gmake pkgconfig
USE_PYTHON_BUILD= yes
CONFIGURE_ARGS= --localstatedir=${PREFIX} --enable-tests
CONFIGURE_ENV= RST2MAN=true
USE_LDCONFIG= yes
USE_AUTOTOOLS= aclocal libtool libtoolize automake autoconf
ACLOCAL_ARGS= -I m4
LIBTOOLFLAGS= --copy --force --disable-static
AUTOMAKE_ARGS= --add-missing --copy --foreign
USE_RC_SUBR= varnishd varnishlog varnishncsa
SUB_FILES= pkg-message
.if defined(NO_INET6) || defined(WITHOUT_INET6)
BAD_TESTS+= r00832
EXTRA_PATCHES+= ${FILESDIR}/no-inet6.patch
.endif
post-patch:
@${REINPLACE_CMD} -e 's|\$$(libdir)/pkgconfig|\$$(prefix)/libdata/pkgconfig|' \
${WRKSRC}/Makefile.am
.if defined(BAD_TESTS)
${RM} -f ${BAD_TESTS:C|.+|${WRKSRC}/bin/varnishtest/tests/\0.vtc|}
.endif
regression-test check test: build
${GMAKE} TESTS_PARALLELISM=1 -C ${WRKSRC} check
post-build:
#
# It is highly recommended, that you verify the build's
# correctness by performing:
#
# make check
#
# now...
#
post-install:
${MKDIR} ${STAGEDIR}${PREFIX}/share/varnish
${INSTALL_SCRIPT} ${WRKSRC}/lib/libvmod_std/vmod.py ${STAGEDIR}${PREFIX}/share/varnish
.for f in cache.h heritage.h steps.h common.h acct_fields.h locks.h body_status.h
${INSTALL_DATA} ${WRKSRC}/bin/varnishd/${f} ${STAGEDIR}${PREFIX}/include/varnish
.endfor
.for f in vct.h vmod_abi.h vre.h vrt.h vqueue.h vsb.h libvarnish.h miniobj.h vas.h vav.h http_headers.h vcl_returns.h
${INSTALL_DATA} ${WRKSRC}/include/${f} ${STAGEDIR}${PREFIX}/include/varnish
.endfor
@${CAT} ${PKGMESSAGE}
@${RM} -f ${STAGEDIR}${PREFIX}/lib/libvarnishapi.*a ${STAGEDIR}${PREFIX}/lib/varnish/lib*a ${STAGEDIR}${PREFIX}/lib/varnish/vmods/lib*a
.include <bsd.port.pre.mk>
.if ${ARCH} == "i386"
EXTRA_PATCHES+= ${FILESDIR}/bug-1201.patch
.endif
.if ${ARCH} == "arm"
BROKEN= Does not configure on arm
.endif
.include <bsd.port.post.mk>