Commits
Michael Dickens authored 91ab5ee9c80
1 1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4 |
2 2 | |
3 3 | PortSystem 1.0 |
4 4 | PortGroup cmake 1.0 |
5 5 | PortGroup active_variants 1.1 |
6 6 | PortGroup github 1.0 |
7 7 | |
8 8 | name gr-iqbalance |
9 9 | github.setup osmocom gr-iqbal dcd73fd54992430938ced73872b983bffd770b11 |
10 10 | version 20151025 |
11 - | revision 6 |
11 + | revision 7 |
12 12 | checksums rmd160 aa34f93dbfc32280228caee50b321fd9f9e39c35 \ |
13 13 | sha256 689b57f308f4696f43e9b0d2a69b0e2dbad8a7079da0544b96c9eaa0984e9d37 \ |
14 14 | size 105929 |
15 15 | |
16 16 | # stealth update equivalent when moving to GitHub |
17 17 | # remove on next update |
18 18 | dist_subdir ${name}/${version}_1 |
19 19 | |
20 20 | maintainers {michaelld @michaelld} openmaintainer |
21 21 | description gr-iqbalance provides I/Q balancing blocks for GNU Radio |
89 89 | if {![variant_isset docs]} { |
90 90 | |
91 91 | configure.args-append \ |
92 92 | -DDOXYGEN_DOT_EXECUTABLE= \ |
93 93 | -DDOXYGEN_EXECUTABLE= |
94 94 | |
95 95 | } |
96 96 | |
97 97 | variant swig description "Install ${name} with support for SWIG-base Python bindings" { |
98 98 | |
99 - | depends_lib-append \ |
99 + | depends_build-append \ |
100 100 | port:swig-python |
101 101 | |
102 102 | # require gnuradio to also have this variant |
103 103 | |
104 104 | require_active_variants \ |
105 105 | path:lib/libgnuradio-runtime.dylib:gnuradio swig |
106 106 | |
107 107 | configure.args-append \ |
108 108 | -DSWIG_EXECUTABLE=${prefix}/bin/swig |
109 109 | |