mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-17 08:01:36 +00:00
6aa6a27cdc
- Add support for building when SSLv2 or SSLv3 are disabled [1] PR: 203675 [1], 205900 [2] Submitted by: brnrd@ [1], zi@ [2] Reviewed by: jlaffaye@ (maintainer) Approved by: jlaffaye@ (maintainer) Obtained from: upstream github
37 lines
849 B
Makefile
37 lines
849 B
Makefile
# Created by: Will Andrews <andrews@technologist.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= httperf
|
|
PORTVERSION= 0.9.0.1
|
|
CATEGORIES= benchmarks www
|
|
#MASTER_SITES= GOOGLE_CODE
|
|
|
|
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>
|