74c5081467
Some changes in addition to the version bump: - The uint32_t patch is now upstream - Drop --no-glib12 flag as support was removed in 2.0.23 - The host library path patch was refreshed Signed-off-by: Joel Stanley <joel@jms.id.au> Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de> [Arnout: remove uint32_t patch from hash file] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
42 lines
1.1 KiB
Makefile
42 lines
1.1 KiB
Makefile
################################################################################
|
|
#
|
|
# openipmi
|
|
#
|
|
################################################################################
|
|
|
|
OPENIPMI_VERSION = 2.0.24
|
|
OPENIPMI_SITE = http://sourceforge.net/projects/openipmi/files/OpenIPMI%202.0%20Library
|
|
OPENIPMI_SOURCE = OpenIPMI-$(OPENIPMI_VERSION).tar.gz
|
|
OPENIPMI_LICENSE = LGPL-2.0+, GPL-2.0+, BSD-3-Clause
|
|
OPENIPMI_LICENSE_FILES = COPYING.LIB COPYING COPYING.BSD
|
|
OPENIPMI_DEPENDENCIES = popt ncurses host-pkgconf
|
|
# Patching Makefile.am
|
|
OPENIPMI_AUTORECONF = YES
|
|
OPENIPMI_CONF_ENV = ac_cv_path_pkgprog="$(PKG_CONFIG_HOST_BINARY)"
|
|
OPENIPMI_CONF_OPTS = \
|
|
--with-glib=no \
|
|
--with-tcl=no \
|
|
--with-perl=no \
|
|
--with-python=no \
|
|
--with-swig=no
|
|
|
|
ifeq ($(BR2_PACKAGE_GDBM),y)
|
|
OPENIPMI_DEPENDENCIES += gdbm
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_OPENSSL),y)
|
|
OPENIPMI_DEPENDENCIES += openssl
|
|
OPENIPMI_CONF_OPTS += --with-openssl=yes
|
|
else
|
|
OPENIPMI_CONF_OPTS += --with-openssl=no
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_NETSNMP),y)
|
|
OPENIPMI_DEPENDENCIES += netsnmp
|
|
OPENIPMI_CONF_OPTS += --with-ucdsnmp=yes
|
|
else
|
|
OPENIPMI_CONF_OPTS += --with-ucdsnmp=no
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|