a87950a9c4
This is an Apache module that implements the SCGI protocol. The SCGI protocol is a replacement for the Common Gateway Interface (CGI) protocol. It is a standard for applications to interface with HTTP servers. It is similar to FastCGI but is designed to be easier to implement. from Jeremy Evans, with tweaks by me
37 lines
761 B
Makefile
37 lines
761 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/07/25 20:05:04 simon Exp $
|
|
|
|
COMMENT= apache interface for SCGI servers
|
|
|
|
DISTNAME= scgi-1.12
|
|
PKGNAME= mod_${DISTNAME}
|
|
CATEGORIES= www
|
|
|
|
HOMEPAGE= http://python.ca/scgi/
|
|
MASTER_SITES= http://quixote.python.ca/releases/
|
|
|
|
MODULES+= apache-module
|
|
|
|
# MIT/CNRI
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODAPACHE_NAME= scgi
|
|
|
|
NO_REGRESS= Yes
|
|
APXS= /usr/sbin/apxs
|
|
|
|
WRKSRC= ${WRKDIST}/apache1
|
|
|
|
do-build:
|
|
cd ${WRKSRC} && ${APXS} -c -o mod_scgi.so mod_scgi.c
|
|
@${MODAPACHE_CREATE_ENABLE_SCRIPT}
|
|
|
|
do-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mod_scgi
|
|
${INSTALL_DATA} ${WRKSRC}/README.txt ${PREFIX}/share/doc/mod_scgi
|
|
${MODAPACHE_INSTALL}
|
|
|
|
.include <bsd.port.mk>
|