blob: 7ba816942c7377149b2423c9f747bb186aae6228 (
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
|
# New ports collection makefile for: ataidle
# Date created: 2004-01-11
# Whom: Bruce Cran <bruce@cran.org.uk>
#
# $FreeBSD$
#
PORTNAME= ataidle
PORTVERSION= 2.4
CATEGORIES= sysutils
MASTER_SITES= http://www.cran.org.uk/bruce/software/
MAINTAINER= bruce@cran.org.uk
COMMENT= Utility to spin down ATA drives
USE_RC_SUBR= ${PORTNAME}
MAN8= ataidle.8
PORTDOCS= COPYING Changelog README
PLIST_FILES= sbin/ataidle
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/ataidle ${PREFIX}/sbin
${INSTALL_MAN} ${WRKSRC}/ataidle.8 ${MAN8PREFIX}/man/man8
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
post-install:
@${CAT} ${PKGMESSAGE}
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 600034
IGNORE= requires FreeBSD 6.1 or newer
.endif
.include <bsd.port.post.mk>
|