blob: d83c1e17690e7abb469f4a994745af120c2cc0a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# New ports collection makefile for: scgi
# Date created: 19 Aug 2002
# Whom: Neil Blakey-Milner <nbm@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= scgi
PORTVERSION= 1.9
CATEGORIES= www
MASTER_SITES= http://www.mems-exchange.org/software/files/scgi/ \
http://bsdchat.com/dist/dryice/
PKGNAMEPREFIX= mod_
DISTNAME= scgi-${PORTVERSION:S/.a/a/}
MAINTAINER= dryice@dryice.name
COMMENT= Apache module that implements the client side of the SCGI protocol
USE_APACHE= yes
USE_REINPLACE= yes
WRKSRC= ${WRKDIR}/${DISTNAME}/${SCGI_DIR}
.include <bsd.port.pre.mk>
.if exists(${LOCALBASE}/include/apache2/apr.h)
WITH_APACHE2= yes
.endif
.if defined(WITH_APACHE2)
SCGI_DIR= apache2
PLIST_SUB= APACHE_DIR=apache2
.else
SCGI_DIR= apache1
PLIST_SUB= APACHE_DIR=apache
.endif
do-build:
cd ${WRKSRC} && ${APXS} -c mod_scgi.c
do-install:
cd ${WRKSRC} && ${APXS} -i -c mod_scgi.c
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|