https://www.varnish-cache.org/trac/browser/doc/changes.rst?rev=bfe7cd Tested by Jason Tubnor (Thanks!) and me. jim@ maintainer timeout.
38 lines
828 B
Makefile
38 lines
828 B
Makefile
# $OpenBSD: Makefile,v 1.17 2014/12/17 14:51:35 gonzalo Exp $
|
|
|
|
SHARED_ONLY = Yes
|
|
|
|
COMMENT = high-performance HTTP accelerator
|
|
|
|
DISTNAME = varnish-4.0.2
|
|
CATEGORIES = www
|
|
|
|
SHARED_LIBS = varnishapi 1.0
|
|
|
|
HOMEPAGE = http://www.varnish-cache.org/
|
|
|
|
MAINTAINER = Jim Razmus II <jim@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
WANTLIB += c m ncursesw pcre pthread readline termcap
|
|
|
|
MASTER_SITES = http://repo.varnish-cache.org/source/
|
|
|
|
BUILD_DEPENDS = textproc/py-docutils
|
|
LIB_DEPENDS = devel/pcre
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
TEST_TARGET = check
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/varnish
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/varnish
|
|
cp ${WRKDIST}${SYSCONFDIR}/{example,builtin}.vcl \
|
|
${PREFIX}/share/examples/varnish
|
|
rm -f ${PREFIX}/lib/varnish/{vmods,}/*.{a,la}
|
|
|
|
.include <bsd.port.mk>
|