mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-19 00:13:33 +00:00
29 lines
737 B
Makefile
29 lines
737 B
Makefile
# Provide support for Varnish
|
|
#
|
|
# Feature: varnish
|
|
# Usage: USES=varnish
|
|
# Valid ARGS: 6, 7, run
|
|
#
|
|
# MAINTAINER: ports@FreeBSD.org
|
|
|
|
.if !defined(_INCLUDE_USES_VARNISH_MK)
|
|
_INCLUDE_USES_VARNISH_MK= yes
|
|
|
|
VARNISH_VERSION= ${VARNISH_DEFAULT}
|
|
|
|
. if ${varnish_ARGS:M6}
|
|
VARNISH_VERSION= 6
|
|
. elif ${varnish_ARGS:M7}
|
|
VARNISH_VERSION= 7
|
|
. 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
|