├── .circleci └── config.yml ├── .gitignore ├── LICENSE ├── README.md ├── gnuradio-logo-noicon.png ├── gnuradio.icns ├── patches ├── PyQt5_gpl-5.13.1-00-inject-compile-flags.patch ├── PyQt5_gpl-5.13.2.dev1910041539-inject-compile-flags.patch ├── SDL-1.2.15-00-build-for-mac-x11.patch ├── blas-3.7.0-00-ignore-xerbla-array.patch ├── blas-3.7.0-00-ignore-xerbla.patch ├── cblas-00-use-correct-case-in-header-guard.patch ├── cppunit-1.12.1-00-rename-configure-in-ac.patch ├── create-dmg-00-increase-padding.patch ├── glib-2.62.0-00-support_modules_and_x11.patch ├── gr-osmosdr-00-proper-constructors.patch ├── gtk+-3.24.11-00-support_x11_and_no_dbus.patch ├── jpegsrc.v6b-00-fix-mandir.patch ├── libiio-0.18-00-fix-framework-dir.patch ├── libmirisdr-00-use-the-correct-pc-file.patch ├── librsvg-00-do-not-build-documentation.patch ├── libxkbcommon-0.8.4-00-fix-linux-only-program-name.patch ├── osmo-sdr-00-move-libosmosdr-to-root-of-repository.patch ├── pkg-config-0.29.2-00-fix-glib-ac-macros.patch ├── pygobject-2.28.6-00-fix-usage-of-ERROR-DOMAIN.patch ├── pygobject-2.28.6-01-link-against-cairo-gobject-for-tests.patch ├── qwt-6.1.4-00-use-gnuradio-app-prefix.sh.patch ├── qwt-6.1.4-01-generate_pkgconfig_files.patch ├── thrift-0.10.0-00-missing-files.patch └── thrift-0.10.0-01-fix-undefined-symbols.patch ├── screenshot.png └── scripts ├── ar-wrapper.sh ├── find-broken-dylibs.sh ├── gen-patch-for-qt-x11-4.4.3.sh ├── gfortran-wrapper.sh ├── install-ci-dependencies.sh ├── log-ci-environment.sh ├── ranlib-wrapper.sh └── run-grc.sh /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | *.dmg 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/README.md -------------------------------------------------------------------------------- /gnuradio-logo-noicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/gnuradio-logo-noicon.png -------------------------------------------------------------------------------- /gnuradio.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/gnuradio.icns -------------------------------------------------------------------------------- /patches/PyQt5_gpl-5.13.1-00-inject-compile-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/PyQt5_gpl-5.13.1-00-inject-compile-flags.patch -------------------------------------------------------------------------------- /patches/PyQt5_gpl-5.13.2.dev1910041539-inject-compile-flags.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/PyQt5_gpl-5.13.2.dev1910041539-inject-compile-flags.patch -------------------------------------------------------------------------------- /patches/SDL-1.2.15-00-build-for-mac-x11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/SDL-1.2.15-00-build-for-mac-x11.patch -------------------------------------------------------------------------------- /patches/blas-3.7.0-00-ignore-xerbla-array.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/blas-3.7.0-00-ignore-xerbla-array.patch -------------------------------------------------------------------------------- /patches/blas-3.7.0-00-ignore-xerbla.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/blas-3.7.0-00-ignore-xerbla.patch -------------------------------------------------------------------------------- /patches/cblas-00-use-correct-case-in-header-guard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/cblas-00-use-correct-case-in-header-guard.patch -------------------------------------------------------------------------------- /patches/cppunit-1.12.1-00-rename-configure-in-ac.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/cppunit-1.12.1-00-rename-configure-in-ac.patch -------------------------------------------------------------------------------- /patches/create-dmg-00-increase-padding.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/create-dmg-00-increase-padding.patch -------------------------------------------------------------------------------- /patches/glib-2.62.0-00-support_modules_and_x11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/glib-2.62.0-00-support_modules_and_x11.patch -------------------------------------------------------------------------------- /patches/gr-osmosdr-00-proper-constructors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/gr-osmosdr-00-proper-constructors.patch -------------------------------------------------------------------------------- /patches/gtk+-3.24.11-00-support_x11_and_no_dbus.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/gtk+-3.24.11-00-support_x11_and_no_dbus.patch -------------------------------------------------------------------------------- /patches/jpegsrc.v6b-00-fix-mandir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/jpegsrc.v6b-00-fix-mandir.patch -------------------------------------------------------------------------------- /patches/libiio-0.18-00-fix-framework-dir.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/libiio-0.18-00-fix-framework-dir.patch -------------------------------------------------------------------------------- /patches/libmirisdr-00-use-the-correct-pc-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/libmirisdr-00-use-the-correct-pc-file.patch -------------------------------------------------------------------------------- /patches/librsvg-00-do-not-build-documentation.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/librsvg-00-do-not-build-documentation.patch -------------------------------------------------------------------------------- /patches/libxkbcommon-0.8.4-00-fix-linux-only-program-name.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/libxkbcommon-0.8.4-00-fix-linux-only-program-name.patch -------------------------------------------------------------------------------- /patches/osmo-sdr-00-move-libosmosdr-to-root-of-repository.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/osmo-sdr-00-move-libosmosdr-to-root-of-repository.patch -------------------------------------------------------------------------------- /patches/pkg-config-0.29.2-00-fix-glib-ac-macros.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/pkg-config-0.29.2-00-fix-glib-ac-macros.patch -------------------------------------------------------------------------------- /patches/pygobject-2.28.6-00-fix-usage-of-ERROR-DOMAIN.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/pygobject-2.28.6-00-fix-usage-of-ERROR-DOMAIN.patch -------------------------------------------------------------------------------- /patches/pygobject-2.28.6-01-link-against-cairo-gobject-for-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/pygobject-2.28.6-01-link-against-cairo-gobject-for-tests.patch -------------------------------------------------------------------------------- /patches/qwt-6.1.4-00-use-gnuradio-app-prefix.sh.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/qwt-6.1.4-00-use-gnuradio-app-prefix.sh.patch -------------------------------------------------------------------------------- /patches/qwt-6.1.4-01-generate_pkgconfig_files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/qwt-6.1.4-01-generate_pkgconfig_files.patch -------------------------------------------------------------------------------- /patches/thrift-0.10.0-00-missing-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/thrift-0.10.0-00-missing-files.patch -------------------------------------------------------------------------------- /patches/thrift-0.10.0-01-fix-undefined-symbols.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/patches/thrift-0.10.0-01-fix-undefined-symbols.patch -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/screenshot.png -------------------------------------------------------------------------------- /scripts/ar-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/ar-wrapper.sh -------------------------------------------------------------------------------- /scripts/find-broken-dylibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/find-broken-dylibs.sh -------------------------------------------------------------------------------- /scripts/gen-patch-for-qt-x11-4.4.3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/gen-patch-for-qt-x11-4.4.3.sh -------------------------------------------------------------------------------- /scripts/gfortran-wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/gfortran-wrapper.sh -------------------------------------------------------------------------------- /scripts/install-ci-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/install-ci-dependencies.sh -------------------------------------------------------------------------------- /scripts/log-ci-environment.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | system_profiler SPSoftwareDataType 4 | 5 | clang --version 6 | -------------------------------------------------------------------------------- /scripts/ranlib-wrapper.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /scripts/run-grc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ktemkin/gnuradio-for-mac-without-macports/HEAD/scripts/run-grc.sh --------------------------------------------------------------------------------