freebsd-ports/sysutils/nut/Makefile
Sergey Matveychuk 02b7132e84 - Update to 2.0.2
- Make the port as master for soon-coming new ports
- Resort MASTER_SITES
- Homour portlint
- Improve rcNG script
- New maintainer

PR:		ports/83318
Submitted by:	Joerg Pulz <Joerg.Pulz@frm2.tum.de>
Approved by:	DougB
2005-07-14 08:21:12 +00:00

136 lines
3.9 KiB
Makefile

# New ports collection makefile for: nut
# Date created: 08 Jan 2000
# Whom: Boris Popov <bp@freebsd.org>
#
# $FreeBSD$
#
PORTNAME= nut
PORTVERSION= 2.0.2
CATEGORIES= sysutils
MASTER_SITES= http://eu1.networkupstools.org/source/${PORTVERSION:R}/ \
http://us1.networkupstools.org/source/${PORTVERSION:R}/
DISTFILES= ${DISTNAME}${EXTRACT_SUFX} ${DISTNAME}${EXTRACT_SUFX}.sig
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
MAINTAINER= Joerg.Pulz@frm2.tum.de
COMMENT?= Network UPS Tools
SUBSYS?= base
.if ${SUBSYS} != base
PKGNAMESUFFIX= -${SUBSYS}
.endif
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --sysconfdir=${PREFIX}/etc/nut \
--localstatedir=${STATEDIR} \
--datadir=${PREFIX}/etc/nut \
--with-drvpath=${PREFIX}/libexec/nut \
--with-statepath=${STATEDIR} \
--with-altpidpath=${STATEDIR} \
--with-pidpath=${STATEDIR} \
--with-linux-hiddev=no
USE_RC_SUBR= yes
STATEDIR= ${DESTDIR}/var/db/nut
.include <bsd.port.pre.mk>
.if ${SUBSYS} == base
MAN5= ups.conf.5 upsd.conf.5 upsd.users.5 upsmon.conf.5 \
upssched.conf.5
MAN8= apcsmart.8 bcmxcp.8 belkin.8 belkinunv.8 bestuferrups.8 \
bestups.8 bestfcom.8 cpsups.8 cyberpower.8 etapro.8 everups.8 \
fentonups.8 genericups.8 ippon.8 isbmex.8 liebert.8 \
masterguard.8 metasys.8 mge-shut.8 mge-utalk.8 mustek.8 \
nutupsdrv.8 oneac.8 powercom.8 powermust.8 safenet.8 sms.8 \
solis.8 tripplite.8 tripplitesu.8 upsc.8 upscmd.8 upscode2.8 \
upsd.8 upsdrvctl.8 upslog.8 upsmon.8 upsrw.8 upssched.8 \
victronups.8
ALL_TARGET= all
INSTALL_TARGET= install install-conf
.if defined(WITH_NUT_CGI)
LIB_DEPENDS= gd.4:${PORTSDIR}/graphics/gd
ALL_TARGET+= cgi
INSTALL_TARGET+=install-cgi install-cgi-conf
MAN5+= hosts.conf.5 upsset.conf.5 upsstats.html.5
MAN8+= upsset.cgi.8 upsstats.cgi.8 upsimage.cgi.8
.if !exists(${PREFIX}/www) && exists(${PREFIX}/share/apache)
CGIDIR?= share/apache/cgi-bin
.else
CGIDIR?= www/cgi-bin
.endif
CONFIGURE_ARGS+= --with-cgi --with-cgipath=${PREFIX}/${CGIDIR}/nut \
--with-gd-includes=-I${PREFIX}/include \
--with-gd-libs="-L${PREFIX}/lib -lgd"
PLIST_SUB+= CGIFILES="${CGIDIR}/nut/"
PLIST_SUB+= CGIDIRRM="@dirrm ${CGIDIR}/nut"
PLIST_SUB+= CGIETC="etc/nut/"
.else
PLIST_SUB+= CGIFILES="@comment "
PLIST_SUB+= CGIDIRRM="@comment "
PLIST_SUB+= CGIETC="@comment "
.endif
.endif
.if ${SUBSYS} == usb
LIB_DEPENDS= usb-0.1.8:${PORTSDIR}/devel/libusb
ALL_TARGET= usb
INSTALL_TARGET= install-usb
MAN8= newhidups.8
.endif
.if ${SUBSYS} == snmp
LIB_DEPENDS= netsnmp.7:${PORTSDIR}/net-mgmt/net-snmp
ALL_TARGET= snmp
INSTALL_TARGET= install-snmp
MAN8= snmp-ups.8
.endif
.if ${SUBSYS} == libupsclient
CONFIGURE_ARGS+= --enable-pkg-config \
--with-pkgconfig-dir=${PREFIX}/libdata/pkgconfig
ALL_TARGET= lib
INSTALL_TARGET= install-lib
MAN3= upscli_connect.3 upscli_disconnect.3 upscli_readline.3 \
upscli_sendline.3 upscli_splitname.3 upscli_strerror.3
post-patch:
@${REINPLACE_CMD} -e "s#@PKG_CFG_DIR@#${PREFIX}/libdata/pkgconfig#g" \
${WRKSRC}/lib/Makefile.in
.endif
.if ${SUBSYS} == base
pre-install:
.if !defined(WITH_NUT_CGI) && !defined(BATCH) && !defined(PACKAGE_BUILDING)
@${ECHO_MSG} "Type \"make -DWITH_NUT_CGI\" if you want to build CGI scripts."
.endif
@${MKDIR} ${PREFIX}/libexec/nut
@${MKDIR} ${STATEDIR}
@${CHOWN} uucp:wheel ${STATEDIR}
@${CHMOD} 0750 ${STATEDIR}
post-install:
@${SED} -e "s#%%PREFIX%%#${PREFIX}#g" \
-e "s#%%RC_SUBR%%#${RC_SUBR}#g" \
-e "s#%%STATEDIR%%#${STATEDIR}#g" \
<${FILESDIR}/nut.sh.sample >${WRKSRC}/nut.sh
${INSTALL_SCRIPT} ${WRKSRC}/nut.sh ${PREFIX}/etc/rc.d/nut.sh
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}/cables
@${MKDIR} ${DOCSDIR}/drivers
${INSTALL_DATA} ${WRKSRC}/docs/cables/*.txt ${DOCSDIR}/cables
${INSTALL_DATA} ${WRKSRC}/docs/*.txt ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/docs/FAQ ${DOCSDIR}
.for file in CHANGES CREDITS INSTALL NEWS README UPGRADING
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.endif
.include <bsd.port.post.mk>