aboutsummaryrefslogtreecommitdiffstats
path: root/www/unit/Makefile
blob: b5da3df3564df53b234146bf271f50f87b731d49 (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
# Created by: Sergey A. Osokin <osa@FreeBSD.org>
# $FreeBSD$

PORTNAME=   unit
PORTVERSION=    1.10.0
CATEGORIES= www
MASTER_SITES=   https://unit.nginx.org/download/

MAINTAINER= osa@FreeBSD.org
COMMENT?=   Dynamic web application server

LICENSE=    APACHE20
LICENSE_FILE=   ${WRKSRC}/LICENSE

USES+=      compiler:c11 cpe

CPE_VENDOR= nginx
CPE_PRODUCT=    unit

OPTIONS_DEFINE?=    \
    DEBUG \
    IPV6 \
    UNIXSOCK
OPTIONS_DEFAULT?=UNIXSOCK

DEBUG_DESC= Enable debug logging
UNIXSOCK_DESC=  Enable unix sockets

.include <bsd.port.options.mk>

HAS_CONFIGURE=  yes

UNIT_VARDIR?=   /var
UNIT_RUNDIR?=   ${UNIT_VARDIR}/run/unit
UNIT_LOGDIR?=   ${UNIT_VARDIR}/log/${PORTNAME}
UNIT_LOGFILE?=  ${UNIT_LOGDIR}/${PORTNAME}.log
UNIT_PIDFILE?=  ${UNIT_RUNDIR}/${PORTNAME}.pid
UNIT_SOCK?= ${UNIT_RUNDIR}/control.unit.sock

CONFIGURE_ARGS= --prefix=${PREFIX} \
        --modules=libexec/unit/modules \
        --state=libexec/unit \
        --log=${UNIT_LOGFILE} \
        --pid=${UNIT_PIDFILE} \
        --ld-opt="-L${LOCALBASE}/lib"

PLIST_FILES?=   sbin/unitd
PLIST_DIRS?=    libexec/unit/modules \
        libexec/unit

USE_RC_SUBR?=   unitd
SUB_LIST=   UNIT_PIDFILE=${UNIT_PIDFILE} \
        UNIT_SOCK=${UNIT_SOCK} \
        PREFIX=${PREFIX}

.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=--debug
.endif

.if empty(PORT_OPTIONS:MIPV6)
CONFIGURE_ARGS+=--no-ipv6
.endif

.if empty(PORT_OPTIONS:MUNIXSOCK)
CONFIGURE_ARGS+=--no-unix-sockets
.else
CONFIGURE_ARGS+=--control=unix:${UNIT_SOCK}
.endif

.if !target(post-install)
post-install:
    ${MKDIR} ${STAGEDIR}${UNIT_LOGDIR}
    ${MKDIR} ${STAGEDIR}${UNIT_RUNDIR}
    ${ECHO_CMD} @dir ${UNIT_LOGDIR} >> ${TMPPLIST}
    ${ECHO_CMD} @dir ${UNIT_RUNDIR} >> ${TMPPLIST}
    ${MKDIR} ${STAGEDIR}${PREFIX}/libexec/unit/modules
.endif

.include <bsd.port.mk>