mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-30 05:40:06 +00:00
16a06ea402
When feasible do this by adding -D_WANT_SEMUN to CFLAGS or CXXFLAGS. Where this fails due to ports not honoring C*FLAGS, patch using __FreeBSD_version to enable the definition. PR: 224300, 224443 (exp-run) Approved by: portmgr (antoine) Exp-run: antoine Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14137
69 lines
2.1 KiB
Makefile
69 lines
2.1 KiB
Makefile
# Created by: Dmitry Frolov <frol@nov.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= freeipmi
|
|
PORTVERSION= 1.5.7
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= GNU \
|
|
http://ftp.gluster.com/pub/${PORTNAME}/${PORTVERSION}/
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Library and tools to support IPMI-capable hardware
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BROKEN_aarch64= invokes x86 assembler
|
|
BROKEN_armv6= invokes x86 assembler
|
|
BROKEN_armv7= invokes x86 assembler
|
|
BROKEN_mips= invokes x86 assembler
|
|
BROKEN_mips64= invokes x86 assembler
|
|
BROKEN_sparc64= invokes x86 assembler
|
|
BROKEN_powerpc64= invokes x86 assembler
|
|
|
|
LIB_DEPENDS= libargp.so:devel/argp-standalone \
|
|
libgcrypt.so:security/libgcrypt
|
|
|
|
OPTIONS_DEFINE= DEBUG DOCS IOPERM
|
|
IOPERM_DESC= Use i386_set_ioperm
|
|
|
|
CONFIGURE_ARGS= --disable-init-scripts \
|
|
--sysconfdir=${ETCDIR} \
|
|
--with-ipmi-monitoring-sdr-cache-dir=${CACHE_DIR}/ipmimonitoringsdrcache \
|
|
--with-ipmiseld-cache-dir=${CACHE_DIR}/ipmiseld \
|
|
--with-pkgconfig-dir=${PREFIX}/libdata/pkgconfig
|
|
CONFIGURE_ENV= PTHREAD_LIBS=-lpthread ac_cv_path_CPP=${CPP}
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
USES= gmake libtool localbase shebangfix
|
|
CFLAGS+= -D_WANT_SEMUN
|
|
|
|
INFO= freeipmi-faq
|
|
PLIST_SUB= CACHE_DIR=${CACHE_DIR}
|
|
PORTDOCS= *
|
|
|
|
CACHE_DIR?= /var/db/${PORTNAME}
|
|
|
|
SHEBANG_FILES= contrib/ganglia/ganglia_ipmi_sensors.pl \
|
|
contrib/nagios/nagios_ipmi_sensors.pl \
|
|
contrib/pet/check_rmcpping \
|
|
contrib/pet/petalert.pl
|
|
|
|
DEBUG_CONFIGURE_ARGS= --enable-debug --enable-trace
|
|
DEBUG_INSTALL_TARGET= install
|
|
DEBUG_INSTALL_TARGET_OFF= install-strip
|
|
IOPERM_CPPFLAGS= -DUSE_IOPERM
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name '*.man' -o -name '*.pre.in' | ${XARGS} -I % ${REINPLACE_CMD} -e '/^\.\\\"/ s|$$|"|' %
|
|
@${REINPLACE_CMD} \
|
|
-e '/^FREEIPMI_SYSCONFDIR/ s|/freeipmi/$$||' \
|
|
-e '/FREEIPMI_CONFIG_FILE_DEFAULT_TMP1=/ s|freeipmi.conf|&.sample|' \
|
|
${WRKSRC}/configure
|
|
@${REINPLACE_CMD} -e 's|\($$(LN_S) -f \)$$(sbindir)/|\1|' ${WRKSRC}/*/Makefile.in
|
|
|
|
post-install:
|
|
${MKDIR} -m 0700 -p ${STAGEDIR}${CACHE_DIR}/ipmimonitoringsdrcache/ ${STAGEDIR}${CACHE_DIR}/ipmiseld/ ${STAGEDIR}/var/lib/freeipmi/ ${STAGEDIR}/var/run/freeipmi/
|
|
|
|
.include <bsd.port.mk>
|