Files
ports/comms/ebusd/Makefile
T
Oleksii Samorukov 9298b6de5d comms/ebusd: update to v21.1
Bug Fixes
- fix for publishing several MQTT updates at once
- optimized keep alive option for net devices
- fix for duplicate entry "minarbitrationmicros" in HTTP GET
- fix for extra send retry
- fix for newer compiler versions
- fix for potential illegal string usages
- fix for named net device not being resolvable during startup

Features
- added Raspberry Pi docker image
- added support for Cygwin build
- added option to use "\*" as trailing wildcard for circuit and name in MQTT /list topic
- added "--mqttinsecure" option
- updated to newest version of enhanced protocol
- added adapter 3 PIC tool "ebuspicloader" for uploading new firmware and configuring fix IP address

Approved by:	krion
Differential Revision:	https://reviews.freebsd.org/D28112
2021-01-12 09:47:22 +00:00

48 lines
894 B
Makefile

# $FreeBSD$
PORTNAME= ebusd
PORTVERSION= 21.1
DISTVERSIONPREFIX= v
CATEGORIES= comms
MAINTAINER= samm@FreeBSD.org
COMMENT= Daemon for communication with eBUS heating systems
LICENSE= GPLv3
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libargp.so:devel/argp-standalone
USES= autoreconf compiler:c++11-lang localbase:ldflags
USE_GITHUB= yes
GH_ACCOUNT= john30
USE_RC_SUBR= ebusd
USERS= ebusd
GROUPS= ebusd
LOGDIR= /var/log/${PORTNAME}
RUNDIR= /var/run/${PORTNAME}
CPPFLAGS+= -I${LOCALBASE}/include
GNU_CONFIGURE= yes
PLIST_SUB= USER=${USERS} GROUP=${GROUPS} \
LOGDIR=${LOGDIR} \
RUNDIR=${RUNDIR}
OPTIONS_DEFINE= MQTT
OPTIONS_DEFAULT=MQTT
MQTT_DESC= MQTT protocol support
MQTT_CONFIGURE_WITH= mqtt
MQTT_LIB_DEPENDS= libmosquitto.so:net/mosquitto
MQTT_VARS= LIBS+=-lmosquitto
post-install:
${MKDIR} ${STAGEDIR}${LOGDIR}
${MKDIR} ${STAGEDIR}${RUNDIR}
.include <bsd.port.mk>