Add mod_fastcgi, the apxs-aware fastcgi module for apache
PR: ports/19902 Submitted by: JunSeon Oh <hollywar@mail.holywar.net>
This commit is contained in:
parent
7c1067091e
commit
3355cc2b26
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=31180
6 changed files with 51 additions and 0 deletions
|
@ -90,6 +90,7 @@
|
|||
SUBDIR += mhonarc
|
||||
SUBDIR += mod_dav
|
||||
SUBDIR += mod_dtcl
|
||||
SUBDIR += mod_fastcgi
|
||||
SUBDIR += mod_perl
|
||||
SUBDIR += mod_php3
|
||||
SUBDIR += mod_php4
|
||||
|
|
40
www/mod_fastcgi/Makefile
Normal file
40
www/mod_fastcgi/Makefile
Normal file
|
@ -0,0 +1,40 @@
|
|||
# New ports collection makefile for: mod_fastcgi ( in apache )
|
||||
# Date created: 14 Jul 2000
|
||||
# Whom: JunSeon Oh <hollywar@mail.holywar.net>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= mod_fastcgi
|
||||
PORTVERSION= 2.2.4
|
||||
CATEGORIES= www
|
||||
MASTER_SITES= http://www.fastcgi.com/dist/
|
||||
DISTNAME= mod_fastcgi_${PORTVERSION}
|
||||
|
||||
MAINTAINER= hollywar@mail.holywar.net
|
||||
|
||||
BUILD_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
|
||||
RUN_DEPENDS= ${LOCALBASE}/sbin/apxs:${PORTSDIR}/www/apache13
|
||||
|
||||
do-patch:
|
||||
cd ${WRKSRC} ; ${MV} Makefile.tmpl Makefile ;
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} ; ${LOCALBASE}/sbin/apxs -o mod_fastcgi.so -c *.c
|
||||
|
||||
do-install:
|
||||
cd ${WRKSRC} ; ${LOCALBASE}/sbin/apxs -i -a -n fastcgi mod_fastcgi.so
|
||||
|
||||
post-install:
|
||||
@${ECHO_MSG} "*******************************************************"
|
||||
@${ECHO_MSG} "* Fast-cgi modules was include with your apache *"
|
||||
@${ECHO_MSG} "* configuration file *"
|
||||
@${ECHO_MSG} "* *"
|
||||
@${ECHO_MSG} "* You need to add following line in your apache *"
|
||||
@${ECHO_MSG} "* configuration file. and restart it ! *"
|
||||
@${ECHO_MSG} "* *"
|
||||
@${ECHO_MSG} "* AddHandler fastcgi-script fcgi fcgi fpl *"
|
||||
@${ECHO_MSG} "* *"
|
||||
@${ECHO_MSG} "*******************************************************"
|
||||
|
||||
.include <bsd.port.mk>
|
1
www/mod_fastcgi/distinfo
Normal file
1
www/mod_fastcgi/distinfo
Normal file
|
@ -0,0 +1 @@
|
|||
MD5 (mod_fastcgi_2.2.4.tar.gz) = 2b58a46ad35604b0a72b6974c53616cb
|
1
www/mod_fastcgi/pkg-comment
Normal file
1
www/mod_fastcgi/pkg-comment
Normal file
|
@ -0,0 +1 @@
|
|||
A fast-cgi module for Apache
|
7
www/mod_fastcgi/pkg-descr
Normal file
7
www/mod_fastcgi/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
mod_fastcgi is a cgi-module for Apache
|
||||
|
||||
FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. See the docs for more details.
|
||||
|
||||
--
|
||||
Ports by JunSeon Oh <hollywar@mail.holywar.net>
|
||||
WWW: http://www.fastcgi.com
|
1
www/mod_fastcgi/pkg-plist
Normal file
1
www/mod_fastcgi/pkg-plist
Normal file
|
@ -0,0 +1 @@
|
|||
libexec/apache/mod_fastcgi.so
|
Loading…
Reference in a new issue