mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
20505a7a0f
- Move maintainership to submitter PR: ports/150050 Submitted by: Andriy Gapon <avg@icyb.net.ua> Approved by: Jim Riggs <ports@christianserving.org> (old maintainer)
76 lines
1.8 KiB
Makefile
76 lines
1.8 KiB
Makefile
# New ports collection makefile for: drraw
|
|
# Date created: 2006-08-08
|
|
# Whom: Jim Riggs <ports@christianserving.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= drraw
|
|
DISTVERSION= 2.2b2
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://web.taranis.org/drraw/dist/ \
|
|
http://christianserving.org/ports/mail/imapsync/
|
|
|
|
MAINTAINER= avg@icyb.net.ua
|
|
COMMENT= A simple web-based presentation front-end for RRDtool
|
|
|
|
RUN_DEPENDS+= ${SITE_PERL}/RRDp.pm:${PORTSDIR}/databases/rrdtool
|
|
|
|
OPTIONS= ZOOM_PATCH "Zoom support using jQuery via external patch" off
|
|
|
|
USE_PERL5_RUN= yes
|
|
|
|
NO_BUILD= yes
|
|
|
|
PORTDOCS= CHANGES INSTALL LICENSE README.EVENTS
|
|
|
|
CONFDIR?= etc
|
|
DATADIRS?= "/var/db/rrdtool" => "[Label1] "
|
|
SAVEDDIR?= /var/db/${PORTNAME}/saved
|
|
TMPDIR?= /var/db/${PORTNAME}/tmp
|
|
|
|
PLIST_SUB+= CONFDIR=${CONFDIR}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_ZOOM_PATCH)
|
|
PATCH_SITES+= http://pero.blogs.aprilmayjune.org/files/2009/09/
|
|
PATCHFILES+= drraw.cgi.zoom_patch
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%CONFDIR%%|${PREFIX}/${CONFDIR}|g' ${WRKSRC}/drraw.cgi
|
|
|
|
@${CP} -p ${WRKSRC}/drraw.conf ${WRKSRC}/drraw.conf-dist
|
|
@${REINPLACE_CMD} \
|
|
-e 's|%%DATADIRS%%|${DATADIRS}|g' \
|
|
-e 's|%%SAVEDDIR%%|${SAVEDDIR}|g' \
|
|
-e 's|%%TMPDIR%%|${TMPDIR}|g' \
|
|
${WRKSRC}/drraw.conf-dist
|
|
|
|
do-install:
|
|
${INSTALL_DATA} ${WRKSRC}/drraw.conf-dist ${PREFIX}/${CONFDIR}
|
|
|
|
${MKDIR} ${WWWDIR}
|
|
${INSTALL_SCRIPT} ${WRKSRC}/drraw.cgi ${WWWDIR}
|
|
|
|
${MKDIR} ${WWWDIR}/icons
|
|
.for theFile in bomb.gif folder.gif folder.open.gif generic.gif link.gif text.gif unknown.gif
|
|
${INSTALL_DATA} ${WRKSRC}/icons/${theFile} ${WWWDIR}/icons
|
|
.endfor
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
. for theFile in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${theFile} ${DOCSDIR}
|
|
. endfor
|
|
.endif
|
|
|
|
post-install:
|
|
@if [ ! -f ${PREFIX}/etc/drraw.conf ];\
|
|
then \
|
|
${CP} -p ${PREFIX}/etc/drraw.conf-dist ${PREFIX}/etc/drraw.conf; \
|
|
fi
|
|
|
|
.include <bsd.port.post.mk>
|