View | Details | Raw Unified | Return to bug 35627
Collapse All | Expand All

(-)mod_tsunami/Makefile (-4 / +15 lines)
Lines 6-27 Link Here
6
#
6
#
7
7
8
PORTNAME=	mod_tsunami
8
PORTNAME=	mod_tsunami
9
PORTVERSION=	1.0
9
PORTVERSION=	1.1
10
CATEGORIES=	www
10
CATEGORIES=	www
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
11
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
12
MASTER_SITE_SUBDIR=	mod-tsunami
12
MASTER_SITE_SUBDIR=	mod-tsunami
13
13
14
MAINTAINER=	ports@FreeBSD.org
14
MAINTAINER=	sysadmin@alexdupre.com
15
15
16
BUILD_DEPENDS=	${APXS}:${PORTSDIR}/www/apache13
16
BUILD_DEPENDS=	${APXS}:${PORTSDIR}/www/apache13
17
RUN_DEPENDS=	${APXS}:${PORTSDIR}/www/apache13
17
RUN_DEPENDS=	${APXS}:${PORTSDIR}/www/apache13
18
18
19
APXS?=		${LOCALBASE}/sbin/apxs
19
APXS?=		${LOCALBASE}/sbin/apxs
20
20
21
DOCS=		AUTHORS Changelog INSTALL LICENSE README
22
21
do-build:
23
do-build:
22
	@cd ${WRKSRC} && ${APXS} -c ${PORTNAME}.c
24
	@cd ${WRKSRC} && ${APXS} -c mod_tsunami.c
23
25
24
do-install:
26
do-install:
25
	${APXS} -i -A -n ${PORTNAME:S/_//g} ${WRKSRC}/${PORTNAME}.so
27
	${APXS} -i -A -n tsunami ${WRKSRC}/mod_tsunami.so
28
.if !defined(NOPORTDOCS)
29
	@${MKDIR} ${DOCSDIR}
30
.for f in ${DOCS}
31
	@${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
32
.endfor
33
.endif
34
35
post-install:
36
	@${CAT} ${PKGMESSAGE}
26
37
27
.include <bsd.port.mk>
38
.include <bsd.port.mk>
(-)mod_tsunami/distinfo (-1 / +1 lines)
Line 1 Link Here
1
MD5 (mod_tsunami-1.0.tar.gz) = cb37c43cf19db0186abf7870eb9ed335
1
MD5 (mod_tsunami-1.1.tar.gz) = b9a969c536ec9eff5bad63045716559a
(-)mod_tsunami/pkg-descr (+3 lines)
Lines 4-6 Link Here
4
want one site to use all the resources.
4
want one site to use all the resources.
5
5
6
WWW: http://mod-tsunami.sourceforge.net/
6
WWW: http://mod-tsunami.sourceforge.net/
7
8
- Alex Dupre
9
sysadmin@alexdupre.com
(-)mod_tsunami/pkg-message (+13 lines)
Line 0 Link Here
1
*****************************************************************************
2
3
You have installed mod_tsunami.
4
5
Use these directives in your httpd.conf:
6
7
TsunamiActive		On/Off
8
TsunamiMaxConnections	number_of_maximum_slots_per_web_directory
9
10
When the value of TsunamiMaxConnections is set to '0' (default behaviour),
11
mod_tsunami doesn't reject any request.
12
13
*****************************************************************************
(-)mod_tsunami/pkg-plist (+6 lines)
Lines 1-3 Link Here
1
libexec/apache/mod_tsunami.so
1
libexec/apache/mod_tsunami.so
2
@exec %D/sbin/apxs -e -A -n tsunami %D/%F
2
@exec %D/sbin/apxs -e -A -n tsunami %D/%F
3
@unexec %D/sbin/apxs -e -A -n tsunami %D/%F
3
@unexec %D/sbin/apxs -e -A -n tsunami %D/%F
4
%%PORTDOCS%%share/doc/mod_tsunami/AUTHORS
5
%%PORTDOCS%%share/doc/mod_tsunami/Changelog
6
%%PORTDOCS%%share/doc/mod_tsunami/INSTALL
7
%%PORTDOCS%%share/doc/mod_tsunami/LICENSE
8
%%PORTDOCS%%share/doc/mod_tsunami/README
9
%%PORTDOCS%%@dirrm share/doc/mod_tsunami

Return to bug 35627