diff options
author | Neil Blakey-Milner <nbm@FreeBSD.org> | 2002-08-20 16:31:06 +0000 |
---|---|---|
committer | Neil Blakey-Milner <nbm@FreeBSD.org> | 2002-08-20 16:31:06 +0000 |
commit | 55b432b912d5bf94809c0e070e0bf8e89d1aef1e (patch) | |
tree | 32dbb66b0481c5f790707ab5cd6ca5f6eaf36468 /www/mod_scgi | |
parent | 8885b9aa6c88c0c469ef6a9ac4e8764cb77562af (diff) | |
download | ports-55b432b912d5bf94809c0e070e0bf8e89d1aef1e.tar.gz ports-55b432b912d5bf94809c0e070e0bf8e89d1aef1e.zip |
Notes
Diffstat (limited to 'www/mod_scgi')
-rw-r--r-- | www/mod_scgi/Makefile | 26 | ||||
-rw-r--r-- | www/mod_scgi/distinfo | 1 | ||||
-rw-r--r-- | www/mod_scgi/pkg-comment | 1 | ||||
-rw-r--r-- | www/mod_scgi/pkg-descr | 9 | ||||
-rw-r--r-- | www/mod_scgi/pkg-plist | 3 |
5 files changed, 40 insertions, 0 deletions
diff --git a/www/mod_scgi/Makefile b/www/mod_scgi/Makefile new file mode 100644 index 000000000000..58637388cc20 --- /dev/null +++ b/www/mod_scgi/Makefile @@ -0,0 +1,26 @@ +# New ports collection makefile for: scgi +# Date created: 19 Aug 2002 +# Whom: Neil Blakey-Milner <nbm@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= scgi +PORTVERSION= 0.2 +CATEGORIES= www +MASTER_SITES= http://www.mems-exchange.org/software/files/scgi/ +PKGNAMEPREFIX= mod_ + +MAINTAINER= nbm@FreeBSD.org + +BUILD_DEPENDS= ${APXS}:${PORTSDIR}/www/apache13 + +APXS?= ${PREFIX}/sbin/apxs + +do-build: + cd ${WRKSRC} && ${APXS} -c -o mod_scgi.so mod_scgi.c + +do-install: + cd ${WRKSRC} && ${APXS} -i -a mod_scgi.so + +.include <bsd.port.mk> diff --git a/www/mod_scgi/distinfo b/www/mod_scgi/distinfo new file mode 100644 index 000000000000..26d5f2171df0 --- /dev/null +++ b/www/mod_scgi/distinfo @@ -0,0 +1 @@ +MD5 (scgi-0.2.tar.gz) = 586892ad689e31383c21267590474f89 diff --git a/www/mod_scgi/pkg-comment b/www/mod_scgi/pkg-comment new file mode 100644 index 000000000000..db51bf8c509f --- /dev/null +++ b/www/mod_scgi/pkg-comment @@ -0,0 +1 @@ +Apache module that implements the client side of the SCGI protocol diff --git a/www/mod_scgi/pkg-descr b/www/mod_scgi/pkg-descr new file mode 100644 index 000000000000..63cae96e93fc --- /dev/null +++ b/www/mod_scgi/pkg-descr @@ -0,0 +1,9 @@ +An Apache module that implements the client side of the Simple Common +Gateway Interface 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. + +WWW: http://www.mems-exchange.org/software/scgi/ diff --git a/www/mod_scgi/pkg-plist b/www/mod_scgi/pkg-plist new file mode 100644 index 000000000000..dbaad310f427 --- /dev/null +++ b/www/mod_scgi/pkg-plist @@ -0,0 +1,3 @@ +libexec/apache/mod_scgi.so +@exec %D/sbin/apxs -e -a -n scgi %f +@unexec %D/sbin/apxs -e -A -n scgi %f |