aboutsummaryrefslogtreecommitdiff
path: root/www/drraw
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2013-03-07 16:53:45 +0000
committerMartin Wilke <miwi@FreeBSD.org>2013-03-07 16:53:45 +0000
commitb7df0651651ef059fd4db24d7b77113e72ad6c15 (patch)
treee492c56fa7379da1ca224d6c3b1e9a31bdf1f7d9 /www/drraw
parentf391ca611e4a642fc3b0e7df30f4a60b63f60b71 (diff)
downloadports-b7df0651651ef059fd4db24d7b77113e72ad6c15.tar.gz
ports-b7df0651651ef059fd4db24d7b77113e72ad6c15.zip
- Convert to OptionsNG
- Trim header Reviewed by: bapt
Notes
Notes: svn path=/head/; revision=313599
Diffstat (limited to 'www/drraw')
-rw-r--r--www/drraw/Makefile18
1 files changed, 7 insertions, 11 deletions
diff --git a/www/drraw/Makefile b/www/drraw/Makefile
index 98f5d634916d..033c4b3ce3b9 100644
--- a/www/drraw/Makefile
+++ b/www/drraw/Makefile
@@ -1,9 +1,5 @@
-# New ports collection makefile for: drraw
-# Date created: 2006-08-08
-# Whom: Jim Riggs <ports@christianserving.org>
-#
+# Created by: Jim Riggs <ports@christianserving.org>
# $FreeBSD$
-#
PORTNAME= drraw
DISTVERSION= 2.2b2
@@ -17,10 +13,10 @@ COMMENT= A simple web-based presentation front-end for RRDtool
RUN_DEPENDS+= rrdtool>=0:${PORTSDIR}/databases/rrdtool
-OPTIONS= ZOOM_PATCH "Zoom support using jQuery via external patch" off
+OPTIONS_DEFINE= ZOOM_PATCH
+ZOOM_PATCH_DESC= Zoom support using jQuery via external patch
USE_PERL5_RUN= yes
-
NO_BUILD= yes
PORTDOCS= CHANGES INSTALL LICENSE README.EVENTS
@@ -32,9 +28,9 @@ TMPDIR?= /var/db/${PORTNAME}/tmp
PLIST_SUB+= CONFDIR=${CONFDIR}
-.include <bsd.port.pre.mk>
+.include <bsd.port.options.mk>
-.if defined(WITH_ZOOM_PATCH)
+.if ${PORT_OPTIONS:MZOOM_PATCH}
PATCH_SITES+= http://aprilmayjune.org/wp-content/uploads/2009/09/
PATCHFILES+= drraw.cgi.zoom_patch
.endif
@@ -60,7 +56,7 @@ do-install:
${INSTALL_DATA} ${WRKSRC}/icons/${theFile} ${WWWDIR}/icons
.endfor
-.if !defined(NOPORTDOCS)
+.if ${PORT_OPTIONS:MDOCS}
${MKDIR} ${DOCSDIR}
. for theFile in ${PORTDOCS}
${INSTALL_DATA} ${WRKSRC}/${theFile} ${DOCSDIR}
@@ -73,4 +69,4 @@ post-install:
${CP} -p ${PREFIX}/etc/drraw.conf-dist ${PREFIX}/etc/drraw.conf; \
fi
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>