a3c9a41462
By default apcupsd only passes libs for libusb-compat, this is not sufficient for static builds which also require libusb libs. Fixes: http://autobuild.buildroot.net/results/747/7472fec82983f5b9c2f92578b2b20b746a8d20ae/build-end.log Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
82 lines
2.1 KiB
Makefile
82 lines
2.1 KiB
Makefile
################################################################################
|
|
#
|
|
# apcupsd
|
|
#
|
|
################################################################################
|
|
|
|
APCUPSD_VERSION = 3.14.14
|
|
APCUPSD_SITE = http://downloads.sourceforge.net/project/apcupsd/apcupsd%20-%20Stable/$(APCUPSD_VERSION)
|
|
APCUPSD_LICENSE = GPL-2.0
|
|
APCUPSD_LICENSE_FILES = COPYING
|
|
APCUPSD_CONF_OPTS = --disable-test
|
|
|
|
ifneq ($(BR2_PACKAGE_APCUPSD_MODBUS_USB)$(BR2_PACKAGE_APCUPSD_USB),)
|
|
APCUPSD_CONF_ENV += ac_cv_path_usbcfg=$(STAGING_DIR)/usr/bin/libusb-config
|
|
ifeq ($(BR2_STATIC_LIBS),y)
|
|
APCUPSD_DEPENDENCIES += host-pkgconf
|
|
APCUPSD_CONF_ENV += LIBS="`$(PKG_CONFIG_HOST_BINARY) --libs libusb`"
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_APCSMART),y)
|
|
APCUPSD_CONF_OPTS += --enable-apcsmart
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-apcsmart
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_DUMB),y)
|
|
APCUPSD_CONF_OPTS += --enable-dumb
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-dumb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_MODBUS_USB),y)
|
|
APCUPSD_CONF_OPTS += --enable-modbus-usb
|
|
APCUPSD_DEPENDENCIES = libusb libusb-compat
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-modbus-usb
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_MODBUS),y)
|
|
APCUPSD_CONF_OPTS += --enable-modbus
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-modbus
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_NET),y)
|
|
APCUPSD_CONF_OPTS += --enable-net
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-net
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_PCNET),y)
|
|
APCUPSD_CONF_OPTS += --enable-pcnet
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-pcnet
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_SNMP),y)
|
|
APCUPSD_CONF_OPTS += --enable-snmp
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-snmp
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_APCUPSD_USB),y)
|
|
APCUPSD_CONF_OPTS += --enable-usb
|
|
APCUPSD_DEPENDENCIES = libusb libusb-compat
|
|
else
|
|
APCUPSD_CONF_OPTS += --disable-usb
|
|
endif
|
|
|
|
define APCUPSD_BUILD_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/platforms
|
|
endef
|
|
|
|
define APCUPSD_INSTALL_TARGET_CMDS
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/src DESTDIR=$(TARGET_DIR) install
|
|
$(TARGET_MAKE_ENV) $(MAKE) -C $(@D)/platforms DESTDIR=$(TARGET_DIR) install
|
|
endef
|
|
|
|
$(eval $(autotools-package))
|