mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-12 07:27:57 +00:00
59e02117ae
Changes: http://www.boost.org/users/history/version_1_63_0.html PR: 215598 Exp-run by: antoine Approved by: office (bapt) MFH: 2017Q1
100 lines
2.5 KiB
Makefile
100 lines
2.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= domoticz
|
|
PORTVERSION= 3.${DOMOTICZ_REL}
|
|
PORTREVISION= 1
|
|
CATEGORIES= www
|
|
|
|
MAINTAINER= kiwi@oav.net
|
|
COMMENT= Home Automation System
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/License.txt
|
|
|
|
LIB_DEPENDS= libcurl.so:ftp/curl \
|
|
libexpat.so:textproc/expat2 \
|
|
libtelldus-core.so:comms/telldus-core
|
|
|
|
CONFLICTS_INSTALL?= domoticz-[23]*
|
|
|
|
OPTIONS_SUB= YES
|
|
OPTIONS_DEFINE= SBOOST SLUA SMQTT SSQLITE PYTHON
|
|
SBOOST_DESC= Use static Boost instead of dynamic linking
|
|
SLUA_DESC= Use domoticz provided LUA instead of ports one
|
|
SMQTT_DESC= Use domoticz mosquitto instead of ports one
|
|
SSQLITE_DESC= Use domoticz SQLLite instead of ports one
|
|
PYTHON_DESC= Enable support for Python in EventSystem
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
# This hack is to get rid of dependency of git while building
|
|
# the package.
|
|
DOMOTICZ_REL= 5877
|
|
DOMOTICZ_TS= 1478792673
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= domoticz
|
|
GH_PROJECT= domoticz
|
|
|
|
USES= cmake iconv pkgconfig execinfo ssl
|
|
|
|
USE_RC_SUBR= domoticz
|
|
|
|
USERS= domoticz
|
|
GROUPS= domoticz
|
|
|
|
CMAKE_ARGS+= -DCMAKE_INSTALL_PREFIX=${PREFIX}/domoticz \
|
|
-DUSE_BUILTIN_ZLIB="NO" \
|
|
-DUSE_PYTHON="YES" \
|
|
-DUSE_STATIC_OPENZWAVE="NO"
|
|
|
|
.if ${PORT_OPTIONS:MSBOOST}
|
|
CMAKE_ARGS+= -DUSE_STATIC_BOOST="YES"
|
|
BUILD_DEPENDS+= boost-libs>=0:devel/boost-libs \
|
|
boost-python-libs>=0:devel/boost-python-libs
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_STATIC_BOOST="NO"
|
|
LIB_DEPENDS+= libboost_system.so:devel/boost-libs \
|
|
libboost_python.so:devel/boost-python-libs
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSLUA}
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_LUA="YES"
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_LUA="NO"
|
|
USES+= lua:52
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSMQTT}
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_MQTT="YES"
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_MQTT="NO"
|
|
LIB_DEPENDS+= libmosquitto.so:net/mosquitto
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSSQLITE}
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_SQLITE="YES"
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_BUILTIN_SQLITE="NO"
|
|
USES+= sqlite
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPYTHON}
|
|
CMAKE_ARGS+= -DUSE_PYTHON="NO"
|
|
.else
|
|
CMAKE_ARGS+= -DUSE_PYTHON="YES"
|
|
USES+= python
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e "s,\/opt,${PREFIX},g" ${WRKSRC}/CMakeLists.txt
|
|
@${REINPLACE_CMD} -e "s,XXXPREFIXXXX,${PREFIX}/domoticz,g" ${WRKSRC}/CMakeLists.txt
|
|
@${REINPLACE_CMD} -e "s,XXXDOMOTICZXXX,${DOMOTICZ_REL},g" ${WRKSRC}/appversion.default
|
|
@${REINPLACE_CMD} -e "s,XXXHASHXXX,${GH_TAGNAME},g" ${WRKSRC}/appversion.default
|
|
@${REINPLACE_CMD} -e "s,XXXTIMEXXX,${DOMOTICZ_TS},g" ${WRKSRC}/appversion.default
|
|
@${REINPLACE_CMD} -e "/^ADD_PRECOMPILED_HEADER/ d" ${WRKSRC}/CMakeLists.txt
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}/var/db/domoticz ${STAGEDIR}/var/run/domoticz
|
|
|
|
.include <bsd.port.mk>
|