mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
- Update to version 0.8.2
- Stage support PR: 187969 Submitted by: ports fury
This commit is contained in:
parent
49d03f5ff3
commit
ad97fa6923
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=352212
@ -1,49 +1,39 @@
|
||||
# $FreeBSD$
|
||||
|
||||
PORTNAME= flot
|
||||
PORTVERSION= 0.7
|
||||
PORTVERSION= 0.8.2
|
||||
CATEGORIES= www devel
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
MASTER_SITES= http://www.flotcharts.org/downloads/
|
||||
|
||||
MAINTAINER= ports@FreeBSD.org
|
||||
COMMENT= JavaScript plotting library for jQuery
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE.txt
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
NO_BUILD= yes
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USES= zip
|
||||
|
||||
USERS= www
|
||||
GROUPS= www
|
||||
|
||||
NO_BUILD= YES
|
||||
|
||||
PORTDOCS= API.txt \
|
||||
FAQ.txt \
|
||||
NEWS.txt \
|
||||
PLUGINS.txt \
|
||||
README.txt
|
||||
PORTDOCS= *
|
||||
PORTEXAMPLES= *
|
||||
|
||||
NO_STAGE= yes
|
||||
do-install:
|
||||
@${INSTALL} -d -g ${USERS} -o ${GROUPS} ${WWWDIR}
|
||||
${INSTALL_DATA} -o www -g www ${WRKSRC}/*.js ${WWWDIR}
|
||||
|
||||
OPTIONS_DEFINE= DOCS EXAMPLES
|
||||
|
||||
.include <bsd.port.options.mk>
|
||||
|
||||
post-install:
|
||||
.if ${PORT_OPTIONS:MDOCS}
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
.for doc in ${PORTDOCS}
|
||||
${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR}
|
||||
.endfor
|
||||
.endif
|
||||
|
||||
.if ${PORT_OPTIONS:MEXAMPLES}
|
||||
@${MKDIR} ${EXAMPLESDIR}
|
||||
cd ${WRKSRC}/examples && ${COPYTREE_SHARE} \* ${EXAMPLESDIR}
|
||||
.endif
|
||||
do-install:
|
||||
@${MKDIR} ${STAGEDIR}${WWWDIR}
|
||||
(cd ${WRKSRC} && ${INSTALL_DATA} *.js \
|
||||
${STAGEDIR}${WWWDIR})
|
||||
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
||||
(cd ${WRKSRC} && ${INSTALL_DATA} *.md \
|
||||
${STAGEDIR}${DOCSDIR})
|
||||
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
||||
@(cd ${WRKSRC}/examples && ${COPYTREE_SHARE} "*" \
|
||||
${STAGEDIR}${EXAMPLESDIR})
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,2 +1,2 @@
|
||||
SHA256 (flot-0.7.tar.gz) = bc24f661d6de1d38496b93147604174dd82b6c54359824cb1c9c4acd5eb55730
|
||||
SIZE (flot-0.7.tar.gz) = 288107
|
||||
SHA256 (flot-0.8.2.zip) = 7bcb8dd13e0569cee7ebd25182623663b8558585bea512141d7140106846c4fe
|
||||
SIZE (flot-0.8.2.zip) = 646470
|
||||
|
@ -1,6 +1,6 @@
|
||||
Flot is a pure Javascript plotting library for jQuery. It produces graphical
|
||||
plots of arbitrary datasets on-the-fly client-side. The focus is on simple
|
||||
usage (all settings are optional), attractive looks and interactive features
|
||||
like zooming and mouse tracking.
|
||||
Flot is a pure Javascript plotting library for jQuery. It produces
|
||||
graphical plots of arbitrary datasets on-the-fly client-side. The focus
|
||||
is on simple usage (all settings are optional), attractive looks and
|
||||
interactive features like zooming and mouse tracking.
|
||||
|
||||
WWW: http://code.google.com/p/flot/
|
||||
WWW: http://www.flotcharts.org/
|
||||
|
@ -1,9 +1,17 @@
|
||||
@group www
|
||||
@owner www
|
||||
%%WWWDIR%%/excanvas.js
|
||||
%%WWWDIR%%/excanvas.min.js
|
||||
%%WWWDIR%%/jquery.colorhelpers.js
|
||||
%%WWWDIR%%/jquery.colorhelpers.min.js
|
||||
%%WWWDIR%%/jquery.flot.canvas.js
|
||||
%%WWWDIR%%/jquery.flot.canvas.min.js
|
||||
%%WWWDIR%%/jquery.flot.categories.js
|
||||
%%WWWDIR%%/jquery.flot.categories.min.js
|
||||
%%WWWDIR%%/jquery.flot.crosshair.js
|
||||
%%WWWDIR%%/jquery.flot.crosshair.min.js
|
||||
%%WWWDIR%%/jquery.flot.errorbars.js
|
||||
%%WWWDIR%%/jquery.flot.errorbars.min.js
|
||||
%%WWWDIR%%/jquery.flot.fillbetween.js
|
||||
%%WWWDIR%%/jquery.flot.fillbetween.min.js
|
||||
%%WWWDIR%%/jquery.flot.image.js
|
||||
@ -24,6 +32,10 @@
|
||||
%%WWWDIR%%/jquery.flot.symbol.min.js
|
||||
%%WWWDIR%%/jquery.flot.threshold.js
|
||||
%%WWWDIR%%/jquery.flot.threshold.min.js
|
||||
%%WWWDIR%%/jquery.flot.time.js
|
||||
%%WWWDIR%%/jquery.flot.time.min.js
|
||||
%%WWWDIR%%/jquery.js
|
||||
%%WWWDIR%%/jquery.min.js
|
||||
@owner
|
||||
@group
|
||||
@dirrmtry %%WWWDIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user