574eab46fd3182b31684f4321f605eac5992e799
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / gnuradio / Config.in
1 comment "gnuradio needs a toolchain w/ C++, NPTL, wchar, dynamic library"
2         depends on BR2_USE_MMU
3         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
4         depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
5                 !BR2_TOOLCHAIN_HAS_THREADS_NPTL || BR2_STATIC_LIBS
6
7 config BR2_PACKAGE_GNURADIO
8         bool "gnuradio"
9         depends on BR2_INSTALL_LIBSTDCPP
10         depends on !BR2_STATIC_LIBS
11         depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
12         depends on BR2_USE_MMU # use fork()
13         depends on BR2_USE_WCHAR # boost
14         depends on BR2_PACKAGE_BOOST_ARCH_SUPPORTS
15         select BR2_PACKAGE_BOOST
16         select BR2_PACKAGE_BOOST_DATE_TIME
17         select BR2_PACKAGE_BOOST_FILESYSTEM
18         select BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
19         select BR2_PACKAGE_BOOST_SYSTEM
20         select BR2_PACKAGE_BOOST_THREAD
21         help
22           GNU Radio is a free & open-source software development
23           toolkit that provides signal processing blocks to implement
24           software radios. It can be used with readily-available
25           low-cost external RF hardware to create software-defined
26           radios, or without hardware in a simulation-like
27           environment. It is widely used in hobbyist, academic and
28           commercial environments to support both wireless
29           communications research and real-world radio systems.
30
31           http://gnuradio.org/
32
33 if BR2_PACKAGE_GNURADIO
34
35 config BR2_PACKAGE_GNURADIO_BLOCKS
36         bool "blocks support"
37         help
38           GNU Radio basic block library
39
40 config BR2_PACKAGE_GNURADIO_PYTHON
41         bool "python support"
42         select BR2_PACKAGE_BOOST_PYTHON
43         select BR2_PACKAGE_PYTHON
44         help
45           Enable python component
46
47 endif