mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
dbbfc7889a
- If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight
36 lines
822 B
Makefile
36 lines
822 B
Makefile
# Created by: Will Andrews <andrews@technologist.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= httperf
|
|
PORTVERSION= 0.9.0.1
|
|
CATEGORIES= benchmarks www
|
|
|
|
MAINTAINER= jlaffaye@FreeBSD.org
|
|
COMMENT= Tool for measuring webserver performance
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
USES= autoreconf gmake libtool
|
|
USE_GITHUB= yes
|
|
GH_TAGNAME= dcfb746
|
|
MAKE_ARGS= LIBUTIL_OBJS=ssl_writev.o \
|
|
exec_prefix=${PREFIX}
|
|
|
|
PLIST_FILES= bin/httperf \
|
|
man/man1/httperf.1.gz
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
PORTDOCS= ChangeLog NEWS README TODO
|
|
|
|
do-install:
|
|
${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin/
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for file in ${PORTDOCS}
|
|
${INSTALL_MAN} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|