freebsd-ports/sysutils/ipmi-kmod/Makefile
Boris Samorodov 2440286e7d - more recent snapshot of the code from -current, containing much new code
recently committed;
- the port will no longer build on FreeBSD 6-stable for versions after ipmi
  was MFC'd into the base system.

PR:		103708
Submitted by:	Nick Barkas <snb at threerings.net> (maintainer)
2006-09-27 15:18:37 +00:00

54 lines
1.2 KiB
Makefile

# Ports collection makefile for: ipmi-kmod
# Date created: 18 April 2006
# Whom: Nick Barkas <snb@threerings.net>
#
# $FreeBSD$
#
PORTNAME= ipmi-kmod
PORTVERSION= 20060926
CATEGORIES= sysutils
MASTER_SITES= http://dpw.threerings.net/projects/ipmi-kmod/
MAINTAINER= snb@threerings.net
COMMENT= Backport of ipmi driver from FreeBSD 7-CURRENT for FreeBSD 5.3 - 6.1
SUB_FILES= pkg-install pkg-deinstall
SUB_LIST+= KMODDIR=${KMODDIR}
PLIST_FILES= include/sys/ipmi.h \
"@dirrm include/sys" \
"@cwd /" \
${KMODDIR:C,^/,,}/ipmi.ko \
# We want to install the module in /boot/modules rather than /boot/kernel
KMODDIR= /boot/modules
.include <bsd.port.pre.mk>
ONLY_FOR_ARCHS= i386 amd64
# Don't strip module on amd64 systems
.if ${ARCH} == "amd64"
STRIP=
.endif
.if !exists(${SRC_BASE}/sys/Makefile)
IGNORE= requires kernel source to be installed
.endif
.if ${OSVERSION} >= 601102
IGNORE= already in the base system
.elif ${OSVERSION} < 503000
IGNORE= does not support FreeBSD before 5.3
.endif
do-install:
@${MKDIR} ${PREFIX}/include/sys
${INSTALL_DATA} ${WRKSRC}/sys/ipmi.h ${PREFIX}/include/sys
${INSTALL_PROGRAM} ${WRKSRC}/ipmi.ko ${DESTDIR}${KMODDIR}
post-install:
@${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL
.include <bsd.port.post.mk>