2002-08-20 18:31:06 +02:00
|
|
|
# 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
|
2003-03-07 07:14:21 +01:00
|
|
|
COMMENT= Apache module that implements the client side of the SCGI protocol
|
2002-08-20 18:31:06 +02:00
|
|
|
|
|
|
|
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>
|