aboutsummaryrefslogtreecommitdiffstats
path: root/www/nginx-devel/Makefile
blob: afd6de14e661b47b57879847ac97d11b3bc3e1d4 (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
# New ports collection makefile for:    nginx
# Date created:             11 Oct 2004
# Whom:                 osa
#
# $FreeBSD$
#

PORTNAME=   nginx
PORTVERSION=    0.3.60
CATEGORIES= www
MASTER_SITES=   http://sysoev.ru/nginx/
MASTER_SITES+=  ${MASTER_SITE_LOCAL}
MASTER_SITE_SUBDIR= osa

MAINTAINER= osa@FreeBSD.org
COMMENT=    Robust and small WWW server

NGINX_VARDIR?=  ${DESTDIR}/var
NGINX_LOGDIR?=  ${NGINX_VARDIR}/log
NGINX_RUNDIR?=  ${NGINX_VARDIR}/run
NGINX_TMPDIR?=  ${NGINX_VARDIR}/tmp/nginx
HTTP_PORT?= 80

USE_RC_SUBR=    nginx.sh
HAS_CONFIGURE=  yes
CONFIGURE_ARGS+=--prefix=${PREFIX}/etc/nginx \
        --with-cc-opt="-I ${LOCALBASE}/include" \
        --with-ld-opt="-L ${LOCALBASE}/lib" \
        --conf-path=${PREFIX}/etc/nginx/nginx.conf \
        --sbin-path=${PREFIX}/sbin/nginx \
        --pid-path=${NGINX_RUNDIR}/nginx.pid \
        --http-client-body-temp-path=${NGINX_TMPDIR}/client_body_temp \
        --http-proxy-temp-path=${NGINX_TMPDIR}/proxy_temp \
        --http-fastcgi-temp-path=${NGINX_TMPDIR}/fastcgi_temp \
        --http-log-path=${NGINX_LOGDIR}/nginx-access.log \
        --error-log-path=${NGINX_LOGDIR}/nginx-error.log \
        --with-http_stub_status_module \
        --user=${WWWOWN} --group=${WWWGRP}

.if defined(WITH_DEBUG)
CFLAGS+=    -g
CONFIGURE_ARGS+=--with-debug
STRIP=      #do not strip if nginx with debug information
.endif

.if defined(WITH_OPENSSL_MODULE)
NGINX_OPENSSL=  yes
CONFIGURE_ARGS+=--with-http_ssl_module
.endif

.if defined(WITH_IMAP_MODULE)
NGINX_OPENSSL=  yes
CONFIGURE_ARGS+=--with-imap --with-imap_ssl_module
.endif

.if defined(NGINX_OPENSSL)
USE_OPENSSL=    yes
.endif

.if defined(WITHOUT_HTTP_REWRITE_MODULE) || defined(WITHOUT_PCRE)
PKGNAMESUFFIX+= -nopcre
CONFIGURE_ARGS+=--without-http_rewrite_module \
        --without-pcre
.else
LIB_DEPENDS=    pcre.0:${PORTSDIR}/devel/pcre
.endif

.if defined(WITHOUT_WWW)
PLIST_SUB+= WWWDATA="@comment "
.else
PLIST_SUB+= WWWDATA=""
.endif

PLIST_SUB+= NGINX_TMPDIR=${NGINX_TMPDIR} WWWOWN=${WWWOWN} WWWGRP=${WWWGRP}

post-patch:
    @${REINPLACE_CMD} 's!%%HTTP_PORT%%!${HTTP_PORT}!; \
        s!%%PREFIX%%!${PREFIX}!' \
        ${WRKSRC}/conf/nginx.conf

do-build:
    @cd ${WRKSRC} && ${MAKE}

do-install:
    ${MKDIR} ${PREFIX}/etc/nginx ${NGINX_TMPDIR}
    ${CHOWN} ${WWWOWN}:${WWWGRP} ${NGINX_TMPDIR}
    ${INSTALL_PROGRAM} ${WRKSRC}/objs/nginx ${PREFIX}/sbin
.for i in koi-win koi-utf win-utf fastcgi_params
    ${INSTALL_DATA} ${WRKSRC}/conf/${i} ${PREFIX}/etc/nginx
.endfor
.for i in mime.types nginx.conf
    [ -f ${PREFIX}/etc/nginx/${i} ] || \
        ${INSTALL_DATA} ${WRKSRC}/conf/${i} ${PREFIX}/etc/nginx
    ${INSTALL_DATA} ${WRKSRC}/conf/${i} ${PREFIX}/etc/nginx/${i}-dist
.endfor
.if !defined(WITHOUT_WWW)
    ${MKDIR} ${PREFIX}/www/nginx-dist
.for i in index.html 50x.html
    ${INSTALL_DATA} ${WRKSRC}/html/${i} ${PREFIX}/www/nginx-dist
.endfor
    ${ECHO_CMD} "" >>${PREFIX}/www/nginx-dist/EXAMPLE_DIRECTORY-DONT_ADD_OR_TOUCH_ANYTHING
    [ -e ${PREFIX}/www/nginx ] || \
        ${LN} -sf ${PREFIX}/www/nginx-dist ${PREFIX}/www/nginx
.endif

.include <bsd.port.mk>