python-dataproperty: bump version to 0.17.0
[buildroot-gz.git] / package / ola / Config.in
blob90a92fd2f2f4efd23058077d22cbcfeae8613260
1 comment "ola needs a toolchain w/ C++, threads, dynamic library"
2         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS \
3                 || BR2_STATIC_LIBS
4         depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
6 menuconfig BR2_PACKAGE_OLA
7         bool "ola (open lighting architecture)"
8         select BR2_PACKAGE_PROTOBUF
9         select BR2_PACKAGE_UTIL_LINUX_LIBUUID
10         select BR2_PACKAGE_UTIL_LINUX
11         depends on BR2_INSTALL_LIBSTDCPP # protobuf
12         depends on !BR2_STATIC_LIBS # protobuf
13         depends on BR2_TOOLCHAIN_HAS_THREADS
14         depends on BR2_PACKAGE_PROTOBUF_ARCH_SUPPORTS
15         help
16           Open Lighting Architecture provides applications
17           with a mechanism to send and receive DMX512 & RDM
18           commands using hardware devices and DMX over IP protocols.
20           http://www.opendmx.net/index.php/OLA
22 if BR2_PACKAGE_OLA
24 comment "bindings and interface"
26 config BR2_PACKAGE_OLA_WEB
27         bool "http interface"
28         depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgcrypt, libmicrohttpd
29         select BR2_PACKAGE_LIBMICROHTTPD
30         help
31           Build OLA with browser interface.
33 config BR2_PACKAGE_OLA_PYTHON_BINDINGS
34         bool "python bindings"
35         depends on BR2_PACKAGE_PYTHON
36         select BR2_PACKAGE_PYTHON_PROTOBUF
37         help
38           Build OLA with support for the Python language.
40 config BR2_PACKAGE_OLA_SLP
41         bool "slp tools"
42         help
43           Build OLA with slp tools.
45 comment "tests and examples"
47 config BR2_PACKAGE_OLA_EXAMPLES
48         bool "examples"
49         select BR2_PACKAGE_NCURSES
50         help
51           Build OLA examples.
53 config BR2_PACKAGE_OLA_RDM_TESTS
54         bool "rdm tests"
55         depends on BR2_PACKAGE_OLA_PYTHON_BINDINGS
56         depends on BR2_PACKAGE_PYTHON_NUMPY_ARCH_SUPPORTS
57         select BR2_PACKAGE_PYTHON_NUMPY
58         help
59           Build OLA RDM tests.
61 comment "plugin selections"
63 config BR2_PACKAGE_OLA_PLUGIN_E131
64         bool "acn E131"
65         help
66           Build ACN E131 plugin for OLA.
68 config BR2_PACKAGE_OLA_PLUGIN_ARTNET
69         bool "artnet"
70         help
71           Build Artnet plugin for OLA.
73 config BR2_PACKAGE_OLA_PLUGIN_OPENDMX
74         bool "DMX4Linux"
75         help
76           Build DMX4Linux plugin for OLA.
78 config BR2_PACKAGE_OLA_PLUGIN_DUMMY
79         bool "dummy"
80         help
81           Build Dummy plugin for OLA.
83 config BR2_PACKAGE_OLA_PLUGIN_ESPNET
84         bool "espnet"
85         help
86           Build EspNet plugin for OLA.
88 config BR2_PACKAGE_OLA_PLUGIN_KINET
89         bool "kinet"
90         help
91           Build KiNet plugin for OLA.
93 config BR2_PACKAGE_OLA_PLUGIN_MILINT
94         bool "Milford Instruments"
95         help
96           Build Milford Instruments 1-463 plugin for OLA.
98 config BR2_PACKAGE_OLA_PLUGIN_OSC
99         bool "osc"
100         select BR2_PACKAGE_LIBLO
101         help
102           Build Open Sound Control plugin for OLA.
104 config BR2_PACKAGE_OLA_PLUGIN_PATHPORT
105         bool "pathport"
106         help
107           Build Pathport plugin for OLA.
109 config BR2_PACKAGE_OLA_PLUGIN_SANDNET
110         bool "sandnet"
111         help
112           Build SandNet plugin for OLA.
114 config BR2_PACKAGE_OLA_PLUGIN_SHOWNET
115         bool "shownet"
116         help
117           Build ShowNet plugin for OLA.
119 config BR2_PACKAGE_OLA_PLUGIN_STAGEPROFI
120         bool "stageprofi"
121         select BR2_PACKAGE_LIBUSB
122         help
123           Build StageProfi plugin for OLA.
125 config BR2_PACKAGE_OLA_PLUGIN_USBPRO
126         bool "usbpro"
127         select BR2_PACKAGE_LIBUSB
128         help
129           Build UsbPro plugin for OLA.
131 endif