blob: a70bc9d60fbc694adefbcd5d02e2cad0bec47a4b (
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
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
|
# Build wrapper for Nginx
# $OpenBSD: Makefile.bsd-wrapper,v 1.5 2012/04/10 15:50:38 miod Exp $
LNDIR= /usr/bin/lndir
.include <bsd.own.mk>
.if (${MACHINE_ARCH} == "vax")
CFLAGS=-O1 ${PIPE} ${DEBUG}
.endif
CONFIGURE_ARGS= --prefix=/var/www \
--conf-path=/etc/nginx/nginx.conf \
--sbin-path=/usr/sbin/nginx \
--pid-path=/var/run/nginx.pid \
--lock-path=/var/run/nginx.lock \
--http-log-path=logs/access.log \
--error-log-path=logs/error.log \
--http-client-body-temp-path=/tmp/client_body_temp \
--http-proxy-temp-path=/tmp/proxy_temp \
--http-fastcgi-temp-path=/tmp/fastcgi_temp \
--http-scgi-temp-path=/tmp/scgi_temp \
--http-uwsgi-temp-path=/tmp/uwsgi_temp \
--user=www \
--group=www \
--with-http_gzip_static_module \
--with-http_ssl_module \
--with-http_stub_status_module \
--with-ipv6 \
--without-mail_pop3_module \
--without-mail_imap_module \
--without-mail_smtp_module
MAN+= ${.OBJDIR}/objs/nginx.8
.include <bsd.own.mk>
all: ${.OBJDIR}/objs/ngx_auto_config.h
@cd ${.OBJDIR} && ${MAKE}
BEFOREMAN=${.OBJDIR}/objs/ngx_auto_config.h
${.OBJDIR}/objs/nginx.8: ${BEFOREMAN}
cd ${.OBJDIR} && ${MAKE} -f objs/Makefile manpage
${.OBJDIR}/objs/ngx_auto_config.h: ${.OBJDIR}/configure
@cd ${.OBJDIR} && CC="${CC}" LD_SHLIB="${CC}" \
OPTIM="${CFLAGS} ${COPTS}" \
PATH="/sbin:/usr/sbin:/bin:/usr/bin" \
sh configure ${CONFIGURE_ARGS}
.if !exists(${.OBJDIR}/configure)
${.OBJDIR}/configure: ${.CURDIR}/configure
${LNDIR} -s -e obj -e obj.${MACHINE_ARCH} -e Makefile.bsd-wrapper ${.CURDIR}
.endif
.if ${.OBJDIR} == ${.CURDIR}
clean:
-@cd ${.OBJDIR} && ${MAKE} clean
.else
clean:
@cd ${.OBJDIR} && find . \! -type d -print0 | xargs -0r rm
.endif
cleandir: clean
prereq:
# nothing left
test:
# Nothing here so far...
depend:
# Nothing here so far...
lint:
# Nothing here so far...
tags:
# Nothing here so far...
distribution:
${INSTALL} -C -o root -g wheel -m 0644 \
${.CURDIR}/conf/fastcgi_params \
${.CURDIR}/conf/koi-utf \
${.CURDIR}/conf/koi-win \
${.CURDIR}/conf/mime.types \
${.CURDIR}/conf/nginx.conf \
${.CURDIR}/conf/scgi_params \
${.CURDIR}/conf/uwsgi_params \
${.CURDIR}/conf/win-utf \
${DESTDIR}/etc/nginx/
.ifdef NOMAN
maninstall:
@echo NOMAN is set
.endif
install: maninstall
${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} -o ${BINOWN} \
-g ${BINGRP} -m ${BINMODE} objs/nginx ${DESTDIR}/usr/sbin/nginx
.include <bsd.obj.mk>
.include <bsd.subdir.mk>
.ifndef NOMAN
.include <bsd.man.mk>
.endif
|