blob: 868dac96dad2fddb8145468264e97d399719a6c7 (
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
|
# New ports collection makefile for: mod_jail
# Date created: Oct 7 2005
# Whom: Frank Laszlo <laszlof@vonostingroup.com>
#
# $FreeBSD$
#
PORTNAME= mod_jail
PORTVERSION= 0.1
CATEGORIES= www
MASTER_SITES= http://igorpopov.newmail.ru/
MAINTAINER= laszlof@FreeBSD.org
COMMENT= Apache 1.3.x module to enable an easy alternative to mod_chroot
WRKSRC= ${WRKDIR}/mod_jail
USE_APACHE= 1.3
AP_FAST_BUILD= YES
AP_GENPLIST= YES
PORTDOCS= changelog.html documentation.html download.html \
index.html
.include <bsd.port.pre.mk>
post-extract:
@${REINPLACE_CMD} -e "s|= apxs|= ${APXS}|" ${WRKSRC}/Makefile
.if defined(WITH_APACHE2)
IGNORE= only works on Apache 1.3.x
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC}/doc && \
${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.post.mk>
|