public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Marek Szuba" <marecki@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-wireless/gqrx/
Date: Wed, 25 Nov 2020 00:13:41 +0000 (UTC)	[thread overview]
Message-ID: <1606263212.4a052df95fd87754f4212d5dca54da1065c95034.marecki@gentoo> (raw)

commit:     4a052df95fd87754f4212d5dca54da1065c95034
Author:     Marek Szuba <marecki <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 25 00:10:49 2020 +0000
Commit:     Marek Szuba <marecki <AT> gentoo <DOT> org>
CommitDate: Wed Nov 25 00:13:32 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a052df9

net-wireless/gqrx: bump to 2.14

Invoking maintainer time-out on Bug #751082, i.e. compilation error
in 2.12.1-r1.

Closes: https://bugs.gentoo.org/751082
Signed-off-by: Marek Szuba <marecki <AT> gentoo.org>

 net-wireless/gqrx/Manifest         |  1 +
 net-wireless/gqrx/gqrx-2.14.ebuild | 65 ++++++++++++++++++++++++++++++++++++++
 2 files changed, 66 insertions(+)

diff --git a/net-wireless/gqrx/Manifest b/net-wireless/gqrx/Manifest
index e81dc27abd2..8f90de4ab2b 100644
--- a/net-wireless/gqrx/Manifest
+++ b/net-wireless/gqrx/Manifest
@@ -1,2 +1,3 @@
 DIST gqrx-2.11.5.tar.gz 1329054 BLAKE2B 205bf1d984f18d43c914bb24e59f7ed42e9faf8060b44c2f78f6d1bb7a222d87395c347626802438c45a30225acac18ca3114d412faf3f8385840276c0c08ac8 SHA512 d2928559d377b85ea683839b0e7dd1213038ee350718f9dad5064afacab20b08d1c1edc189ae8c5ae992ad019636c930555f9a441aee88964231d174db25ae6f
 DIST gqrx-2.12.1.tar.gz 1334839 BLAKE2B 9ad8ab710675f4b42ff652d642026aba00dad63867f836662054aaab89cc7788874cc0f47de531257ee901f3bc58a6e6d5aef3c5a4fe30ae367d24fcd87ae763 SHA512 28d3da6c4ff750cf580db658aee267162a64103e9dac1d212f70df6bc602c8d50ccb7aaf88c7e976cfa235b884e02b4994e679f69aed640485c44ed07f183cc9
+DIST gqrx-2.14.tar.gz 1343030 BLAKE2B 8aee7586970e3060f32556be223bed99b6df496fe2565cd56c1001d2f821b3151daa716a6c27aee0c449f3a71117188fe275ad75f406ff8acaac3faaa98cc880 SHA512 cae2003f3832a7edc6c39c591a4a96c9930a7a9c8c42684e3f906df9f582b033939a591261189093d955d07f5d3a9796137a2aff6c7ba936b6cbacf000ca5bf5

diff --git a/net-wireless/gqrx/gqrx-2.14.ebuild b/net-wireless/gqrx/gqrx-2.14.ebuild
new file mode 100644
index 00000000000..a008cc56721
--- /dev/null
+++ b/net-wireless/gqrx/gqrx-2.14.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake
+
+DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt"
+HOMEPAGE="https://gqrx.dk/"
+
+if [[ ${PV} == "9999" ]] ; then
+	EGIT_REPO_URI="https://github.com/csete/gqrx.git"
+	inherit git-r3
+else
+	SRC_URI="https://github.com/csete/gqrx/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="gr-audio portaudio pulseaudio"
+REQUIRED_USE="^^ ( pulseaudio portaudio gr-audio )"
+
+DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter]
+	>=net-wireless/gr-osmosdr-0.1.0:=
+	dev-libs/boost:=
+	dev-qt/qtcore:5
+	dev-qt/qtgui:5
+	dev-qt/qtnetwork:5
+	dev-qt/qtsvg:5
+	dev-qt/qtwidgets:5
+	sci-libs/volk
+	pulseaudio? ( media-sound/pulseaudio:= )
+	portaudio? ( media-libs/portaudio:= )"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+	if use !pulseaudio; then
+		sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die
+	fi
+	if use portaudio; then
+		sed -i 's#find_package(Portaudio#find_package(PORTAUDIO#' CMakeLists.txt || die
+	fi
+	cmake_src_prepare
+	eapply_user
+}
+
+src_configure() {
+	if use pulseaudio; then
+		LINUX_AUDIO_BACKEND=Pulseaudio
+	elif use portaudio; then
+		LINUX_AUDIO_BACKEND=Portaudio
+	elif use gr-audio; then
+		LINUX_AUDIO_BACKEND=Gr-audio
+	fi
+
+	local mycmakeargs=(
+		"-DLINUX_AUDIO_BACKEND=${LINUX_AUDIO_BACKEND}"
+	)
+	cmake_src_configure
+}
+
+src_install() {
+	dobin "${BUILD_DIR}"/src/gqrx
+}


             reply	other threads:[~2020-11-25  0:13 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-25  0:13 Marek Szuba [this message]
  -- strict thread matches above, loose matches on Subject: below --
2025-01-22 17:33 [gentoo-commits] repo/gentoo:master commit in: net-wireless/gqrx/ Andreas Sturmlechner
2025-01-08 17:03 Andreas Sturmlechner
2025-01-08 17:03 Andreas Sturmlechner
2023-10-10  1:00 Rick Farina
2023-10-10  1:00 Rick Farina
2023-08-20 18:05 Rick Farina
2023-05-29 13:11 Andreas Sturmlechner
2023-05-29 13:00 Andreas Sturmlechner
2022-12-19 18:56 Rick Farina
2022-12-19 18:56 Rick Farina
2022-08-08  0:39 Rick Farina
2022-08-08  0:39 Rick Farina
2022-08-08  0:39 Rick Farina
2022-08-08  0:39 Rick Farina
2022-04-30 22:01 Marek Szuba
2022-01-28  3:29 Rick Farina
2021-10-07 16:42 Rick Farina
2021-02-17 15:53 Rick Farina
2020-12-18 19:41 Rick Farina
2020-12-17 15:53 Rick Farina
2020-12-04 18:22 Rick Farina
2020-09-21 19:15 Rick Farina
2020-06-04  9:06 David Seifert
2020-01-27 21:41 Rick Farina
2019-01-11 18:29 Thomas Deutschmann
2018-08-16 20:45 Richard Farina
2018-08-16 20:45 Richard Farina
2018-02-18 17:31 Richard Farina
2017-12-20  2:28 Richard Farina
2017-10-04  9:15 Michał Górny
2017-01-24 22:25 Richard Farina
2017-01-24 21:54 Richard Farina
2016-06-03  2:39 Richard Farina
2016-03-30 20:30 Richard Farina
2016-01-01 10:47 Tobias Klausmann

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1606263212.4a052df95fd87754f4212d5dca54da1065c95034.marecki@gentoo \
    --to=marecki@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox