aboutsummaryrefslogtreecommitdiff
path: root/sysutils/fluent-bit/Makefile
blob: bff30a6580156f9636eb1011edb8801e34fcea36 (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
# Created by: Palle Girgensohn <girgen@FreeBSD.org>

PORTNAME=	fluent-bit
DISTVERSIONPREFIX=	v
DISTVERSION=	1.9.5
CATEGORIES=	sysutils

MAINTAINER=	girgen@FreeBSD.org
COMMENT=	Fast and lightweight data forwarder

LICENSE=	APACHE20

BROKEN_mips=		fails to build: conflicting types for 'restrict'
BROKEN_mips64=		fails to build: conflicting types for 'restrict'

USE_GITHUB=	yes
GH_ACCOUNT=	fluent

USES=		cmake:noninja gmake bison

OPTIONS_DEFINE=		SSL PGSQL
OPTIONS_DEFAULT=	SSL

LIB_DEPENDS=		libyaml.so:textproc/libyaml
LDFLAGS+=		-lexecinfo -L${LOCALBASE}/lib
CMAKE_ARGS=		-DFLB_DEBUG=Off -DFLB_TRACE=Off
CFLAGS+=		-I${LOCALBASE}/include

SSL_USES=		ssl
SSL_CMAKE_ON=		-DFLB_TLS=On
SSL_CMAKE_OFF=		-DFLB_TLS=Off

EXAMPLES_CMAKE_ON=	-DFLB_EXAMPLES=On
EXAMPLES_CMAKE_OFF=	-DFLB_EXAMPLES=Off

PGSQL_USES=		pgsql
PGSQL_CMAKE_ON=		-DFLB_OUT_PGSQL=On
PGSQL_CMAKE_OFF=	-DFLB_OUT_PGSQL=Off

USE_RC_SUBR=	${PORTNAME}

.include <bsd.port.options.mk>

.if ${ARCH:Mpowerpc64*} || ${ARCH:Mriscv64*}
CMAKE_ARGS+=	-DFLB_LUAJIT:BOOL=OFF
.elif ${ARCH} == powerpc
LDFLAGS+=	-latomic
USES+=		compiler:gcc-c++11-lib
.else
USES+=		compiler:c11
.endif

post-install:
	${MV} ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf ${STAGEDIR}${ETCDIR}/${PORTNAME}.conf.sample
	${MV} ${STAGEDIR}${ETCDIR}/parsers.conf ${STAGEDIR}${ETCDIR}/parsers.conf.sample

.include <bsd.port.mk>