Package Details: sdrangelove-git 20140824-1

Git Clone URL: https://aur.archlinux.org/sdrangelove-git.git (read-only, click to copy)
Package Base: sdrangelove-git
Description: A high speed SDR waterfall display.
Upstream URL: http://sdr.osmocom.org/trac/wiki/sdrangelove
Licenses: GPL
Conflicts: sdrangelove
Submitter: keenerd
Maintainer: keenerd
Last Packager: keenerd
Votes: 9
Popularity: 0.001075
First Submitted: 2013-10-29 20:54 (UTC)
Last Updated: 2015-06-13 04:39 (UTC)

Latest Comments

dreieck commented on 2023-08-22 16:14 (UTC)

Fails to build for me with error: aggregate ‘QPainterPath path’ has incomplete type and cannot be defined:

[...]
/tmp/makepkg/build/sdrangelove-git/src/sdrangelove/sdrbase/gui/rollupwidget.cpp:151:22: error: aggregate ‘QPainterPath path’ has incomplete type and cannot be defined
  151 |         QPainterPath path;
      |                      ^~~~
make[2]: *** [CMakeFiles/sdrbase.dir/build.make:587: CMakeFiles/sdrbase.dir/sdrbase/gui/rollupwidget.cpp.o] Error 1
make[1]: *** [CMakeFiles/Makefile2:207: CMakeFiles/sdrbase.dir/all] Error 2
make: *** [Makefile:91: all] Error 2
==> ERROR: A failure occurred in build().

Regards!

dummys commented on 2017-03-22 14:14 (UTC)

Hello, got a problem compiling it with vanilla GCC. Here is a small patch I made: diff -Naur sdrangelove/CMakeLists.txt sdrangelove_patched/CMakeLists.txt --- sdrangelove/CMakeLists.txt 2017-03-22 15:08:11.088858393 +0100 +++ sdrangelove_patched/CMakeLists.txt 2017-03-22 15:10:15.768864030 +0100 @@ -271,7 +271,7 @@ if(USE_SIMD MATCHES SSE2) if(CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX) - set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -msse2" ) + set( CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -Wno-narrowing -msse2" ) set( CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -msse2" ) add_definitions(-DUSE_SIMD) elseif(MSVC) And the PKGBUILD: --- PKGBUILD 2017-03-22 15:14:06.000000000 +0100 +++ PKGBUILD_Patched 2017-03-22 15:12:20.585536340 +0100 @@ -1,7 +1,7 @@ # Maintainer: Kyle Keen <keenerd@gmail.com> pkgname=sdrangelove-git -pkgver=20140824 +pkgver=20150707 pkgrel=1 pkgdesc="A high speed SDR waterfall display." arch=('i686' 'x86_64') @@ -12,8 +12,8 @@ makedepends=('git' 'cmake' 'boost') optdepends=('pulseaudio: sound output') conflicts=('sdrangelove') -source=("git://git.osmocom.org/sdrangelove.git") -md5sums=('SKIP') +source=("git://git.osmocom.org/sdrangelove.git" "cmake.patch") +md5sums=('SKIP' 'SKIP') _gitname="sdrangelove" @@ -22,6 +22,12 @@ git show -s --format="%ci" HEAD | sed -e 's/-//g' -e 's/ .*//' } +prepare() { + + patch -Np0 -i cmake.patch + +} + build() { cd "$srcdir/$_gitname"

drws commented on 2016-08-25 10:27 (UTC) (edited on 2023-08-09 13:54 (UTC) by drws)

The .desktop file is not provided, so currently the only means to start this GUI application is from CLI. Please add it to the package. A working example would be:

[Desktop Entry]
Version=1.0
Type=Application
Name=SDRangelove
Exec=sdrangelove
Icon=
Categories=HamRadio;

sparques commented on 2015-05-03 14:37 (UTC)

This fails to build without boost installed. Please add as a dependency.