Ipmitool is a utility for managing and configuring devices that support the "Intelligent Platform Management Interface". IPMI is an open standard for monitoring, logging, recovery, inventory, and control of hardware that is implemented independent of the main CPU, BIOS, and OS. The service processor (or Baseboard Management Controller, BMC) is the brain behind platform management and its primary purpose is to handle the autonomous sensor monitoring and event logging features. The ipmitool program provides a simple command-line interface to this BMC. It features the ability to read the sensor data repository (SDR) and print sensor values, display the contents of the System Event Log (SEL), print Field Replaceable Unit (FRU) inventory information, read and set LAN configuration parameters, and perform remote chassis power control.
25 lines
791 B
Makefile
25 lines
791 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/03/13 23:03:28 heinz Exp $
|
|
#
|
|
|
|
DISTNAME= ipmitool-1.8.6
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=ipmitool/}
|
|
|
|
MAINTAINER= heinz@NetBSD.org
|
|
HOMEPAGE= http://ipmitool.sourceforge.net/
|
|
COMMENT= Command-line utility for managing IPMI devices
|
|
|
|
PKG_INSTALLATION_TYPES= overwrite pkgviews
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_GNU_READLINE= yes # ipmitool uses rl_event_hook
|
|
INSTALLATION_DIRS+= share/ipmitool doc/ipmitool
|
|
|
|
OPSYSVARS+= CONFIGURE_ARGS
|
|
CONFIGURE_ARGS.NetBSD+= --disable-intf-open --disable-intf-imb
|
|
CONFIGURE_ARGS.DragonFly+= --disable-intf-open --disable-intf-imb
|
|
CONFIGURE_ARGS.SunOS+= --enable-solaris-opt
|
|
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|