337aa51f3f
We want to use SPDX identifier for license string as much as possible. SPDX short identifier for GPLv3/GPLv3+ is GPL-3.0/GPL-3.0+. This change is done using following command. find . -name "*.mk" | xargs sed -ri '/LICENSE( )?[\+:]?=/s/\<GPLv3\>/GPL-3.0/g' Signed-off-by: Rahul Bedarkar <rahulbedarkar89@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
94 lines
3.3 KiB
Makefile
94 lines
3.3 KiB
Makefile
################################################################################
|
|
#
|
|
# domoticz
|
|
#
|
|
################################################################################
|
|
|
|
DOMOTICZ_VERSION = 3.5877
|
|
DOMOTICZ_SITE = $(call github,domoticz,domoticz,$(DOMOTICZ_VERSION))
|
|
DOMOTICZ_LICENSE = GPL-3.0
|
|
DOMOTICZ_LICENSE_FILES = License.txt
|
|
DOMOTICZ_DEPENDENCIES = \
|
|
boost \
|
|
host-pkgconf \
|
|
libcurl \
|
|
lua \
|
|
mosquitto \
|
|
openssl \
|
|
sqlite \
|
|
zlib
|
|
|
|
# Fixes:
|
|
# http://autobuild.buildroot.org/results/454c0ea393615bae2d1b44be9920f25b5c49fc33
|
|
# There is an issue with powerpc64le and boost::uuids::random_generator on the
|
|
# following line of code (from include/boost/uuid/seed_rng.hpp):
|
|
# sha.process_bytes( (unsigned char const*)&std::rand, sizeof( void(*)() ) )
|
|
# This line "inspects the first couple bytes (here eight) of the std::rand
|
|
# function to seed some rng. Due to the implementation of process_bytes and
|
|
# inlining happening, it seems that one of the loops therein uses &rand-1 as
|
|
# some boundary, compiling with -O0 makes that reloc come out as 'rand + 0' and
|
|
# the link will succeed."
|
|
# See: https://bugzilla.suse.com/show_bug.cgi?id=955832#c7
|
|
ifeq ($(BR2_powerpc64le),y)
|
|
DOMOTICZ_CXXFLAGS += -O0
|
|
endif
|
|
|
|
# Due to the dependency on mosquitto, domoticz depends on
|
|
# !BR2_STATIC_LIBS so set USE_STATIC_BOOST to OFF
|
|
DOMOTICZ_CONF_OPTS += -DUSE_STATIC_BOOST=OFF
|
|
|
|
# Do not use any built-in libraries which are enabled by default for
|
|
# lua, sqlite and mqtt
|
|
DOMOTICZ_CONF_OPTS += \
|
|
-DUSE_BUILTIN_LUA=OFF \
|
|
-DUSE_BUILTIN_SQLITE=OFF \
|
|
-DUSE_BUILTIN_MQTT=OFF \
|
|
-DCMAKE_CXX_FLAGS="$(TARGET_CXXFLAGS) $(DOMOTICZ_CXXFLAGS)"
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
|
DOMOTICZ_DEPENDENCIES += libusb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENZWAVE),y)
|
|
DOMOTICZ_DEPENDENCIES += openzwave
|
|
|
|
# Due to the dependency on mosquitto, domoticz depends on
|
|
# !BR2_STATIC_LIBS so set USE_STATIC_OPENZWAVE to OFF otherwise
|
|
# domoticz will not find the openzwave library as it searches by
|
|
# default a static library.
|
|
DOMOTICZ_CONF_OPTS += -DUSE_STATIC_OPENZWAVE=OFF
|
|
endif
|
|
|
|
# Install domoticz in a dedicated directory (/opt/domoticz) as
|
|
# domoticz expects by default that all its subdirectories (www,
|
|
# Config, scripts, ...) are in the binary directory.
|
|
DOMOTICZ_TARGET_DIR = /opt/domoticz
|
|
DOMOTICZ_CONF_OPTS += -DCMAKE_INSTALL_PREFIX=$(DOMOTICZ_TARGET_DIR)
|
|
|
|
# Delete License.txt and updatedomo files installed by domoticz in target
|
|
# directory
|
|
# Do not delete History.txt as it is used in source code
|
|
define DOMOTICZ_REMOVE_UNNEEDED_FILES
|
|
$(RM) $(TARGET_DIR)/$(DOMOTICZ_TARGET_DIR)/License.txt
|
|
$(RM) $(TARGET_DIR)/$(DOMOTICZ_TARGET_DIR)/updatedomo
|
|
endef
|
|
|
|
DOMOTICZ_POST_INSTALL_TARGET_HOOKS += DOMOTICZ_REMOVE_UNNEEDED_FILES
|
|
|
|
# Use dedicated init scripts for systemV and systemd instead of using
|
|
# domoticz.sh as it is not compatible with buildroot init system
|
|
define DOMOTICZ_INSTALL_INIT_SYSV
|
|
$(INSTALL) -D -m 0755 package/domoticz/S99domoticz \
|
|
$(TARGET_DIR)/etc/init.d/S99domoticz
|
|
endef
|
|
|
|
define DOMOTICZ_INSTALL_INIT_SYSTEMD
|
|
$(INSTALL) -D -m 644 package/domoticz/domoticz.service \
|
|
$(TARGET_DIR)/usr/lib/systemd/system/domoticz.service
|
|
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
|
|
ln -sf ../../../../usr/lib/systemd/system/domoticz.service \
|
|
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/domoticz.service
|
|
endef
|
|
|
|
$(eval $(cmake-package))
|