aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils/ipmi-kmod/Makefile
blob: 899f2baa0eb240371a1c2fc2593a9d69f1bf05f8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Ports collection makefile for: ipmi-kmod
# Date created: 18 April 2006
# Whom:         Nick Barkas <snb@threerings.net>
#
# $FreeBSD$
#

PORTNAME=   ipmi-kmod
PORTVERSION=    20060926
PORTREVISION=   1
CATEGORIES= sysutils kld
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

.if !exists(${SRC_BASE}/sys/Makefile)
IGNORE=     requires kernel source to be installed
.endif

.if exists(${SRC_BASE}/sys/dev/ipmi)
IGNORE=     is already included in the base system
.elif ${OSVERSION} < 503000
IGNORE=     does not support FreeBSD before 5.3
.endif

# Need to include this extra path on 5.x.
.if ${OSVERSION} < 600000
CFLAGS+=    -I@/contrib/dev/acpica
.endif

do-install:
    @${MKDIR} ${PREFIX}/include/sys
    ${INSTALL_DATA} ${WRKSRC}/sys/ipmi.h ${PREFIX}/include/sys
    ${INSTALL_KLD} ${WRKSRC}/ipmi.ko ${KMODDIR}

post-install:
    @${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL

.include <bsd.port.post.mk>