aboutsummaryrefslogtreecommitdiff
path: root/www/mongrel2/Makefile
blob: 82ebbb706d1c781089756ffc5b17bfcbcc102e94 (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
PORTNAME=	mongrel2
DISTVERSIONPREFIX=	v
DISTVERSION=	1.12.2
CATEGORIES=	www

MAINTAINER=	ports@FreeBSD.org
COMMENT=	Is an application, language, and network arch
WWW=		https://mongrel2.org/

LICENSE=	BSD3CLAUSE
LICENSE_FILE=	${WRKSRC}/LICENSE

BROKEN_FreeBSD_13=	ld: error: duplicate symbol: m2program
BROKEN_FreeBSD_14=	ld: error: duplicate symbol: m2program
BROKEN_armv6=	does not build: src/task/task.c:66:11: error: no member named 'arm_r0' in 'mcontext_t'
BROKEN_armv7=	does not build: src/task/task.c:66:11: error: no member named 'arm_r0' in 'mcontext_t'
BROKEN_mips=	does not build (tests segfault)
BROKEN_mips64=	does not build (tests segfault)
BROKEN_powerpc64=	does not build (tests segfault)

LIB_DEPENDS=	libzmq.so:net/libzmq4

USES=		gmake localbase:ldflags sqlite tar:bzip2
USE_GITHUB=	yes
GH_TUPLE=	ARMmbed:mbedtls:8254ed2:x/src/mbedtls
ALL_TARGET=	freebsd
EXAMPLES_LIST=	bbs \
		configs \
		kegogi \
		python \
		ws \
		chat \
		http_0mq \
		mp3stream \
		tornado \
		zcov
MAKE_JOBS_UNSAFE=	yes
MAKE_ARGS+=	-f localmbedtls.mak

TEST_TARGET=	tests # tests fail on 12: Invalid system call
TEST_ENV=	${MAKE_ENV} OPTFLAGS=-I${LOCALBASE}/include
TEST_ARGS=	${MAKE_ARGS}

OPTIONS_DEFINE=	EXAMPLES

post-patch:
	@${REINPLACE_CMD} -e 's#fdclose#my_fdclose#g' ${WRKSRC}/src/*.c \
		${WRKSRC}/src/task/*.[ch] ${WRKSRC}/tests/*.c \
		${WRKSRC}/tools/filters/*.c

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/mongrel2/*/*.so
	@${MKDIR} ${STAGEDIR}/${EXAMPLESDIR}
.for example in ${EXAMPLES_LIST}
	cd ${WRKSRC}/examples && ${COPYTREE_SHARE} ${example} ${STAGEDIR}/${EXAMPLESDIR}
.endfor

.include <bsd.port.mk>