c81681ad85
I *really* dislike how newapc changed from supporting INFO_RUNTIME (runtime in minutes, which is what the UPS actually reports) to INFO_BATT_RUNTIME (runtime in seconds, which is UPS result * 60), because the latter is much less useful as a realistic guess (IMHO), and because this broke my upslog format and ups monitoring stuff that used '%VAR runtime'. (Unfortunately, newapc is written in a way which precludes supporting multiple results from the same 'UPS status code' (in this case `j'), so we can't support both results at this time. I decided that INFO_RUNTIME is more useful, because '81' (minutes) is easier to "use" than '4860' (seconds))
75 lines
2.3 KiB
Makefile
75 lines
2.3 KiB
Makefile
# $NetBSD: Makefile,v 1.26 2002/12/31 22:47:05 lukem Exp $
|
|
#
|
|
|
|
DISTNAME= nut-1.2.1
|
|
PKGNAME= ups-nut-1.2.1
|
|
PKGREVISION= 1
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://www.exploits.org/nut/release/1.2/
|
|
|
|
MAINTAINER= lukem@netbsd.org
|
|
HOMEPAGE= http://www.exploits.org/nut/
|
|
COMMENT= Network UPS Tools
|
|
|
|
USE_BUILDLINK2= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS+= --sysconfdir=${NUT_CONFDIR} \
|
|
--with-user=${NUT_USER} \
|
|
--with-group=${NUT_GROUP} \
|
|
--with-statepath=${NUT_STATEDIR} \
|
|
--with-drvpath=${LOCALBASE}/sbin/ups-drivers
|
|
|
|
PKG_SYSCONFSUBDIR?= nut
|
|
NUT_CONFDIR= ${PKG_SYSCONFDIR}
|
|
NUT_DOCDIR= ${PREFIX}/share/doc/nut
|
|
NUT_EGDIR= ${PREFIX}/share/examples/nut
|
|
NUT_STATEDIR= /var/db/nut
|
|
|
|
NUT_USER?= nut
|
|
NUT_GROUP?= nut
|
|
|
|
FILES_SUBST+= NUT_CONFDIR=${NUT_CONFDIR}
|
|
FILES_SUBST+= NUT_STATEDIR=${NUT_STATEDIR}
|
|
|
|
MESSAGE_SUBST+= NUT_CONFDIR=${NUT_CONFDIR}
|
|
MESSAGE_SUBST+= NUT_EGDIR=${NUT_EGDIR}
|
|
MESSAGE_SUBST+= NUT_DOCDIR=${NUT_DOCDIR}
|
|
|
|
PKG_GROUPS= ${NUT_GROUP}
|
|
PKG_USERS= ${NUT_USER}:${NUT_GROUP}::Network\\ UPS\\ Tools::${SH}
|
|
|
|
CONF_FILES= ${NUT_EGDIR}/ups.conf.sample ${NUT_CONFDIR}/ups.conf
|
|
CONF_FILES+= ${NUT_EGDIR}/upssched.conf.sample \
|
|
${NUT_CONFDIR}/upssched.conf
|
|
|
|
CONF_FILES_PERMS= ${NUT_EGDIR}/upsd.conf.sample \
|
|
${NUT_CONFDIR}/upsd.conf \
|
|
${ROOT_USER} ${ROOT_GROUP} 0600
|
|
CONF_FILES_PERMS+= ${NUT_EGDIR}/upsd.users.sample \
|
|
${NUT_CONFDIR}/upsd.users \
|
|
${ROOT_USER} ${ROOT_GROUP} 0600
|
|
CONF_FILES_PERMS+= ${NUT_EGDIR}/upsmon.conf.sample \
|
|
${NUT_CONFDIR}/upsmon.conf \
|
|
${ROOT_USER} ${ROOT_GROUP} 0600
|
|
RCD_SCRIPTS= ups upsd upsdriver upslog upsmon
|
|
|
|
OWN_DIRS= ${NUT_CONFDIR}
|
|
OWN_DIRS_PERMS= ${NUT_STATEDIR} ${NUT_USER} ${NUT_GROUP} 0770
|
|
|
|
pre-install:
|
|
@${INSTALL_DATA_DIR} ${NUT_EGDIR}
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${NUT_DOCDIR}
|
|
${INSTALL_DATA_DIR} ${NUT_DOCDIR}/cables ${NUT_DOCDIR}/drivers
|
|
for f in CHANGES COPYING CREDITS NEWS README UPGRADING; do \
|
|
${INSTALL_DATA} ${WRKSRC}/$$f ${NUT_DOCDIR}; \
|
|
done
|
|
${INSTALL_DATA} ${WRKSRC}/docs/FAQ ${NUT_DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/driver.list ${NUT_DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${NUT_DOCDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/docs/cables/*.txt ${NUT_DOCDIR}/cables
|
|
${INSTALL_DATA} ${WRKSRC}/docs/drivers/*.txt ${NUT_DOCDIR}/drivers
|
|
|
|
.include "../../mk/bsd.pkg.install.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|