aboutsummaryrefslogtreecommitdiff
path: root/sysutils/amrstat/Makefile
blob: 580360dea12c9d55d7b76694e9e0dffb7dcc3ee0 (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
56
57
58
59
60
61
62
# Ports collection makefile for:  amrstat
# Date created:                   2006-04-11
# Whom:                           "Bjoern A. Zeeb" <bzeeb+freebsd+ports@zabbadoz.net>
#
# $FreeBSD$
#

PORTNAME=	amrstat
PORTVERSION=	20060414
CATEGORIES=	sysutils
MASTER_SITES=	http://people.freebsd.org/~jkim/
DISTNAME=	${PORTNAME}-${PORTVERSION}

MAINTAINER=	bzeeb+freebsd+ports@zabbadoz.net
COMMENT=	Utility for LSI Logic's MegaRAID RAID controllers

OPTIONS=	MEGARC "Also install LSI megarc binary port.." off

.include <bsd.port.pre.mk>

.if ${OSVERSION} < 600105
IGNORE=	does not build on FreeBSD 6.0 or earlier
.endif

# We may want this for periodic script and to actually be able
# to fix something in case amrstat reports degraded RAID.
.if defined(WITH_MEGARC)
RUN_DEPENDS=	${LOCALBASE}/sbin/megarc:${PORTSDIR}/sysutils/megarc
.endif

USRSRC?=	/usr/src
SYSDIR=		${USRSRC}/sys
AMRSRC=		${SYSDIR}/dev/amr

MAKE_ENV=	SYSDIR=${SYSDIR}
ALL_TARGET=	${PORTNAME}

LOCALSRCDIR=	${.CURDIR}/files
PERIODICSCRIPT=	407.status-amr-raid

NO_WRKSUBDIR=	yes

SUB_FILES+=	${PERIODICSCRIPT}

post-extract:
	@if [ ! -d ${AMRSRC} ]; then \
		${ECHO} "=================================================="; \
		${ECHO} "You need amr(4) sources in"; \
		${ECHO} "    ${AMRSRC}"; \
		${ECHO} "to build this port."; \
		${ECHO} "If your sources are not in ${USRSRC} set USRSRC."; \
		${ECHO} "=================================================="; \
		exit 1; \
	fi
	${RM} -f ${WRKSRC}/amrstat

do-install:
	${INSTALL_PROGRAM} ${WRKSRC}/amrstat ${PREFIX}/sbin
	${INSTALL_SCRIPT} -d ${PREFIX}/etc/periodic/daily
	${INSTALL_SCRIPT} ${WRKDIR}/${PERIODICSCRIPT} ${PREFIX}/etc/periodic/daily

.include <bsd.port.post.mk>