aboutsummaryrefslogtreecommitdiffstats
path: root/www/nginx/Makefile
blob: 761e42ca3453ee7383ca8b851746a3f2793515e0 (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
107
108
109
110
111
112
113
114
115
# New ports collection makefile for:    nginx
# Date created:             11 Oct 2004
# Whom:                 osa
#
# $FreeBSD$
#

PORTNAME=   nginx
PORTVERSION=    0.1.37
CATEGORIES= www
MASTER_SITES=   http://sysoev.ru/nginx/

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

VARDIR?=    ${DESTDIR}/var
LOGDIR?=    ${VARDIR}/log
RUNDIR?=    ${VARDIR}/run
TMPDIR?=    ${VARDIR}/tmp/nginx
HTTP_PORT?= 80

USE_REINPLACE=  yes
USE_RC_SUBR=    yes
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=${RUNDIR}/nginx.pid \
        --http-client-body-temp-path=${TMPDIR}/client_body_temp \
        --http-proxy-temp-path=${TMPDIR}/proxy_temp \
        --http-fastcgi-temp-path=${TMPDIR}/fastcgi_temp \
        --http-log-path=${LOGDIR}/nginx-access.log \
        --error-log-path=${LOGDIR}/nginx-error.log \
        --with-http_stub_status_module \
        --user=${WWWOWN} --group=${WWWGRP}

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

.if defined(WITH_OPENSSL_MODULE)
USE_OPENSSL=    yes
CONFIGURE_ARGS+=--with-http_ssl_module
.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

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

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

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

RC_SCRIPTS_SUB=PREFIX=${PREFIX} RC_SUBR=${RC_SUBR}

post-extract:
    @${SED} ${RC_SCRIPTS_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
        ${FILESDIR}/nginx.sh > ${WRKSRC}/nginx.sh

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 ${TMPDIR}
    ${CHOWN} ${WWWOWN}:${WWWGRP} ${TMPDIR}
    ${INSTALL_SCRIPT} ${WRKSRC}/nginx.sh ${PREFIX}/etc/rc.d
    ${INSTALL_PROGRAM} ${WRKSRC}/objs/nginx ${PREFIX}/sbin
    ${INSTALL_DATA} ${WRKSRC}/conf/koi-win ${PREFIX}/etc/nginx
.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
    ${INSTALL_DATA} ${WRKSRC}/html/index.html ${PREFIX}/www/nginx-dist
    ${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

post-install:
.if defined(START_AFTER_INSTALL)
    ${PREFIX}/etc/rc.d/nginx.sh start
.endif

.include <bsd.port.mk>