The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / flot / flot.mk
1 ################################################################################
2 #
3 # flot
4 #
5 ################################################################################
6
7 FLOT_VERSION = 0.8.3
8 FLOT_SITE = http://www.flotcharts.org/downloads
9 FLOT_LICENSE = MIT
10 FLOT_LICENSE_FILES = LICENSE.txt
11 FLOT_FILES = jquery.flot $(addprefix jquery.flot.,\
12         $(if $(BR2_PACKAGE_FLOT_CANVAS),canvas) \
13         $(if $(BR2_PACKAGE_FLOT_CATEGORIES),categories) \
14         $(if $(BR2_PACKAGE_FLOT_CROSSHAIR),crosshair) \
15         $(if $(BR2_PACKAGE_FLOT_ERRORBARS),errorbars) \
16         $(if $(BR2_PACKAGE_FLOT_FILLBETWEEN),fillbetween) \
17         $(if $(BR2_PACKAGE_FLOT_IMAGE),image) \
18         $(if $(BR2_PACKAGE_FLOT_NAVIGATE),navigate) \
19         $(if $(BR2_PACKAGE_FLOT_PIE),pie) \
20         $(if $(BR2_PACKAGE_FLOT_RESIZE),resize) \
21         $(if $(BR2_PACKAGE_FLOT_SELECTION),selection) \
22         $(if $(BR2_PACKAGE_FLOT_STACK),stack) \
23         $(if $(BR2_PACKAGE_FLOT_SYMBOL),symbol) \
24         $(if $(BR2_PACKAGE_FLOT_THRESHOLD),threshold) \
25         $(if $(BR2_PACKAGE_FLOT_TIME),time) \
26         )
27
28 define FLOT_INSTALL_TARGET_CMDS
29         for i in $(FLOT_FILES); do \
30                 $(INSTALL) -m 0644 -D $(@D)/$$i.min.js $(TARGET_DIR)/var/www/$$i.js || exit 1; \
31         done
32 endef
33
34 $(eval $(generic-package))