6f5451096b
https://lists.gnu.org/archive/html/freeipmi-announce/2024-01/msg00001.html
https://lists.gnu.org/archive/html/freeipmi-announce/2024-01/msg00000.html
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 38db0df41a
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
35 lines
1.2 KiB
Makefile
35 lines
1.2 KiB
Makefile
################################################################################
|
|
#
|
|
# freeipmi
|
|
#
|
|
################################################################################
|
|
|
|
FREEIPMI_VERSION = 1.6.14
|
|
FREEIPMI_SITE = https://ftp.gnu.org/gnu/freeipmi
|
|
FREEIPMI_LICENSE = GPL-3.0+, BSD-like (sunbmc)
|
|
FREEIPMI_LICENSE_FILES = \
|
|
COPYING COPYING.bmc-watchdog COPYING.ipmiconsole COPYING.ipmi-dcmi \
|
|
COPYING.ipmidetect COPYING.ipmi-fru COPYING.ipmimonitoring \
|
|
COPYING.ipmiping COPYING.ipmipower COPYING.ipmiseld COPYING.pstdout \
|
|
COPYING.sunbmc COPYING.ZRESEARCH
|
|
FREEIPMI_DEPENDENCIES = host-pkgconf
|
|
FREEIPMI_INSTALL_STAGING = YES
|
|
# Disable checking for /dev/urandom and /dev/random through AC_CHECK_FILE
|
|
FREEIPMI_CONF_OPTS = --without-random-device
|
|
|
|
# Work around for uClibc or musl toolchains which lack argp_*()
|
|
# functions.
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE),y)
|
|
FREEIPMI_DEPENDENCIES += argp-standalone $(TARGET_NLS_DEPENDENCIES)
|
|
FREEIPMI_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
|
FREEIPMI_CONF_OPTS += --with-encryption
|
|
FREEIPMI_DEPENDENCIES += libgcrypt
|
|
else
|
|
FREEIPMI_CONF_OPTS += --without-encryption
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|