387a9946b0
Necessary to avoid ABI mismatch.
39 lines
883 B
Makefile
39 lines
883 B
Makefile
PORTNAME= libvmod-querystring
|
|
DISTVERSION= v2.0.3
|
|
PORTREVISION= 2
|
|
CATEGORIES= www
|
|
PKGNAMEPREFIX= varnish-
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= Varnish Module (vmod) for query string manipulation
|
|
WWW= https://github.com/Dridi/libvmod-querystring
|
|
|
|
LICENSE= GPLv1
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
BUILD_DEPENDS= rst2man:textproc/py-docutils@${PY_FLAVOR}
|
|
|
|
USES= autoreconf libtool pkgconfig python:build varnish:7
|
|
USE_LDCONFIG= yes
|
|
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-static
|
|
INSTALL_TARGET= install-strip
|
|
DOCSDIR= ${PREFIX}/share/doc/vmod-querystring
|
|
|
|
CFLAGS+= -I${WRKSRC}/src
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= Dridi
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's|$${VARNISHAPI_DATAROOTDIR}|${LOCALBASE}/share|' \
|
|
${WRKSRC}/Makefile.am
|
|
|
|
post-build:
|
|
(cd ${WRKSRC}/src && ${LOCALBASE}/bin/rst2man \
|
|
vmod_querystring.man.rst vmod_querystring.3)
|
|
|
|
.include <bsd.port.mk>
|