mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
dec6e359e2
- Pass maintainership to submitter for original maintainer email is not valid anymore PR: ports/132559 Submitted by: Steve Polyack <spolyack AT collaborativefusion.com> Approved by: maintainer timeout
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# New ports collection makefile for: ipmitool
|
|
# Date created: 25/Oct/2004
|
|
# Whom: Dmitry Frolov <frol@nov.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ipmitool
|
|
PORTVERSION= 1.8.11
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= spolyack@collaborativefusion.com
|
|
COMMENT= CLI to manage IPMI systems
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_OPENSSL= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --enable-intf-lan --enable-intf-lanplus \
|
|
--disable-intf-imb --disable-intf-lipmi --disable-intf-bmc
|
|
CONFIGURE_ENV+= CC="${CC}" CFLAGS="${CFLAGS}" CPPFLAGS="${CPPFLAGS}" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
PLIST_FILES= bin/ipmitool sbin/ipmievd share/ipmitool/oem_ibm_sel_map
|
|
PLIST_DIRS= share/ipmitool
|
|
PORTDOCS= AUTHORS COPYING ChangeLog README
|
|
|
|
MAN1+= ${PORTNAME}.1
|
|
MAN8+= ipmievd.8
|
|
|
|
.if defined(WITH_DEBUG)
|
|
CFLAGS+= -ggdb -Wall
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if exists(/usr/include/sys/ipmi.h)
|
|
CONFIGURE_ARGS+= --enable-intf-open
|
|
.elif defined(WITH_IPMI_KMOD) || \
|
|
exists(${LOCALBASE}/include/sys/ipmi.h)
|
|
BUILD_DEPENDS+= ${LOCALBASE}/include/sys/ipmi.h:${PORTSDIR}/sysutils/ipmi-kmod
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
CONFIGURE_ARGS+= --enable-intf-open
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-intf-open
|
|
.endif
|
|
|
|
.if defined(WITH_FREEIPMI) || \
|
|
(exists(${LOCALBASE}/include/freeipmi/freeipmi.h) && \
|
|
!defined(WITHOUT_FREEIPMI))
|
|
LIB_DEPENDS+= freeipmi:${PORTSDIR}/sysutils/freeipmi
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
CONFIGURE_ARGS+= --enable-intf-free
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-intf-free
|
|
.endif
|
|
|
|
.if defined(NOPORTDOCS)
|
|
EXTRA_PATCHES+= ${PATCHDIR}/extra-patch-Makefile.in
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|