add new port: www/flot
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/
This commit is contained in:
parent
35e5775321
commit
9de183786d
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=298703
5 changed files with 89 additions and 0 deletions
|
@ -214,6 +214,7 @@
|
|||
SUBDIR += flat-frog
|
||||
SUBDIR += flickcurl
|
||||
SUBDIR += flood
|
||||
SUBDIR += flot
|
||||
SUBDIR += fluxbb
|
||||
SUBDIR += fluxcms
|
||||
SUBDIR += fnord
|
||||
|
|
51
www/flot/Makefile
Normal file
51
www/flot/Makefile
Normal file
|
@ -0,0 +1,51 @@
|
|||
# New ports collection makefile for: flot
|
||||
# Date created: 06 June 2012
|
||||
# Whom: Jason Helfman <jgh@FreeBSD.org>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= flot
|
||||
PORTVERSION= 0.7
|
||||
CATEGORIES= www devel
|
||||
MASTER_SITES= GOOGLE_CODE
|
||||
|
||||
MAINTAINER= jgh@FreeBSD.org
|
||||
COMMENT= Javascript plotting library for jQuery
|
||||
|
||||
LICENSE= MIT
|
||||
|
||||
WRKSRC= ${WRKDIR}/${PORTNAME}
|
||||
|
||||
USERS= www
|
||||
GROUPS= www
|
||||
|
||||
NO_BUILD= YES
|
||||
|
||||
PORTDOCS= API.txt \
|
||||
FAQ.txt \
|
||||
NEWS.txt \
|
||||
PLUGINS.txt \
|
||||
README.txt
|
||||
PORTEXAMPLES= *
|
||||
|
||||
do-install:
|
||||
@${INSTALL} -d -g ${USERS} -o ${GROUPS} ${WWWDIR}
|
||||
${INSTALL_DATA} -o www -g www ${WRKSRC}/*.js ${WWWDIR}
|
||||
|
||||
.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
|
||||
|
||||
.include <bsd.port.mk>
|
2
www/flot/distinfo
Normal file
2
www/flot/distinfo
Normal file
|
@ -0,0 +1,2 @@
|
|||
SHA256 (flot-0.7.tar.gz) = bc24f661d6de1d38496b93147604174dd82b6c54359824cb1c9c4acd5eb55730
|
||||
SIZE (flot-0.7.tar.gz) = 288107
|
6
www/flot/pkg-descr
Normal file
6
www/flot/pkg-descr
Normal file
|
@ -0,0 +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.
|
||||
|
||||
WWW: http://code.google.com/p/flot/
|
29
www/flot/pkg-plist
Normal file
29
www/flot/pkg-plist
Normal file
|
@ -0,0 +1,29 @@
|
|||
%%WWWDIR%%/excanvas.js
|
||||
%%WWWDIR%%/excanvas.min.js
|
||||
%%WWWDIR%%/jquery.colorhelpers.js
|
||||
%%WWWDIR%%/jquery.colorhelpers.min.js
|
||||
%%WWWDIR%%/jquery.flot.crosshair.js
|
||||
%%WWWDIR%%/jquery.flot.crosshair.min.js
|
||||
%%WWWDIR%%/jquery.flot.fillbetween.js
|
||||
%%WWWDIR%%/jquery.flot.fillbetween.min.js
|
||||
%%WWWDIR%%/jquery.flot.image.js
|
||||
%%WWWDIR%%/jquery.flot.image.min.js
|
||||
%%WWWDIR%%/jquery.flot.js
|
||||
%%WWWDIR%%/jquery.flot.min.js
|
||||
%%WWWDIR%%/jquery.flot.navigate.js
|
||||
%%WWWDIR%%/jquery.flot.navigate.min.js
|
||||
%%WWWDIR%%/jquery.flot.pie.js
|
||||
%%WWWDIR%%/jquery.flot.pie.min.js
|
||||
%%WWWDIR%%/jquery.flot.resize.js
|
||||
%%WWWDIR%%/jquery.flot.resize.min.js
|
||||
%%WWWDIR%%/jquery.flot.selection.js
|
||||
%%WWWDIR%%/jquery.flot.selection.min.js
|
||||
%%WWWDIR%%/jquery.flot.stack.js
|
||||
%%WWWDIR%%/jquery.flot.stack.min.js
|
||||
%%WWWDIR%%/jquery.flot.symbol.js
|
||||
%%WWWDIR%%/jquery.flot.symbol.min.js
|
||||
%%WWWDIR%%/jquery.flot.threshold.js
|
||||
%%WWWDIR%%/jquery.flot.threshold.min.js
|
||||
%%WWWDIR%%/jquery.js
|
||||
%%WWWDIR%%/jquery.min.js
|
||||
@dirrmtry %%WWWDIR%%
|
Loading…
Reference in a new issue