Ticket #49347: gnss-sdr-20151018.diff
File gnss-sdr-20151018.diff, 4.1 KB (added by carlesfernandez (Carles Fernandez), 9 years ago) |
---|
-
Portfile
old new 28 28 29 29 conflicts gnss-sdr-devel gnss-sdr-next 30 30 31 depends_lib-append port:gnuradio 31 depends_lib-append port:gnuradio port:openssl 32 32 33 33 require_active_variants port:gnuradio uhd 34 34 … … 42 42 reinplace "s@multithread@opencl@g" ${worksrcpath}/src/algorithms/acquisition/gnuradio_blocks/pcps_opencl_acquisition_cc.cc 43 43 } 44 44 45 set add_osmosdr true 46 45 47 } 46 48 47 49 subport gnss-sdr-devel { … … 50 52 This port is kept up with the GNSS-SDR GIT master branch, which is typically updated daily to weekly. This version of GNSS-SDR generally contains fixes and new features that will be incorporated in an upcoming release, and compiles against the gnuradio-devel port, which represents GNU Radio GIT master branch. This port may or not compile or function correctly, as it represents a work in progress. If it does not work, check back in a few days. Or try deactivating the currently active gnss-sdr and gnuradio ports, cleaning any current builds, and trying again. 51 53 52 54 name gnss-sdr-devel 53 github.setup gnss-sdr gnss-sdr b665444550e90bf595ade110cd57d69cf98145b954 version 2015 091855 checksums rmd160 b6681236a4376d72cb606572e1ca0e3767b63681\56 sha256 22a4f14e3f84d45d10025499272d406c7a6ef427b0f22df04491dd3a28ce561b55 github.setup gnss-sdr gnss-sdr 5c885627b5a3bbb26773910e801656a506a45c83 56 version 20151018 57 checksums rmd160 8081aa17eb02616852cd216e7a5e4cb4041d89c4 \ 58 sha256 920f9af0135d683b4e9f52f191b0195d69fbb882c911503aa4b73262d04d0bfd 57 59 58 60 conflicts gnss-sdr gnss-sdr-next 59 61 … … 61 63 62 64 require_active_variants port:gnuradio-devel uhd 63 65 66 set add_osmosdr true 67 64 68 } 65 69 66 70 subport gnss-sdr-next { … … 68 72 This port is kept up with the GNSS-SDR GIT next branch, which is typically updated daily to weekly. This version of GNSS-SDR generally contains fixes and new features that will be incorporated in an upcoming release, and compiles against the gnuradio-next port, which represents GNU Radio GIT next branch. This port may or not compile or function correctly, as it represents a work in progress. If it does not work, check back in a few days. Or try deactivating the currently active gnss-sdr and gnuradio ports, cleaning any current builds, and trying again. 69 73 70 74 name gnss-sdr-next 71 github.setup gnss-sdr gnss-sdr b665444550e90bf595ade110cd57d69cf98145b972 version 2015 091873 checksums rmd160 b6681236a4376d72cb606572e1ca0e3767b63681\74 sha256 22a4f14e3f84d45d10025499272d406c7a6ef427b0f22df04491dd3a28ce561b75 github.setup gnss-sdr gnss-sdr 8f3a509a002ab2d0146804e11c1eb7cdb3dd603c 76 version 20151018 77 checksums rmd160 ebc7f41cc4b37db78de460a136560e2591aa7c4c \ 78 sha256 65ad6fa553ca33a49740a42d121ee5891c46b1f12c3913b86f3535600e76b4d1 75 79 76 80 conflicts gnss-sdr gnss-sdr-devel 77 81 … … 79 83 80 84 require_active_variants port:gnuradio-next uhd 81 85 86 set add_osmosdr false 87 82 88 } 83 89 84 90 # override githib PortGroup homepage setting … … 91 97 port:armadillo \ 92 98 port:google-glog \ 93 99 port:orc \ 94 port: openssl\100 port:gnutls \ 95 101 path:lib/libuhd.dylib:uhd \ 96 102 port:py27-cheetah 97 103 … … 116 122 # enable default variants: all except +docs, +debug, and +universal 117 123 # do not enable +docs because it requires a non-standard variant for doxygen. 118 124 119 default_variants +osmosdr +opencl 125 if {${add_osmosdr} eq true} { 126 default_variants +osmosdr +opencl 127 } 128 129 # do not enable +osmosdr in next, since gr-osmosdr does not link against gnuradio-next 130 if {${add_osmosdr} eq false} { 131 default_variants +opencl 132 } 133 134 120 135 121 136 variant docs description "Install ${name} documentation" { 122 137