mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
a937c65931
mod_fcgid has a new process management strategy, which concentrates on reducing the number of fastcgi server, and kick out the corrupt fastcgi server as soon as possible. The bad news is that it does not currently support suEXEC, and the good news is that it has PHP support. Check out the web site for details. Licence: GPL WWW: http://fastcgi.coremail.cn/
28 lines
664 B
Makefile
28 lines
664 B
Makefile
# New ports collection makefile for: mod_fcgid for Apache2
|
|
# Date created: 13 August 2004
|
|
# Whom: Akinori MUSHA aka knu <knu@idaemons.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mod_fcgid
|
|
PORTVERSION= 0.80
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://fastcgi.coremail.cn/
|
|
DISTNAME= ${PORTNAME}.${PORTVERSION}
|
|
|
|
MAINTAINER= knu@FreeBSD.org
|
|
COMMENT= An alternative FastCGI module for Apache2
|
|
|
|
USE_APACHE= yes
|
|
WITH_APACHE2= yes
|
|
MAKE_ARGS= top_dir="${LOCALBASE}/share/apache2" INCLUDES="-I${LOCALBASE}/include/apache2"
|
|
INSTALL_TARGET= install-modules
|
|
|
|
post-install:
|
|
${MKDIR} -m 700 /var/run/fcgidsock
|
|
${CHOWN} www:www /var/run/fcgidsock
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|