aboutsummaryrefslogtreecommitdiffstats
path: root/www/suphp/Makefile
blob: b67c0148225d7e86dd4458a7feb13431a35fd4fe (plain) (blame)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# New ports collection makefile for:    suphp
# Date created:     15 September 2002
# Whom:         Clement Laforet <sheepkiller@cultdeadsheep.org>
#
# $FreeBSD$
#

PORTNAME=   suphp
PORTVERSION=    0.6.2
CATEGORIES= www
MASTER_SITES=   http://www.suphp.org/download/ \
        ${MASTER_SITE_LOCAL:S|%SUBDIR%|koitsu|}

MAINTAINER= koitsu@FreeBSD.org
COMMENT=    Securely execute PHP scripts under Apache

GNU_CONFIGURE=  yes
USE_AUTOTOOLS=  aclocal:19:env automake:19:env autoconf:261:env libtool:15:env

# Maintainer has not tested suPHP 0.6.x on Apache 1.3.
USE_APACHE= 2.0+
USE_PHP=    yes
WANT_PHP_CGI=   yes

MYPORTDOCS= apache/CONFIG apache/INSTALL apache/README CONFIG LICENSE INSTALL README

CONFIGURE_ARGS= --with-apxs=${APXS}


# WITH_SETID_MODE should be a value of "owner", "force", or "paranoid".
# It's important that you understand the differences between each mode.
# See /usr/local/share/doc/suphp/INSTALL for details.
#
WITH_SETID_MODE?=   owner
CONFIGURE_ARGS+=    --with-setid-mode=${WITH_SETID_MODE}


.include <bsd.port.pre.mk>

# Apache 2.0 (www/apache2) has apr-config in LOCALBASE/lib/apache2, while
# Apache 2.2 (www/apache22) has apr-1-config in LOCALBASE/bin.
#
.if ${APACHE_VERSION} == 20
CONFIGURE_ARGS+=    --with-apr=${LOCALBASE}/lib/apache2
.else
CONFIGURE_ARGS+=    --with-apr=${LOCALBASE}
.endif


post-install:
.if !defined(NOPORTDOCS)
    @${MKDIR} ${DOCSDIR}
    @${MKDIR} ${DOCSDIR}/apache
.for f in ${MYPORTDOCS}
    @${CP} -Rfp ${WRKSRC}/doc/${f} ${DOCSDIR}/${f}
.endfor
.endif
.if !defined(WITH_DEBUG)
    @${STRIP_CMD} ${PREFIX}/sbin/suphp
.endif
    @${CP} -fp ${WRKSRC}/doc/suphp.conf-example ${PREFIX}/etc/suphp.conf-example
    @${CAT} ${PKGMESSAGE}

.include <bsd.port.post.mk>