blob: 9e653b6dc0411a5dac947f09d613e3a8b8a06bf4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# New ports collection makefile for: httperf
# Date created: 28 Jul 1999
# Whom: Will Andrews <andrews@technologist.com>
#
# $FreeBSD$
#
PORTNAME= httperf
PORTVERSION= 0.9.0
CATEGORIES= benchmarks www
MASTER_SITES= ftp://ftp.hpl.hp.com/pub/httperf/
MAINTAINER= jmelo@FreeBSD.org
COMMENT= A tool for measuring webserver performance
USE_OPENSSL= yes
GNU_CONFIGURE= yes
USE_GMAKE= yes
MAKE_ARGS= LIBUTIL_OBJS=ssl_writev.o \
exec_prefix=${PREFIX}
PLIST_FILES= bin/httperf
.if !defined(NOPORTDOCS)
PORTDOCS= ChangeLog NEWS README TODO
.endif
MAN1= httperf.1
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in ${PORTDOCS}
${INSTALL_MAN} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
do-install:
@${INSTALL_MAN} ${WRKSRC}/man/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/
@${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${PREFIX}/bin/
.include <bsd.port.mk>
|