summaryrefslogtreecommitdiffstats
path: root/package/sconeserver/Config.in
diff options
context:
space:
mode:
authorSimon Dawson <spdawson@gmail.com>2012-09-20 22:20:34 +0000
committerPeter Korsgaard <jacmet@sunsite.dk>2012-10-08 22:58:20 +0200
commit76b38f853d2683854bfedaccb3512fab110c5d49 (patch)
tree00b5d32e62d0d9a02303f9c27095416921d9ea16 /package/sconeserver/Config.in
parent42f0a84efd2cf511f331114db9167d00283c1425 (diff)
downloadbuildroot-novena-76b38f853d2683854bfedaccb3512fab110c5d49.tar.gz
buildroot-novena-76b38f853d2683854bfedaccb3512fab110c5d49.zip
sconeserver: new package
Signed-off-by: Simon Dawson <spdawson@gmail.com> Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Tested-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/sconeserver/Config.in')
-rw-r--r--package/sconeserver/Config.in88
1 files changed, 88 insertions, 0 deletions
diff --git a/package/sconeserver/Config.in b/package/sconeserver/Config.in
new file mode 100644
index 000000000..a7e5c7563
--- /dev/null
+++ b/package/sconeserver/Config.in
@@ -0,0 +1,88 @@
+menuconfig BR2_PACKAGE_SCONESERVER
+ bool "sconeserver"
+ depends on BR2_INSTALL_LIBSTDCPP
+ select BR2_PACKAGE_PCRE
+ help
+ Sconeserver is a modular, object-orientated and extremely versatile
+ network server framework for GNU/Linux and UNIX-like platforms.
+
+ http://www.sconemad.com/sconeserver/
+
+if BR2_PACKAGE_SCONESERVER
+
+comment "Sconeserver modules"
+
+config BR2_PACKAGE_SCONESERVER_EXAMPLES
+ bool "examples"
+ help
+ Example modules for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE
+ bool "http::sconesite"
+ select BR2_PACKAGE_LIBXML2
+ help
+ http::sconesite module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE_IMAGE
+ bool "http::sconesite::image"
+ depends on BR2_PACKAGE_SCONESERVER_HTTP_SCONESITE
+ select BR2_PACKAGE_IMAGEMAGICK
+ help
+ http::sconesite::image module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_MYSQL
+ bool "mysql"
+ select BR2_PACKAGE_MYSQL_CLIENT
+ help
+ MySQL module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_BLUETOOTH
+ bool "bluetooth"
+ select BR2_PACKAGE_BLUEZ_UTILS
+ help
+ Bluetooth module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_RSS
+ bool "rss"
+ select BR2_PACKAGE_LIBXML2
+ help
+ RSS module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_LOCATION
+ bool "location"
+ select BR2_PACKAGE_GPSD
+ help
+ Location module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_LETTUCE
+ bool "lettuce"
+ help
+ Sconeserver module for Lettuce embedded automation platform
+
+ http://www.sconemad.com/lettuce/
+
+config BR2_PACKAGE_SCONESERVER_MATHS
+ bool "maths"
+ select BR2_PACKAGE_MPFR
+ help
+ Mathematics module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_TESTBUILDER
+ bool "testbuilder"
+ help
+ Testbuilder module for Sconeserver
+
+config BR2_PACKAGE_SCONESERVER_UI
+ bool "ui"
+ depends on BR2_PACKAGE_XORG7
+ select BR2_PACKAGE_XLIB_LIBX11
+ help
+ UI module for Sconeserver
+
+comment "ui module requires X.org"
+ depends on !BR2_PACKAGE_XORG7
+
+endif # BR2_PACKAGE_SCONESERVER
+
+comment "sconeserver requires a toolchain with C++ support enabled"
+ depends on !BR2_INSTALL_LIBSTDCPP