]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
jquery-ui-themes: new package
authorSimon Dawson <spdawson@gmail.com>
Thu, 14 Jun 2012 10:02:12 +0000 (10:02 +0000)
committerPeter Korsgaard <jacmet@sunsite.dk>
Mon, 6 May 2013 21:46:10 +0000 (23:46 +0200)
[Peter: drop CSS path option, depend on jquery-ui, misc cleanups]
Signed-off-by: Simon Dawson <spdawson@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/Config.in
package/jquery-ui-themes/Config.in [new file with mode: 0644]
package/jquery-ui-themes/jquery-ui-themes.mk [new file with mode: 0644]

index 6dc00220cfb481343022f28f2fca862fe80d1ed4..6b3824213906a9dbf4d5e1bdc8303b45ab881ee5 100644 (file)
@@ -489,6 +489,7 @@ source "package/jquery/Config.in"
 source "package/jquery-keyboard/Config.in"
 source "package/jquery-sparkline/Config.in"
 source "package/jquery-ui/Config.in"
+source "package/jquery-ui-themes/Config.in"
 source "package/jquery-validation/Config.in"
 source "package/jsmin/Config.in"
 source "package/json-javascript/Config.in"
diff --git a/package/jquery-ui-themes/Config.in b/package/jquery-ui-themes/Config.in
new file mode 100644 (file)
index 0000000..dfde9c1
--- /dev/null
@@ -0,0 +1,14 @@
+config BR2_PACKAGE_JQUERY_UI_THEMES
+       bool "jQuery UI themes"
+       depends on BR2_PACKAGE_JQUERY_UI
+       help
+         Themes for jQuery UI.
+
+         http://jqueryui.com/
+
+config BR2_PACKAGE_JQUERY_UI_THEMES_THEME
+       string "theme to install"
+       default "base"
+       depends on BR2_PACKAGE_JQUERY_UI_THEMES
+       help
+         Specify the name of the jQuery UI theme to install.
diff --git a/package/jquery-ui-themes/jquery-ui-themes.mk b/package/jquery-ui-themes/jquery-ui-themes.mk
new file mode 100644 (file)
index 0000000..ae50ad4
--- /dev/null
@@ -0,0 +1,32 @@
+#############################################################
+#
+# jquery-ui-themes
+#
+#############################################################
+
+JQUERY_UI_THEMES_VERSION = 1.8.21
+JQUERY_UI_THEMES_SITE = http://jquery-ui.googlecode.com/files
+JQUERY_UI_THEMES_SOURCE = jquery-ui-themes-$(JQUERY_UI_THEMES_VERSION).zip
+JQUERY_UI_THEMES_DEPENDENCIES = jquery-ui
+
+define JQUERY_UI_THEMES_EXTRACT_CMDS
+       unzip -d $(@D) $(DL_DIR)/$(JQUERY_UI_THEMES_SOURCE)
+       mv $(@D)/jquery-ui-themes-$(JQUERY_UI_THEMES_VERSION)/* $(@D)
+       $(RM) -r $(@D)/jquery-ui-themes-$(JQUERY_UI_THEMES_VERSION)
+endef
+
+define JQUERY_UI_THEMES_INSTALL_TARGET_CMDS
+       $(INSTALL) -m 0644 -D \
+               $(@D)/themes/$(BR2_PACKAGE_JQUERY_UI_THEMES_THEME)/jquery-ui.css \
+               $(TARGET_DIR)/var/www/jquery-ui.css
+       $(INSTALL) -d $(TARGET_DIR)/var/www/images
+       cp -a $(@D)/themes/$(BR2_PACKAGE_JQUERY_UI_THEMES_THEME)/images/*.png \
+               $(TARGET_DIR)/var/www/images
+       chmod 0644 $(TARGET_DIR)/var/www/images/*.png
+endef
+
+define JQUERY_UI_THEMES_UNINSTALL_TARGET_CMDS
+       $(RM) $(TARGET_DIR)/var/www/jquery-ui.css
+endef
+
+$(eval $(generic-package))