mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
5e5841f2cd
PORTREVISION or PORTEPOCH are defined. Most of these Makefiles were defining DISTNAME and WRKSRC (and sometimes EXTRACT_SUFX) -- change those to define DISTFILES only. Also, some of the WRKSRC lines were not even necessary, as they were defining it to the default value. Instigated by: Peter Pentchev <roam@orbitel.bg> and kris
34 lines
1022 B
Makefile
34 lines
1022 B
Makefile
# New ports collection makefile for: httperf
|
|
# Date created: 28 Jul 1999
|
|
# Whom: Will Andrews <andrews@technologist.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= httperf
|
|
PORTVERSION= 0.6
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.hpl.hp.com/pub/httperf/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
|
|
USE_GMAKE= yes
|
|
MAN1= httperf.1
|
|
|
|
# there is no "install" target in the Makefile.
|
|
# chmod'ing httperf as it could be exploited by normal users to overload
|
|
# a webserver, instead of for its actual purpose.
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/httperf ${PREFIX}/bin
|
|
${CHMOD} 750 ${PREFIX}/bin/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/httperf.man ${PREFIX}/man/man1/httperf.1
|
|
@${MKDIR} ${PREFIX}/share/doc/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/README ${PREFIX}/share/doc/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/COPYRIGHT ${PREFIX}/share/doc/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/NEWS ${PREFIX}/share/doc/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/TODO ${PREFIX}/share/doc/httperf
|
|
@${INSTALL_MAN} ${WRKSRC}/ChangeLog ${PREFIX}/share/doc/httperf
|
|
|
|
.include <bsd.port.mk>
|