mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-07 06:40:06 +00:00
6b0606c79b
For people upgrading from previous versions you must read the Upgrading Notes section of our documentation: Upgrade notes: https://docs.fluentbit.io/manual/installation/upgrade_notes Release notes: https://fluentbit.io/announcements/v1.5.1/
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
# Created by: Palle Girgensohn <girgen@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= fluent-bit
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 1.5.1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= girgen@FreeBSD.org
|
|
COMMENT= Fast and lightweight data forwarder
|
|
|
|
LICENSE= APACHE20
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= fluent
|
|
|
|
BROKEN_mips= fails to build: conflicting types for 'restrict'
|
|
BROKEN_mips64= fails to build: conflicting types for 'restrict'
|
|
BROKEN_powerpc64= fails to build: cast from pointer to integer of different size
|
|
|
|
USES= cmake:noninja gmake bison
|
|
|
|
OPTIONS_DEFINE= SSL PGSQL
|
|
OPTIONS_DEFAULT= SSL
|
|
|
|
CMAKE_ARGS= -DFLB_DEBUG=Off -DFLB_TRACE=Off -DFLB_CORO_STACK_SIZE=24576
|
|
|
|
SSL_USES= ssl
|
|
SSL_CMAKE_ON= -DFLB_TLS=On
|
|
SSL_CMAKE_OFF= -DFLB_TLS=On
|
|
|
|
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}
|
|
|
|
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>
|