diff options
author | Zero_Chaos <zerochaos@gentoo.org> | 2017-01-24 16:10:06 -0500 |
---|---|---|
committer | Zero_Chaos <zerochaos@gentoo.org> | 2017-01-24 16:53:51 -0500 |
commit | 90366d88eb3e518b17d4e9b96fb11c82cafdcf98 (patch) | |
tree | 67d3a4fec07bd6c8ce371d361d36e914679c034c /net-wireless/gqrx/gqrx-9999.ebuild | |
parent | games-action/clanbomber: fix one more games eclass remnant (diff) | |
download | gentoo-90366d88eb3e518b17d4e9b96fb11c82cafdcf98.tar.gz gentoo-90366d88eb3e518b17d4e9b96fb11c82cafdcf98.tar.bz2 gentoo-90366d88eb3e518b17d4e9b96fb11c82cafdcf98.zip |
net-wireless/gqrx: bump to 2.6 and cmake, yay
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Diffstat (limited to 'net-wireless/gqrx/gqrx-9999.ebuild')
-rw-r--r-- | net-wireless/gqrx/gqrx-9999.ebuild | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/net-wireless/gqrx/gqrx-9999.ebuild b/net-wireless/gqrx/gqrx-9999.ebuild index 7327af4c8f65..eae2f9f6635a 100644 --- a/net-wireless/gqrx/gqrx-9999.ebuild +++ b/net-wireless/gqrx/gqrx-9999.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 -inherit qt4-r2 +inherit cmake-utils DESCRIPTION="Software defined radio receiver powered by GNU Radio and Qt" HOMEPAGE="http://gqrx.dk/" @@ -25,19 +25,21 @@ IUSE="pulseaudio" DEPEND=">=net-wireless/gnuradio-3.7_rc:=[audio,analog,filter] >=net-wireless/gr-osmosdr-0.1.0:= dev-libs/boost:= - dev-qt/qtcore:4 - dev-qt/qtgui:4 + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtwidgets:5 pulseaudio? ( media-sound/pulseaudio:= )" RDEPEND="${DEPEND} - dev-qt/qtsvg:4" + dev-qt/qtsvg:5" src_prepare() { if use !pulseaudio; then sed -i 's/AUDIO_BACKEND = pulse/#AUDIO_BACKEND = pulse/' gqrx.pro || die fi - qt4-r2_src_prepare + eapply_user } src_install() { - dobin gqrx + dobin "${BUILD_DIR}"/src/gqrx } |