2010-02-19 00:14:01 +00:00
|
|
|
# Copyright (C) 2008-2010, OpenWrt.org
|
2008-11-09 15:47:42 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=ipmitool
|
2009-07-12 12:32:03 +00:00
|
|
|
PKG_VERSION:=1.8.11
|
2010-02-19 00:14:01 +00:00
|
|
|
PKG_RELEASE:=2
|
2008-11-09 15:47:42 +00:00
|
|
|
|
2009-07-12 12:32:03 +00:00
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
2008-11-09 15:47:42 +00:00
|
|
|
PKG_SOURCE_URL:=@SF/ipmitool
|
2009-07-12 12:32:03 +00:00
|
|
|
PKG_MD5SUM:=1d0da20add7388d64c549f95538b6858
|
2008-11-09 15:47:42 +00:00
|
|
|
|
2012-06-11 21:18:33 +00:00
|
|
|
PKG_FIXUP:=autoreconf
|
2010-02-19 00:14:01 +00:00
|
|
|
|
2008-11-09 15:47:42 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/ipmitool
|
|
|
|
SECTION:=utils
|
|
|
|
CATEGORY:=Utilities
|
2012-06-13 00:22:17 +00:00
|
|
|
DEPENDS:=+libopenssl +libncurses +libreadline
|
2008-11-09 15:47:42 +00:00
|
|
|
TITLE:=IPMI remote computer management utility
|
|
|
|
URL:=http://ipmitool.sourceforge.net/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/ipmitool/description
|
|
|
|
IPMItool is a utility for managing and configuring devices
|
|
|
|
that support the Intelligent Platform Management Interface
|
|
|
|
(IPMI) version 1.5 and version 2.0 specifications.
|
|
|
|
endef
|
|
|
|
|
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-static=no \
|
|
|
|
--enable-internal-md5 \
|
|
|
|
--enable-intf-lan=yes \
|
|
|
|
--enable-intf-lanplus=no \
|
|
|
|
--enable-intf-free=no \
|
|
|
|
--enable-intf-open=no \
|
|
|
|
--enable-intf-imb=no \
|
|
|
|
--enable-intf-lipmi=no \
|
|
|
|
--enable-intf-bmc=no
|
|
|
|
|
|
|
|
define Package/ipmitool/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/sbin
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/src/ipmitool $(1)/usr/sbin/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,ipmitool))
|
|
|
|
|