1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-21 04:06:46 +00:00
freebsd-ports/Mk/Uses/varnish.mk
Mathieu Arnold 5d33e04596
framework: Remove $FreeBSD$
Where appropriate fiddle with a few other things.
2021-04-06 16:27:10 +02:00

29 lines
733 B
Makefile

# Provide support for Varnish
#
# Feature: varnish
# Usage: USES=varnish
# Valid ARGS: 4, 6, run
#
# MAINTAINER: ports@FreeBSD.org
.if !defined(_INCLUDE_USES_VARNISH_MK)
_INCLUDE_USES_VARNISH_MK= yes
VARNISH_VERSION= ${VARNISH_DEFAULT}
. if ${varnish_ARGS:M4}
VARNISH_VERSION= 4
. elif ${varnish_ARGS:M6}
VARNISH_VERSION= 6
. elif defined(VARNISH_DEFAULT)
. endif
RUN_DEPENDS+= varnish${VARNISH_VERSION}>=${VARNISH_VERSION}:www/varnish${VARNISH_VERSION}
BUILD_DEPENDS+= varnish${VARNISH_VERSION}>=${VARNISH_VERSION}:www/varnish${VARNISH_VERSION}
CFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/varnish
CPPFLAGS+= -I${LOCALBASE}/include -I${LOCALBASE}/include/varnish
LIBS+= -L${LOCALBASE}/lib
.endif