| 1 | # $Id$ |
|---|
| 2 | |
|---|
| 3 | PortSystem 1.7.0 |
|---|
| 4 | |
|---|
| 5 | name gnuradio |
|---|
| 6 | version 3.1.3 |
|---|
| 7 | categories # ? /SDR software defined radio? |
|---|
| 8 | maintainers # ? |
|---|
| 9 | description software defined radio |
|---|
| 10 | long_description GNU Radio is a free software development toolkit that provides the signal processing runtime and processing blocks to implement software radios using readily-available, low-cost external RF hardware and commodity processors. It is widely used in hobbyist, academic and commercial environments to support wireless communications research as well as to implement real-world radio systems. |
|---|
| 11 | GNU Radio applications are primarily written using the Python programming language, while the supplied, performance-critical signal processing path is implemented in C++ using processor floating point extensions where available. Thus, the developer is able to implement real-time, high-throughput radio systems in a simple-to-use, rapid-application-development environment. |
|---|
| 12 | While not primarily a simulation tool, GNU Radio does support development of signal processing algorithms using pre-recorded or generated data, avoiding the need for actual RF hardware. |
|---|
| 13 | homepage http://gnuradio.org/trac |
|---|
| 14 | platforms darwin |
|---|
| 15 | master_sites http://www.gnu.org/software/gnuradio/ |
|---|
| 16 | #latest stable release at; ftp://ftp.gnu.org/gnu/gnuradio/gnuradio-3.1.3.tar.gz |
|---|
| 17 | |
|---|
| 18 | checksums # ? \ |
|---|
| 19 | # ? \ |
|---|
| 20 | |
|---|
| 21 | depends_lib port:libtool \ |
|---|
| 22 | port:gawk \ |
|---|
| 23 | port:guile \ |
|---|
| 24 | port:pkgconfig \ |
|---|
| 25 | port:zlib \ |
|---|
| 26 | port:automake \ |
|---|
| 27 | port:swig \ |
|---|
| 28 | port:cppunit \ |
|---|
| 29 | port:fftw-3-single \ |
|---|
| 30 | port:sdcc \ |
|---|
| 31 | port:python \ |
|---|
| 32 | port:py-numpy \ |
|---|
| 33 | port:py-wxpython \ |
|---|
| 34 | port:doxygen \ |
|---|
| 35 | port:boost \ |
|---|
| 36 | port:libusb |
|---|
| 37 | |
|---|
| 38 | configure.args # maybe with "----with-boost-include-dir=<path>" but this actually doesn't works and boost dir is not detected. |
|---|
| 39 | --enable-all-components \ |
|---|
| 40 | --disable-gr-audio-alsa \ |
|---|
| 41 | --disable-gr-audio-oss \ |
|---|
| 42 | --disable-gr-audio-jack \ |
|---|
| 43 | --disable-gr-audio-portaudio \ |
|---|
| 44 | --disable-gr-audio-windows |
|---|
| 45 | |
|---|