blob: 63a63033abcc27a36c156278a77b5660d8686144 (
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
|
# New ports collection makefile for: powerman
# Date created: 29 March 2004
# Whom: Greg Lewis <glewis@FreeBSD.org>
#
# $FreeBSD$
PORTNAME= powerman
PORTVERSION= 1.0.20
PORTREVISION= 1
CATEGORIES= sysutils parallel
MASTER_SITES= ftp://ftp.llnl.gov/pub/linux/powerman/
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= PowerMan is a tool for doing remote power control
USE_BISON= build
USE_GMAKE= yes
USE_RC_SUBR= yes
MAKE_ENV+= LDFLAGS="${LDFLAGS}" CPPFLAGS="${CPPFLAGS}" \
PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
PTHREAD_LIBS="${PTHREAD_LIBS}"
MAN1= powerman.1
MAN5= powerman.conf.5
MAN7= powerman-devices.7
MAN8= powermand.8
post-patch:
.for file in ${MAN1} ${MAN5} powermand.1
@${REINPLACE_CMD} -e "s:%%PREFIX%%:${PREFIX}:" "${WRKSRC}/man/${file}"
.endfor
@${REINPLACE_CMD} -e "s:%%PREFIX%%:${PREFIX}:" \
"${WRKSRC}/src/powerman.h"
@${REINPLACE_CMD} -e "s:%%PREFIX%%:${PREFIX}:" \
-e "s:%%RC_SUBR%%:${RC_SUBR}:" \
"${WRKSRC}/scripts/powerman.init"
.include <bsd.port.mk>
|