blob: 71293426843a3b0c49b22c381d475076d9b1445d (
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
|
# New ports collection makefile for: mod_tsunami
# Date created: 10 April 2001
# Whom: will
#
# $FreeBSD$
#
PORTNAME= mod_tsunami
PORTVERSION= 3.0
PORTREVISION= 1
CATEGORIES= www
MASTER_SITES= http://bertrand.demiddelaer.org/mod_tsunami/
MAINTAINER= ale@FreeBSD.org
COMMENT= Apache module which dynamically limits a site's slot usage
DEPRECATED= apache13 is deprecated, migrate to 2.2.x+ now
EXPIRATION_DATE= 2011-11-01
MAKE_JOBS_SAFE= yes
USE_APACHE= 13
AP_FAST_BUILD= yes
DOCS= AUTHORS Changelog
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/
.for f in ${DOCS}
@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}/
.endfor
@${CP} -R ${WRKSRC}/docs/* ${DOCSDIR}/
.endif
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|