blob: 55b5cae005a0f5d106ac8821ea503721f935e3c5 (
plain)
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
|
# New ports collection makefile for: upsmon
# Date created: 5 Oct 1998
# Whom: Igor Vinokurov <igor@zynaps.ru>
#
# $FreeBSD$
#
PORTNAME= upsmon
PORTVERSION= 2.1.3
CATEGORIES= sysutils
MASTER_SITES= ftp://newcorridor.com/pub/upsmon/
MAINTAINER= ports@FreeBSD.org
COMMENT= Basic UPS monitor for the APC SmartUPS devices
MAKEFILE= makefile.bsdi
RESTRICTED= "must provide without modifications"
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/upsstat ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/upsmond ${PREFIX}/sbin
${SED} -e 's#!!PREFIX!!#${PREFIX}#g' ${FILESDIR}/upsmon.sh \
> ${PREFIX}/etc/rc.d/upsmon.sh
@${CHMOD} +x ${PREFIX}/etc/rc.d/upsmon.sh
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@${INSTALL_DATA} ${WRKSRC}/INSTALL ${DOCSDIR}
.endif
post-install:
${SED} -e 's#/usr/local#${PREFIX}#' ${PKGMESSAGE}
.include <bsd.port.mk>
|