mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-26 00:55:14 +00:00
42 lines
1.0 KiB
Makefile
42 lines
1.0 KiB
Makefile
# Created by: Martin Matuska <mm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= httest
|
|
PORTVERSION= 2.4.10
|
|
CATEGORIES= www
|
|
MASTER_SITES= SF/htt/htt${PORTVERSION:R}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ehaupt@FreeBSD.org
|
|
COMMENT= HTTP Test Tool
|
|
|
|
LICENSE= APACHE20
|
|
|
|
LIB_DEPENDS= libapr-1.so:${PORTSDIR}/devel/apr1 \
|
|
libpcre.so:${PORTSDIR}/devel/pcre
|
|
|
|
OPTIONS_DEFINE= EXAMPLES
|
|
|
|
CONFIGURE_ARGS= --enable-lua-module \
|
|
--with-apr="${LOCALBASE}/bin" \
|
|
--with-apr-util="${LOCALBASE}/bin" \
|
|
--with-lua="${LUA_LIBDIR}" \
|
|
--with-pcre="${LOCALBASE}/bin" \
|
|
--with-ssl="${OPENSSLLIB}"
|
|
CPPFLAGS+= -I${LUA_INCDIR}
|
|
GNU_CONFIGURE= yes
|
|
USES= iconv lua
|
|
USE_OPENSSL= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
PORTEXAMPLES= *
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|`$$APR_CONFIG --cflags`||; s|-llua|-llua-${LUA_VER}|g' ${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|/bin/bash|/bin/sh|' ${WRKSRC}/generate_modules_c.sh
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.htt ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|