diff options
author | Boris Popov <bp@FreeBSD.org> | 2000-01-11 11:55:48 +0000 |
---|---|---|
committer | Boris Popov <bp@FreeBSD.org> | 2000-01-11 11:55:48 +0000 |
commit | e905d01c4cca2e8599596fa432a05589ff262f48 (patch) | |
tree | 77429d886fa1e081cfb9b55b0a443bfbd83ebf57 /sysutils/nut/Makefile | |
parent | 6a5959062e7bfd02fedbcfaf32adc71cc80f5b93 (diff) |
Notes
Diffstat (limited to 'sysutils/nut/Makefile')
-rw-r--r-- | sysutils/nut/Makefile | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/sysutils/nut/Makefile b/sysutils/nut/Makefile new file mode 100644 index 000000000000..55b81bdf9fba --- /dev/null +++ b/sysutils/nut/Makefile @@ -0,0 +1,64 @@ +# New ports collection makefile for: nut +# Version required: nut-0.42.1 +# Date created: 08 Jan 2000 +# Whom: Boris Popov <bp@freebsd.org> +# +# $FreeBSD$ +# + +DISTNAME= nut-0.42.1 +CATEGORIES= sysutils +MASTER_SITES= http://www.exploits.org/nut/release/ + +MAINTAINER= bp@butya.kz + +.if defined(CGI) +LIB_DEPENDS= gd:${PORTSDIR}/graphics/gd +.endif + +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --enable-celsius --sysconfdir=${PREFIX}/etc/nut \ + --with-uid=65534 --with-gid=68 +ALL_TARGET= all + +PLIST= ${WRKDIR}/PLIST.DYN + +NDOCDIR= ${PREFIX}/share/doc/nut + +.if defined(CGI) +NCGIDIR= ${PREFIX}/share/nut/cgi +ALL_TARGET+= cgi +.endif + +pre-fetch: +.if !defined(CGI) + @${ECHO_MSG} "Type \"make CGI=yes\" if you want to build CGI scripts." +.endif + +pre-install: + @cp ${PKGDIR}/PLIST ${WRKDIR}/PLIST.DYN +.if !defined(NOPORSDOCS) + @cat ${PKGDIR}/PLIST.DOC >> ${WRKDIR}/PLIST.DYN +.endif +.if defined(CGI) + @cat ${PKGDIR}/PLIST.CGI >> ${WRKDIR}/PLIST.DYN +.endif + +post-install: + @${SED} -e "/%%PREFIX%%/s##${PREFIX}#g" ${FILESDIR}/upsd.sh.sample \ + >${PREFIX}/etc/rc.d/upsd.sh.sample + @${CHMOD} 0755 ${PREFIX}/etc/rc.d/upsd.sh.sample +.if !defined(NOPORTDOCS) + @if ! [ -d ${NDOCDIR} ]; then ${MKDIR} ${NDOCDIR}; fi + ${INSTALL_DATA} ${WRKSRC}/docs/* ${NDOCDIR} + ${INSTALL_DATA} ${WRKSRC}/README ${NDOCDIR} + ${INSTALL_DATA} ${WRKSRC}/QUICKSTART ${NDOCDIR} +.endif +.if defined(CGI) + @if ! [ -d ${NCGIDIR} ]; then ${MKDIR} ${NCGIDIR}; fi + ${INSTALL_DATA} ${WRKSRC}/clients/*.cgi ${NCGIDIR} + @${ECHO_MSG} "Look in ${NCGIDIR} for cgi scripts." +.endif + @${ECHO_MSG} "Look in ${NDOCDIR} for documentation." + +.include <bsd.port.mk> |