42 lines
948 B
Makefile
42 lines
948 B
Makefile
# New ports collection makefile for: mod_throttle
|
|
# Date created: 11 February 2001
|
|
# Whom: Anders Nordby <anders@fix.no>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_throttle
|
|
PORTVERSION= 3.1.2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.snert.com/Software/mod_throttle/ \
|
|
http://atreides.freenix.no/~anders/
|
|
DISTNAME= ${PORTNAME}${PORTVERSION:S/.//g}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= anders@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
|
|
RUN_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
|
|
|
APXS?= ${LOCALBASE}/sbin/apxs
|
|
|
|
DOCS= CHANGES.txt LICENSE.txt index.shtml
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && \
|
|
${APXS} -c mod_throttle.c
|
|
|
|
do-install:
|
|
${APXS} -i -A -n throttle ${WRKSRC}/mod_throttle.so
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/doc/mod_throttle
|
|
.for f in ${DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${PREFIX}/share/doc/mod_throttle/
|
|
.endfor
|
|
.endif
|
|
${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|